UNPKG

@wordpress/block-editor

Version:
70 lines (68 loc) 2.41 kB
"use strict"; 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/block-editor/src/components/rich-text/utils.js var utils_exports = {}; __export(utils_exports, { addActiveFormats: () => addActiveFormats, createLinkInParagraph: () => createLinkInParagraph, getAllowedFormats: () => getAllowedFormats, getMultilineTag: () => getMultilineTag }); module.exports = __toCommonJS(utils_exports); var import_element = require("@wordpress/element"); var import_blocks = require("@wordpress/blocks"); var import_jsx_runtime = require("react/jsx-runtime"); function addActiveFormats(value, activeFormats) { if (activeFormats?.length) { let index = value.formats.length; while (index--) { value.formats[index] = [ ...activeFormats, ...value.formats[index] || [] ]; } } } function getMultilineTag(multiline) { if (multiline !== true && multiline !== "p" && multiline !== "li") { return; } return multiline === true ? "p" : multiline; } function getAllowedFormats({ allowedFormats, disableFormats }) { if (disableFormats) { return getAllowedFormats.EMPTY_ARRAY; } return allowedFormats; } getAllowedFormats.EMPTY_ARRAY = []; function createLinkInParagraph(url, onReplace) { const link = /* @__PURE__ */ (0, import_jsx_runtime.jsx)("a", { href: url, children: url }); onReplace( (0, import_blocks.createBlock)("core/paragraph", { content: (0, import_element.renderToString)(link) }) ); } // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { addActiveFormats, createLinkInParagraph, getAllowedFormats, getMultilineTag }); //# sourceMappingURL=utils.js.map