@wordpress/block-editor
Version:
105 lines (103 loc) • 4.65 kB
JavaScript
;
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// packages/block-editor/src/hooks/list-view.js
var list_view_exports = {};
__export(list_view_exports, {
LIST_VIEW_SUPPORT_KEY: () => LIST_VIEW_SUPPORT_KEY,
ListViewPanel: () => ListViewPanel,
default: () => list_view_default,
hasListViewSupport: () => hasListViewSupport
});
module.exports = __toCommonJS(list_view_exports);
var import_i18n = require("@wordpress/i18n");
var import_components = require("@wordpress/components");
var import_data = require("@wordpress/data");
var import_blocks = require("@wordpress/blocks");
var import_element = require("@wordpress/element");
var import_store = require("../store/index.cjs");
var import_list_view = require("../components/list-view/index.cjs");
var import_fill = __toESM(require("../components/inspector-controls/fill.cjs"));
var import_private_block_context = require("../components/block-list/private-block-context.cjs");
var import_jsx_runtime = require("react/jsx-runtime");
var LIST_VIEW_SUPPORT_KEY = "listView";
function hasListViewSupport(nameOrType) {
return (0, import_blocks.hasBlockSupport)(nameOrType, LIST_VIEW_SUPPORT_KEY);
}
function ListViewPanel({ clientId, name }) {
const { isSelectionWithinCurrentSection } = (0, import_element.useContext)(import_private_block_context.PrivateBlockContext);
const isEnabled = hasListViewSupport(name);
const { hasChildren, blockTitle, isNestedListView } = (0, import_data.useSelect)(
(select) => {
const { getBlockCount, getBlockParents, getBlockName } = select(import_store.store);
let _isNestedListView = false;
if (isSelectionWithinCurrentSection) {
const parents = getBlockParents(clientId, true);
_isNestedListView = parents.find((parentId) => {
const parentName = getBlockName(parentId);
return parentName === "core/navigation" || (0, import_blocks.hasBlockSupport)(parentName, "listView");
});
}
return {
hasChildren: !!getBlockCount(clientId),
blockTitle: select(import_blocks.store).getBlockType(name)?.title,
isNestedListView: _isNestedListView
};
},
[clientId, name, isSelectionWithinCurrentSection]
);
if (!isEnabled || isNestedListView) {
return null;
}
const showBlockTitle = isSelectionWithinCurrentSection;
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_fill.default, { group: "list", children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_components.PanelBody, { title: showBlockTitle ? blockTitle : void 0, children: [
!hasChildren && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("p", { className: "block-editor-block-inspector__no-blocks", children: (0, import_i18n.__)("No items yet.") }),
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_list_view.PrivateListView,
{
rootClientId: clientId,
isExpanded: true,
description: blockTitle,
showAppender: true
}
)
] }) });
}
var list_view_default = {
edit: ListViewPanel,
hasSupport: hasListViewSupport,
attributeKeys: [],
supportsPatternEditing: true
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
LIST_VIEW_SUPPORT_KEY,
ListViewPanel,
hasListViewSupport
});
//# sourceMappingURL=list-view.cjs.map