UNPKG

@wordpress/block-editor

Version:
56 lines (54 loc) 2.33 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/convert-to-group-buttons/use-convert-to-group-button-props.js var use_convert_to_group_button_props_exports = {}; __export(use_convert_to_group_button_props_exports, { default: () => useConvertToGroupButtonProps }); module.exports = __toCommonJS(use_convert_to_group_button_props_exports); var import_blocks = require("@wordpress/blocks"); var import_data = require("@wordpress/data"); var import_store = require("../../store/index.cjs"); function useConvertToGroupButtonProps(selectedClientIds) { return (0, import_data.useSelect)( (select) => { const { getBlocksByClientId, getSelectedBlockClientIds, isUngroupable, isGroupable } = select(import_store.store); const { getGroupingBlockName, getBlockType } = select(import_blocks.store); const clientIds = selectedClientIds?.length ? selectedClientIds : getSelectedBlockClientIds(); const blocksSelection = getBlocksByClientId(clientIds); const [firstSelectedBlock] = blocksSelection; const _isUngroupable = clientIds.length === 1 && isUngroupable(clientIds[0]); return { clientIds, isGroupable: isGroupable(clientIds), isUngroupable: _isUngroupable, blocksSelection, groupingBlockName: getGroupingBlockName(), onUngroup: _isUngroupable && getBlockType(firstSelectedBlock.name)?.transforms?.ungroup }; }, [selectedClientIds] ); } //# sourceMappingURL=use-convert-to-group-button-props.cjs.map