@wordpress/block-editor
Version:
134 lines (132 loc) • 5.15 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/block-switcher/block-variation-transformations.js
var block_variation_transformations_exports = {};
__export(block_variation_transformations_exports, {
default: () => block_variation_transformations_default,
useBlockVariationTransforms: () => useBlockVariationTransforms
});
module.exports = __toCommonJS(block_variation_transformations_exports);
var import_components = require("@wordpress/components");
var import_blocks = require("@wordpress/blocks");
var import_data = require("@wordpress/data");
var import_element = require("@wordpress/element");
var import_store = require("../../store");
var import_block_icon = __toESM(require("../block-icon"));
var import_preview_block_popover = __toESM(require("./preview-block-popover"));
var import_jsx_runtime = require("react/jsx-runtime");
var EMPTY_OBJECT = {};
function useBlockVariationTransforms({ clientIds, blocks }) {
const { activeBlockVariation, blockVariationTransformations } = (0, import_data.useSelect)(
(select) => {
const { getBlockAttributes, canRemoveBlocks } = select(import_store.store);
const { getActiveBlockVariation, getBlockVariations } = select(import_blocks.store);
const canRemove = canRemoveBlocks(clientIds);
if (blocks.length !== 1 || !canRemove) {
return EMPTY_OBJECT;
}
const [firstBlock] = blocks;
return {
blockVariationTransformations: getBlockVariations(
firstBlock.name,
"transform"
),
activeBlockVariation: getActiveBlockVariation(
firstBlock.name,
getBlockAttributes(firstBlock.clientId)
)
};
},
[clientIds, blocks]
);
const transformations = (0, import_element.useMemo)(() => {
return blockVariationTransformations?.filter(
({ name }) => name !== activeBlockVariation?.name
);
}, [blockVariationTransformations, activeBlockVariation]);
return transformations;
}
var BlockVariationTransformations = ({
transformations,
onSelect,
blocks
}) => {
const [hoveredTransformItemName, setHoveredTransformItemName] = (0, import_element.useState)();
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
hoveredTransformItemName && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_preview_block_popover.default,
{
blocks: (0, import_blocks.cloneBlock)(
blocks[0],
transformations.find(
({ name }) => name === hoveredTransformItemName
).attributes
)
}
),
transformations?.map((item) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
BlockVariationTransformationItem,
{
item,
onSelect,
setHoveredTransformItemName
},
item.name
))
] });
};
function BlockVariationTransformationItem({
item,
onSelect,
setHoveredTransformItemName
}) {
const { name, icon, title } = item;
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
import_components.MenuItem,
{
className: (0, import_blocks.getBlockMenuDefaultClassName)(name),
onClick: (event) => {
event.preventDefault();
onSelect(name);
},
onMouseLeave: () => setHoveredTransformItemName(null),
onMouseEnter: () => setHoveredTransformItemName(name),
children: [
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_block_icon.default, { icon, showColors: true }),
title
]
}
);
}
var block_variation_transformations_default = BlockVariationTransformations;
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
useBlockVariationTransforms
});
//# sourceMappingURL=block-variation-transformations.js.map