@wordpress/editor
Version:
Enhanced block editor for WordPress posts.
96 lines (94 loc) • 4.27 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
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 __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// packages/editor/src/components/template-part-menu-items/convert-to-regular.js
var convert_to_regular_exports = {};
__export(convert_to_regular_exports, {
default: () => ConvertToRegularBlocks
});
module.exports = __toCommonJS(convert_to_regular_exports);
var import_data = require("@wordpress/data");
var import_block_editor = require("@wordpress/block-editor");
var import_core_data = require("@wordpress/core-data");
var import_components = require("@wordpress/components");
var import_i18n = require("@wordpress/i18n");
var import_html_entities = require("@wordpress/html-entities");
var import_element = require("@wordpress/element");
var import_jsx_runtime = require("react/jsx-runtime");
function ConvertToRegularBlocks({ clientId, onClose }) {
const [showConfirmDialog, setShowConfirmDialog] = (0, import_element.useState)(false);
const { getBlocks } = (0, import_data.useSelect)(import_block_editor.store);
const { replaceBlocks } = (0, import_data.useDispatch)(import_block_editor.store);
const { canRemove, templatePartTitle } = (0, import_data.useSelect)(
(select) => {
const { canRemoveBlock, getBlock } = select(import_block_editor.store);
const { getEntityRecord, getCurrentTheme } = select(import_core_data.store);
const block = getBlock(clientId);
const { slug, theme } = block?.attributes ?? {};
const themeSlug = theme || getCurrentTheme()?.stylesheet;
const templatePartId = themeSlug && slug ? `${themeSlug}//${slug}` : null;
const entity = templatePartId ? getEntityRecord(
"postType",
"wp_template_part",
templatePartId
) : null;
return {
canRemove: canRemoveBlock(clientId),
templatePartTitle: entity?.title?.rendered ? (0, import_html_entities.decodeEntities)(entity.title.rendered) : null
};
},
[clientId]
);
if (!canRemove) {
return null;
}
const title = templatePartTitle ? (0, import_i18n.sprintf)(
/* translators: %s: template part title, e.g. "Header" */
(0, import_i18n.__)("Detach %s?"),
templatePartTitle
) : (0, import_i18n.__)("Detach template part?");
const message = templatePartTitle ? (0, import_i18n.sprintf)(
/* translators: %s: template part title, e.g. "Header" */
(0, import_i18n.__)(
"The blocks will be separated from the original template part and will be fully editable. Future changes to the %s template part will not apply here."
),
templatePartTitle
) : (0, import_i18n.__)(
"The blocks will be separated from the original template part and will be fully editable. Future changes to the template part will not apply here."
);
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_components.MenuItem, { onClick: () => setShowConfirmDialog(true), children: (0, import_i18n.__)("Detach") }),
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_components.__experimentalConfirmDialog,
{
isOpen: showConfirmDialog,
onConfirm: () => {
replaceBlocks(clientId, getBlocks(clientId));
onClose();
},
onCancel: () => setShowConfirmDialog(false),
confirmButtonText: (0, import_i18n.__)("Detach"),
size: "medium",
title,
__experimentalHideHeader: false,
children: message
}
)
] });
}
//# sourceMappingURL=convert-to-regular.cjs.map