@wordpress/block-editor
Version:
89 lines (87 loc) • 3.57 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/components/rich-text/format-toolbar/index.js
var format_toolbar_exports = {};
__export(format_toolbar_exports, {
default: () => format_toolbar_default
});
module.exports = __toCommonJS(format_toolbar_exports);
var import_clsx = __toESM(require("clsx"));
var import_i18n = require("@wordpress/i18n");
var import_components = require("@wordpress/components");
var import_icons = require("@wordpress/icons");
var import_sorting = require("../../../utils/sorting");
var import_jsx_runtime = require("react/jsx-runtime");
var POPOVER_PROPS = {
placement: "bottom-start"
};
var FormatToolbar = () => {
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
["bold", "italic", "link", "unknown"].map((format) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_components.Slot,
{
name: `RichText.ToolbarControls.${format}`
},
format
)),
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_components.Slot, { name: "RichText.ToolbarControls", children: (fills) => {
if (!fills.length) {
return null;
}
const allProps = fills.map(([{ props }]) => props);
const hasActive = allProps.some(
({ isActive }) => isActive
);
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_components.ToolbarItem, { children: (toggleProps) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_components.DropdownMenu,
{
icon: import_icons.chevronDown,
label: (0, import_i18n.__)("More"),
toggleProps: {
...toggleProps,
className: (0, import_clsx.default)(
toggleProps.className,
{ "is-pressed": hasActive }
),
description: (0, import_i18n.__)(
"Displays more block tools"
)
},
controls: (0, import_sorting.orderBy)(
fills.map(([{ props }]) => props),
"title"
),
popoverProps: POPOVER_PROPS
}
) });
} })
] });
};
var format_toolbar_default = FormatToolbar;
//# sourceMappingURL=index.js.map