UNPKG

@wordpress/block-editor

Version:
66 lines (64 loc) 2.62 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/block-tools/use-selected-block-tool-props.js var use_selected_block_tool_props_exports = {}; __export(use_selected_block_tool_props_exports, { default: () => useSelectedBlockToolProps }); module.exports = __toCommonJS(use_selected_block_tool_props_exports); var import_data = require("@wordpress/data"); var import_store = require("../../store"); function useSelectedBlockToolProps(clientId) { const selectedBlockProps = (0, import_data.useSelect)( (select) => { const { getBlockRootClientId, getBlockParents, __experimentalGetBlockListSettingsForBlocks, isBlockInsertionPointVisible, getBlockInsertionPoint, getBlockOrder, hasMultiSelection, getLastMultiSelectedBlockClientId } = select(import_store.store); const blockParentsClientIds = getBlockParents(clientId); const parentBlockListSettings = __experimentalGetBlockListSettingsForBlocks( blockParentsClientIds ); const capturingClientId = blockParentsClientIds.find( (parentClientId) => parentBlockListSettings[parentClientId]?.__experimentalCaptureToolbars ); let isInsertionPointVisible = false; if (isBlockInsertionPointVisible()) { const insertionPoint = getBlockInsertionPoint(); const order = getBlockOrder(insertionPoint.rootClientId); isInsertionPointVisible = order[insertionPoint.index] === clientId; } return { capturingClientId, isInsertionPointVisible, lastClientId: hasMultiSelection() ? getLastMultiSelectedBlockClientId() : null, rootClientId: getBlockRootClientId(clientId) }; }, [clientId] ); return selectedBlockProps; } //# sourceMappingURL=use-selected-block-tool-props.js.map