UNPKG

@wordpress/editor

Version:
91 lines (90 loc) 3.36 kB
// packages/editor/src/components/block-removal-warnings/index.js import { __, _n } from "@wordpress/i18n"; import { privateApis as blockEditorPrivateApis } from "@wordpress/block-editor"; import { useSelect } from "@wordpress/data"; import { useMemo } from "@wordpress/element"; import { unlock } from "../../lock-unlock.mjs"; import { store as editorStore } from "../../store/index.mjs"; import { jsx } from "react/jsx-runtime"; var { BlockRemovalWarningModal } = unlock(blockEditorPrivateApis); var TEMPLATE_BLOCKS = [ "core/post-content", "core/post-template", "core/query" ]; var BLOCK_REMOVAL_RULES = [ { // Template blocks. // The warning is only shown when a user manipulates templates or template parts. postTypes: ["wp_template", "wp_template_part"], callback(removedBlocks) { const removedPostContentBlocks = removedBlocks.filter( ({ name }) => name === "core/post-content" ); if (removedPostContentBlocks.length) { return { description: __( "This block displays the content of posts and pages using this template." ), warning: __( "If you delete it, posts or pages using this template will not display any content." ), subtext: __("Visitors will see blank pages."), requireConfirmation: true }; } const removedTemplateBlocks = removedBlocks.filter( ({ name }) => TEMPLATE_BLOCKS.includes(name) ); if (removedTemplateBlocks.length) { return _n( "Deleting this block will stop your post or page content from displaying on this template. It is not recommended.", "Some of the deleted blocks will stop your post or page content from displaying on this template. It is not recommended.", removedBlocks.length ); } } }, { // Pattern overrides. // The warning is only shown when the user edits a pattern. postTypes: ["wp_block"], callback(removedBlocks) { const removedBlocksWithOverrides = removedBlocks.filter( ({ attributes }) => attributes?.metadata?.bindings && Object.values(attributes.metadata.bindings).some( (binding) => binding.source === "core/pattern-overrides" ) ); if (removedBlocksWithOverrides.length) { return _n( "The deleted block allows instance overrides. Removing it may result in content not displaying where this pattern is used. Are you sure you want to proceed?", "Some of the deleted blocks allow instance overrides. Removing them may result in content not displaying where this pattern is used. Are you sure you want to proceed?", removedBlocks.length ); } } } ]; function BlockRemovalWarnings() { const currentPostType = useSelect( (select) => select(editorStore).getCurrentPostType(), [] ); const removalRulesForPostType = useMemo( () => BLOCK_REMOVAL_RULES.filter( (rule) => rule.postTypes.includes(currentPostType) ), [currentPostType] ); if (!BlockRemovalWarningModal) { return null; } if (!removalRulesForPostType) { return null; } return /* @__PURE__ */ jsx(BlockRemovalWarningModal, { rules: removalRulesForPostType }); } export { BlockRemovalWarnings as default }; //# sourceMappingURL=index.mjs.map