@wordpress/edit-post 7.24.1 → 7.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/build/components/header/header-toolbar/index.js +8 -4
- package/build/components/header/header-toolbar/index.js.map +1 -1
- package/build/components/header/index.js +13 -11
- package/build/components/header/index.js.map +1 -1
- package/build/components/header/mode-switcher/index.js +1 -1
- package/build/components/header/mode-switcher/index.js.map +1 -1
- package/build/components/header/more-menu/index.js +2 -1
- package/build/components/header/more-menu/index.js.map +1 -1
- package/build/components/header/writing-menu/index.js +13 -12
- package/build/components/header/writing-menu/index.js.map +1 -1
- package/build/components/layout/index.js +12 -12
- package/build/components/layout/index.js.map +1 -1
- package/build/components/preferences-modal/index.js +65 -49
- package/build/components/preferences-modal/index.js.map +1 -1
- package/build/components/sidebar/post-status/index.js +1 -2
- package/build/components/sidebar/post-status/index.js.map +1 -1
- package/build/components/sidebar/settings-header/index.js +17 -43
- package/build/components/sidebar/settings-header/index.js.map +1 -1
- package/build/components/sidebar/settings-sidebar/index.js +80 -20
- package/build/components/sidebar/settings-sidebar/index.js.map +1 -1
- package/build/components/start-page-options/index.js +3 -3
- package/build/components/start-page-options/index.js.map +1 -1
- package/build/components/visual-editor/index.js +20 -257
- package/build/components/visual-editor/index.js.map +1 -1
- package/build/components/welcome-guide/index.js +6 -3
- package/build/components/welcome-guide/index.js.map +1 -1
- package/build/editor.js +5 -6
- package/build/editor.js.map +1 -1
- package/build/editor.native.js +1 -2
- package/build/editor.native.js.map +1 -1
- package/build/index.js +5 -4
- package/build/index.js.map +1 -1
- package/build/plugins/welcome-guide-menu-item/index.js +2 -6
- package/build/plugins/welcome-guide-menu-item/index.js.map +1 -1
- package/build/store/actions.js +35 -39
- package/build/store/actions.js.map +1 -1
- package/build/store/reducer.js +1 -34
- package/build/store/reducer.js.map +1 -1
- package/build/store/selectors.js +22 -12
- package/build/store/selectors.js.map +1 -1
- package/build-module/components/header/header-toolbar/index.js +8 -4
- package/build-module/components/header/header-toolbar/index.js.map +1 -1
- package/build-module/components/header/index.js +15 -13
- package/build-module/components/header/index.js.map +1 -1
- package/build-module/components/header/mode-switcher/index.js +1 -1
- package/build-module/components/header/mode-switcher/index.js.map +1 -1
- package/build-module/components/header/more-menu/index.js +2 -1
- package/build-module/components/header/more-menu/index.js.map +1 -1
- package/build-module/components/header/writing-menu/index.js +14 -13
- package/build-module/components/header/writing-menu/index.js.map +1 -1
- package/build-module/components/layout/index.js +13 -13
- package/build-module/components/layout/index.js.map +1 -1
- package/build-module/components/preferences-modal/index.js +65 -49
- package/build-module/components/preferences-modal/index.js.map +1 -1
- package/build-module/components/sidebar/post-status/index.js +2 -3
- package/build-module/components/sidebar/post-status/index.js.map +1 -1
- package/build-module/components/sidebar/settings-header/index.js +20 -46
- package/build-module/components/sidebar/settings-header/index.js.map +1 -1
- package/build-module/components/sidebar/settings-sidebar/index.js +80 -21
- package/build-module/components/sidebar/settings-sidebar/index.js.map +1 -1
- package/build-module/components/start-page-options/index.js +3 -3
- package/build-module/components/start-page-options/index.js.map +1 -1
- package/build-module/components/visual-editor/index.js +24 -261
- package/build-module/components/visual-editor/index.js.map +1 -1
- package/build-module/components/welcome-guide/index.js +6 -3
- package/build-module/components/welcome-guide/index.js.map +1 -1
- package/build-module/editor.js +5 -6
- package/build-module/editor.js.map +1 -1
- package/build-module/editor.native.js +1 -2
- package/build-module/editor.native.js.map +1 -1
- package/build-module/index.js +3 -2
- package/build-module/index.js.map +1 -1
- package/build-module/plugins/welcome-guide-menu-item/index.js +2 -6
- package/build-module/plugins/welcome-guide-menu-item/index.js.map +1 -1
- package/build-module/store/actions.js +31 -36
- package/build-module/store/actions.js.map +1 -1
- package/build-module/store/reducer.js +1 -33
- package/build-module/store/reducer.js.map +1 -1
- package/build-module/store/selectors.js +18 -9
- package/build-module/store/selectors.js.map +1 -1
- package/build-style/style-rtl.css +63 -200
- package/build-style/style.css +63 -200
- package/package.json +32 -32
- package/src/components/header/header-toolbar/index.js +4 -0
- package/src/components/header/header-toolbar/style.scss +15 -13
- package/src/components/header/index.js +28 -13
- package/src/components/header/mode-switcher/index.js +2 -1
- package/src/components/header/more-menu/index.js +1 -0
- package/src/components/header/style.scss +60 -34
- package/src/components/header/writing-menu/index.js +16 -18
- package/src/components/keyboard-shortcut-help-modal/test/__snapshots__/index.js.snap +1 -1
- package/src/components/layout/index.js +13 -12
- package/src/components/preferences-modal/index.js +109 -96
- package/src/components/preferences-modal/test/index.js +1 -52
- package/src/components/sidebar/post-status/index.js +2 -2
- package/src/components/sidebar/settings-header/index.js +19 -71
- package/src/components/sidebar/settings-sidebar/index.js +117 -54
- package/src/components/sidebar/style.scss +4 -12
- package/src/components/start-page-options/index.js +3 -3
- package/src/components/visual-editor/index.js +26 -359
- package/src/components/visual-editor/style.scss +0 -15
- package/src/components/welcome-guide/index.js +4 -2
- package/src/editor.js +7 -7
- package/src/editor.native.js +3 -9
- package/src/index.js +3 -2
- package/src/plugins/welcome-guide-menu-item/index.js +3 -6
- package/src/store/actions.js +32 -46
- package/src/store/reducer.js +0 -33
- package/src/store/selectors.js +23 -9
- package/src/store/test/actions.js +0 -28
- package/src/style.scss +0 -3
- package/src/test/__snapshots__/editor.native.js.snap +21 -0
- package/src/test/editor.native.js +90 -56
- package/build/components/device-preview/index.js +0 -72
- package/build/components/device-preview/index.js.map +0 -1
- package/build/components/header/document-actions/index.js +0 -82
- package/build/components/header/document-actions/index.js.map +0 -1
- package/build/components/sidebar/post-template/create-modal.js +0 -99
- package/build/components/sidebar/post-template/create-modal.js.map +0 -1
- package/build/components/sidebar/post-template/form.js +0 -110
- package/build/components/sidebar/post-template/form.js.map +0 -1
- package/build/components/sidebar/post-template/index.js +0 -106
- package/build/components/sidebar/post-template/index.js.map +0 -1
- package/build-module/components/device-preview/index.js +0 -65
- package/build-module/components/device-preview/index.js.map +0 -1
- package/build-module/components/header/document-actions/index.js +0 -74
- package/build-module/components/header/document-actions/index.js.map +0 -1
- package/build-module/components/sidebar/post-template/create-modal.js +0 -92
- package/build-module/components/sidebar/post-template/create-modal.js.map +0 -1
- package/build-module/components/sidebar/post-template/form.js +0 -102
- package/build-module/components/sidebar/post-template/form.js.map +0 -1
- package/build-module/components/sidebar/post-template/index.js +0 -98
- package/build-module/components/sidebar/post-template/index.js.map +0 -1
- package/src/components/device-preview/index.js +0 -73
- package/src/components/header/document-actions/index.js +0 -82
- package/src/components/header/document-actions/style.scss +0 -64
- package/src/components/sidebar/post-template/create-modal.js +0 -140
- package/src/components/sidebar/post-template/form.js +0 -141
- package/src/components/sidebar/post-template/index.js +0 -120
- package/src/components/sidebar/post-template/style.scss +0 -22
- package/src/components/sidebar/settings-header/style.scss +0 -74
- package/src/components/sidebar/template/style.scss +0 -35
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_i18n","require","_apiFetch","_interopRequireDefault","_interface","_preferences","_a11y","_notices","_coreData","_blockEditor","_editor","_deprecated","_hooks","_metaBoxes","_","openGeneralSidebar","name","dispatch","registry","isDistractionFree","select","preferencesStore","get","toggleDistractionFree","interfaceStore","enableComplementaryArea","editPostStore","exports","closeGeneralSidebar","disableComplementaryArea","openModal","deprecated","since","alternative","closeModal","openPublishSidebar","type","closePublishSidebar","togglePublishSidebar","toggleEditorPanelEnabled","panelName","_registry$select$get","inactivePanels","isPanelInactive","includes","updatedInactivePanels","filter","invactivePanelName","set","toggleEditorPanelOpened","_registry$select$get2","openPanels","isPanelOpen","updatedOpenPanels","openPanelName","removeEditorPanel","toggleFeature","feature","toggle","switchEditorMode","mode","blockEditorStore","clearSelectedBlock","message","__","speak","togglePinnedPluginItem","pluginName","isPinned","isItemPinned","updatePreferredStyleVariations","blockName","blockStyle","_registry$select$get3","existingVariations","updatedVariations","showBlockTypes","blockNames","_registry$select$get4","existingBlockNames","newBlockNames","Array","isArray","hideBlockTypes","_registry$select$get5","mergedBlockNames","Set","setAvailableMetaBoxesPerLocation","metaBoxesPerLocation","requestMetaBoxUpdates","window","tinyMCE","triggerSave","post","editorStore","getCurrentPost","additionalData","comment_status","ping_status","sticky","author","Boolean","baseFormData","FormData","document","querySelector","activeMetaBoxLocations","getActiveMetaBoxLocations","formDataToMerge","map","location","getMetaBoxContainer","formData","reduce","memo","currentFormData","key","value","append","forEach","apiFetch","url","_wpMetaBoxUrl","method","body","parse","metaBoxUpdatesSuccess","metaBoxUpdatesFailure","__experimentalSetPreviewDeviceType","deviceType","setIsInserterOpened","setIsListViewOpened","isOpen","setIsEditingTemplate","__unstableSwitchToTemplateMode","newTemplate","isWelcomeGuideActive","isFeatureActive","noticesStore","createSuccessNotice","__unstableCreateTemplate","template","savedTemplate","coreStore","saveEntityRecord","editEntityRecord","id","slug","metaBoxesInitialized","initializeMetaBoxes","isEditorReady","__unstableIsEditorReady","postType","getCurrentPostType","postboxes","page","add_postbox_toggles","addFilter","previous","options","then","isAutosave","hasMetaBoxes","batch","createInfoNotice"],"sources":["@wordpress/edit-post/src/store/actions.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { __ } from '@wordpress/i18n';\nimport apiFetch from '@wordpress/api-fetch';\nimport { store as interfaceStore } from '@wordpress/interface';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport { speak } from '@wordpress/a11y';\nimport { store as noticesStore } from '@wordpress/notices';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { store as blockEditorStore } from '@wordpress/block-editor';\nimport { store as editorStore } from '@wordpress/editor';\nimport deprecated from '@wordpress/deprecated';\nimport { addFilter } from '@wordpress/hooks';\n\n/**\n * Internal dependencies\n */\nimport { getMetaBoxContainer } from '../utils/meta-boxes';\nimport { store as editPostStore } from '.';\n\n/**\n * Returns an action object used in signalling that the user opened an editor sidebar.\n *\n * @param {?string} name Sidebar name to be opened.\n */\nexport const openGeneralSidebar =\n\t( name ) =>\n\t( { dispatch, registry } ) => {\n\t\tconst isDistractionFree = registry\n\t\t\t.select( preferencesStore )\n\t\t\t.get( 'core/edit-post', 'distractionFree' );\n\t\tif ( isDistractionFree ) {\n\t\t\tdispatch.toggleDistractionFree();\n\t\t}\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t.enableComplementaryArea( editPostStore.name, name );\n\t};\n\n/**\n * Returns an action object signalling that the user closed the sidebar.\n */\nexport const closeGeneralSidebar =\n\t() =>\n\t( { registry } ) =>\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t.disableComplementaryArea( editPostStore.name );\n\n/**\n * Returns an action object used in signalling that the user opened a modal.\n *\n * @deprecated since WP 6.3 use `core/interface` store's action with the same name instead.\n *\n *\n * @param {string} name A string that uniquely identifies the modal.\n *\n * @return {Object} Action object.\n */\nexport const openModal =\n\t( name ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"select( 'core/edit-post' ).openModal( name )\", {\n\t\t\tsince: '6.3',\n\t\t\talternative: \"select( 'core/interface').openModal( name )\",\n\t\t} );\n\t\treturn registry.dispatch( interfaceStore ).openModal( name );\n\t};\n\n/**\n * Returns an action object signalling that the user closed a modal.\n *\n * @deprecated since WP 6.3 use `core/interface` store's action with the same name instead.\n *\n * @return {Object} Action object.\n */\nexport const closeModal =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"select( 'core/edit-post' ).closeModal()\", {\n\t\t\tsince: '6.3',\n\t\t\talternative: \"select( 'core/interface').closeModal()\",\n\t\t} );\n\t\treturn registry.dispatch( interfaceStore ).closeModal();\n\t};\n\n/**\n * Returns an action object used in signalling that the user opened the publish\n * sidebar.\n *\n * @return {Object} Action object\n */\nexport function openPublishSidebar() {\n\treturn {\n\t\ttype: 'OPEN_PUBLISH_SIDEBAR',\n\t};\n}\n\n/**\n * Returns an action object used in signalling that the user closed the\n * publish sidebar.\n *\n * @return {Object} Action object.\n */\nexport function closePublishSidebar() {\n\treturn {\n\t\ttype: 'CLOSE_PUBLISH_SIDEBAR',\n\t};\n}\n\n/**\n * Returns an action object used in signalling that the user toggles the publish sidebar.\n *\n * @return {Object} Action object\n */\nexport function togglePublishSidebar() {\n\treturn {\n\t\ttype: 'TOGGLE_PUBLISH_SIDEBAR',\n\t};\n}\n\n/**\n * Returns an action object used to enable or disable a panel in the editor.\n *\n * @param {string} panelName A string that identifies the panel to enable or disable.\n *\n * @return {Object} Action object.\n */\nexport const toggleEditorPanelEnabled =\n\t( panelName ) =>\n\t( { registry } ) => {\n\t\tconst inactivePanels =\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'inactivePanels' ) ?? [];\n\n\t\tconst isPanelInactive = !! inactivePanels?.includes( panelName );\n\n\t\t// If the panel is inactive, remove it to enable it, else add it to\n\t\t// make it inactive.\n\t\tlet updatedInactivePanels;\n\t\tif ( isPanelInactive ) {\n\t\t\tupdatedInactivePanels = inactivePanels.filter(\n\t\t\t\t( invactivePanelName ) => invactivePanelName !== panelName\n\t\t\t);\n\t\t} else {\n\t\t\tupdatedInactivePanels = [ ...inactivePanels, panelName ];\n\t\t}\n\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.set( 'core/edit-post', 'inactivePanels', updatedInactivePanels );\n\t};\n\n/**\n * Opens a closed panel and closes an open panel.\n *\n * @param {string} panelName A string that identifies the panel to open or close.\n */\nexport const toggleEditorPanelOpened =\n\t( panelName ) =>\n\t( { registry } ) => {\n\t\tconst openPanels =\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'openPanels' ) ?? [];\n\n\t\tconst isPanelOpen = !! openPanels?.includes( panelName );\n\n\t\t// If the panel is open, remove it to close it, else add it to\n\t\t// make it open.\n\t\tlet updatedOpenPanels;\n\t\tif ( isPanelOpen ) {\n\t\t\tupdatedOpenPanels = openPanels.filter(\n\t\t\t\t( openPanelName ) => openPanelName !== panelName\n\t\t\t);\n\t\t} else {\n\t\t\tupdatedOpenPanels = [ ...openPanels, panelName ];\n\t\t}\n\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.set( 'core/edit-post', 'openPanels', updatedOpenPanels );\n\t};\n\n/**\n * Returns an action object used to remove a panel from the editor.\n *\n * @param {string} panelName A string that identifies the panel to remove.\n *\n * @return {Object} Action object.\n */\nexport function removeEditorPanel( panelName ) {\n\treturn {\n\t\ttype: 'REMOVE_PANEL',\n\t\tpanelName,\n\t};\n}\n\n/**\n * Triggers an action used to toggle a feature flag.\n *\n * @param {string} feature Feature name.\n */\nexport const toggleFeature =\n\t( feature ) =>\n\t( { registry } ) =>\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.toggle( 'core/edit-post', feature );\n\n/**\n * Triggers an action used to switch editor mode.\n *\n * @param {string} mode The editor mode.\n */\nexport const switchEditorMode =\n\t( mode ) =>\n\t( { dispatch, registry } ) => {\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.set( 'core/edit-post', 'editorMode', mode );\n\n\t\t// Unselect blocks when we switch to the code editor.\n\t\tif ( mode !== 'visual' ) {\n\t\t\tregistry.dispatch( blockEditorStore ).clearSelectedBlock();\n\t\t}\n\n\t\tif (\n\t\t\tmode === 'text' &&\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'distractionFree' )\n\t\t) {\n\t\t\tdispatch.toggleDistractionFree();\n\t\t}\n\n\t\tconst message =\n\t\t\tmode === 'visual'\n\t\t\t\t? __( 'Visual editor selected' )\n\t\t\t\t: __( 'Code editor selected' );\n\t\tspeak( message, 'assertive' );\n\t};\n\n/**\n * Triggers an action object used to toggle a plugin name flag.\n *\n * @param {string} pluginName Plugin name.\n */\nexport const togglePinnedPluginItem =\n\t( pluginName ) =>\n\t( { registry } ) => {\n\t\tconst isPinned = registry\n\t\t\t.select( interfaceStore )\n\t\t\t.isItemPinned( 'core/edit-post', pluginName );\n\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t[ isPinned ? 'unpinItem' : 'pinItem' ](\n\t\t\t\t'core/edit-post',\n\t\t\t\tpluginName\n\t\t\t);\n\t};\n\n/**\n * Returns an action object used in signaling that a style should be auto-applied when a block is created.\n *\n * @param {string} blockName Name of the block.\n * @param {?string} blockStyle Name of the style that should be auto applied. If undefined, the \"auto apply\" setting of the block is removed.\n */\nexport const updatePreferredStyleVariations =\n\t( blockName, blockStyle ) =>\n\t( { registry } ) => {\n\t\tif ( ! blockName ) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst existingVariations =\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'preferredStyleVariations' ) ?? {};\n\n\t\t// When the blockStyle is omitted, remove the block's preferred variation.\n\t\tif ( ! blockStyle ) {\n\t\t\tconst updatedVariations = {\n\t\t\t\t...existingVariations,\n\t\t\t};\n\n\t\t\tdelete updatedVariations[ blockName ];\n\n\t\t\tregistry\n\t\t\t\t.dispatch( preferencesStore )\n\t\t\t\t.set(\n\t\t\t\t\t'core/edit-post',\n\t\t\t\t\t'preferredStyleVariations',\n\t\t\t\t\tupdatedVariations\n\t\t\t\t);\n\t\t} else {\n\t\t\t// Else add the variation.\n\t\t\tregistry\n\t\t\t\t.dispatch( preferencesStore )\n\t\t\t\t.set( 'core/edit-post', 'preferredStyleVariations', {\n\t\t\t\t\t...existingVariations,\n\t\t\t\t\t[ blockName ]: blockStyle,\n\t\t\t\t} );\n\t\t}\n\t};\n\n/**\n * Update the provided block types to be visible.\n *\n * @param {string[]} blockNames Names of block types to show.\n */\nexport const showBlockTypes =\n\t( blockNames ) =>\n\t( { registry } ) => {\n\t\tconst existingBlockNames =\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'hiddenBlockTypes' ) ?? [];\n\n\t\tconst newBlockNames = existingBlockNames.filter(\n\t\t\t( type ) =>\n\t\t\t\t! (\n\t\t\t\t\tArray.isArray( blockNames ) ? blockNames : [ blockNames ]\n\t\t\t\t).includes( type )\n\t\t);\n\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.set( 'core/edit-post', 'hiddenBlockTypes', newBlockNames );\n\t};\n\n/**\n * Update the provided block types to be hidden.\n *\n * @param {string[]} blockNames Names of block types to hide.\n */\nexport const hideBlockTypes =\n\t( blockNames ) =>\n\t( { registry } ) => {\n\t\tconst existingBlockNames =\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'hiddenBlockTypes' ) ?? [];\n\n\t\tconst mergedBlockNames = new Set( [\n\t\t\t...existingBlockNames,\n\t\t\t...( Array.isArray( blockNames ) ? blockNames : [ blockNames ] ),\n\t\t] );\n\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.set( 'core/edit-post', 'hiddenBlockTypes', [\n\t\t\t\t...mergedBlockNames,\n\t\t\t] );\n\t};\n\n/**\n * Stores info about which Meta boxes are available in which location.\n *\n * @param {Object} metaBoxesPerLocation Meta boxes per location.\n */\nexport function setAvailableMetaBoxesPerLocation( metaBoxesPerLocation ) {\n\treturn {\n\t\ttype: 'SET_META_BOXES_PER_LOCATIONS',\n\t\tmetaBoxesPerLocation,\n\t};\n}\n\n/**\n * Update a metabox.\n */\nexport const requestMetaBoxUpdates =\n\t() =>\n\tasync ( { registry, select, dispatch } ) => {\n\t\tdispatch( {\n\t\t\ttype: 'REQUEST_META_BOX_UPDATES',\n\t\t} );\n\n\t\t// Saves the wp_editor fields.\n\t\tif ( window.tinyMCE ) {\n\t\t\twindow.tinyMCE.triggerSave();\n\t\t}\n\n\t\t// Additional data needed for backward compatibility.\n\t\t// If we do not provide this data, the post will be overridden with the default values.\n\t\tconst post = registry.select( editorStore ).getCurrentPost();\n\t\tconst additionalData = [\n\t\t\tpost.comment_status\n\t\t\t\t? [ 'comment_status', post.comment_status ]\n\t\t\t\t: false,\n\t\t\tpost.ping_status ? [ 'ping_status', post.ping_status ] : false,\n\t\t\tpost.sticky ? [ 'sticky', post.sticky ] : false,\n\t\t\tpost.author ? [ 'post_author', post.author ] : false,\n\t\t].filter( Boolean );\n\n\t\t// We gather all the metaboxes locations data and the base form data.\n\t\tconst baseFormData = new window.FormData(\n\t\t\tdocument.querySelector( '.metabox-base-form' )\n\t\t);\n\t\tconst activeMetaBoxLocations = select.getActiveMetaBoxLocations();\n\t\tconst formDataToMerge = [\n\t\t\tbaseFormData,\n\t\t\t...activeMetaBoxLocations.map(\n\t\t\t\t( location ) =>\n\t\t\t\t\tnew window.FormData( getMetaBoxContainer( location ) )\n\t\t\t),\n\t\t];\n\n\t\t// Merge all form data objects into a single one.\n\t\tconst formData = formDataToMerge.reduce( ( memo, currentFormData ) => {\n\t\t\tfor ( const [ key, value ] of currentFormData ) {\n\t\t\t\tmemo.append( key, value );\n\t\t\t}\n\t\t\treturn memo;\n\t\t}, new window.FormData() );\n\t\tadditionalData.forEach( ( [ key, value ] ) =>\n\t\t\tformData.append( key, value )\n\t\t);\n\n\t\ttry {\n\t\t\t// Save the metaboxes.\n\t\t\tawait apiFetch( {\n\t\t\t\turl: window._wpMetaBoxUrl,\n\t\t\t\tmethod: 'POST',\n\t\t\t\tbody: formData,\n\t\t\t\tparse: false,\n\t\t\t} );\n\t\t\tdispatch.metaBoxUpdatesSuccess();\n\t\t} catch {\n\t\t\tdispatch.metaBoxUpdatesFailure();\n\t\t}\n\t};\n\n/**\n * Returns an action object used to signal a successful meta box update.\n *\n * @return {Object} Action object.\n */\nexport function metaBoxUpdatesSuccess() {\n\treturn {\n\t\ttype: 'META_BOX_UPDATES_SUCCESS',\n\t};\n}\n\n/**\n * Returns an action object used to signal a failed meta box update.\n *\n * @return {Object} Action object.\n */\nexport function metaBoxUpdatesFailure() {\n\treturn {\n\t\ttype: 'META_BOX_UPDATES_FAILURE',\n\t};\n}\n\n/**\n * Returns an action object used to toggle the width of the editing canvas.\n *\n * @param {string} deviceType\n *\n * @return {Object} Action object.\n */\nexport function __experimentalSetPreviewDeviceType( deviceType ) {\n\treturn {\n\t\ttype: 'SET_PREVIEW_DEVICE_TYPE',\n\t\tdeviceType,\n\t};\n}\n\n/**\n * Returns an action object used to open/close the inserter.\n *\n * @param {boolean|Object} value Whether the inserter should be\n * opened (true) or closed (false).\n * To specify an insertion point,\n * use an object.\n * @param {string} value.rootClientId The root client ID to insert at.\n * @param {number} value.insertionIndex The index to insert at.\n *\n * @return {Object} Action object.\n */\nexport function setIsInserterOpened( value ) {\n\treturn {\n\t\ttype: 'SET_IS_INSERTER_OPENED',\n\t\tvalue,\n\t};\n}\n\n/**\n * Returns an action object used to open/close the list view.\n *\n * @param {boolean} isOpen A boolean representing whether the list view should be opened or closed.\n * @return {Object} Action object.\n */\nexport const setIsListViewOpened =\n\t( isOpen ) =>\n\t( { dispatch, registry } ) => {\n\t\tconst isDistractionFree = registry\n\t\t\t.select( preferencesStore )\n\t\t\t.get( 'core/edit-post', 'distractionFree' );\n\t\tif ( isDistractionFree && isOpen ) {\n\t\t\tdispatch.toggleDistractionFree();\n\t\t}\n\t\tdispatch( {\n\t\t\ttype: 'SET_IS_LIST_VIEW_OPENED',\n\t\t\tisOpen,\n\t\t} );\n\t};\n\n/**\n * Returns an action object used to switch to template editing.\n *\n * @param {boolean} value Is editing template.\n * @return {Object} Action object.\n */\nexport function setIsEditingTemplate( value ) {\n\treturn {\n\t\ttype: 'SET_IS_EDITING_TEMPLATE',\n\t\tvalue,\n\t};\n}\n\n/**\n * Switches to the template mode.\n *\n * @param {boolean} newTemplate Is new template.\n */\nexport const __unstableSwitchToTemplateMode =\n\t( newTemplate = false ) =>\n\t( { registry, select, dispatch } ) => {\n\t\tdispatch( setIsEditingTemplate( true ) );\n\t\tconst isWelcomeGuideActive = select.isFeatureActive(\n\t\t\t'welcomeGuideTemplate'\n\t\t);\n\t\tif ( ! isWelcomeGuideActive ) {\n\t\t\tconst message = newTemplate\n\t\t\t\t? __( \"Custom template created. You're in template mode now.\" )\n\t\t\t\t: __(\n\t\t\t\t\t\t'Editing template. Changes made here affect all posts and pages that use the template.'\n\t\t\t\t );\n\t\t\tregistry.dispatch( noticesStore ).createSuccessNotice( message, {\n\t\t\t\ttype: 'snackbar',\n\t\t\t} );\n\t\t}\n\t};\n\n/**\n * Create a block based template.\n *\n * @param {Object?} template Template to create and assign.\n */\nexport const __unstableCreateTemplate =\n\t( template ) =>\n\tasync ( { registry } ) => {\n\t\tconst savedTemplate = await registry\n\t\t\t.dispatch( coreStore )\n\t\t\t.saveEntityRecord( 'postType', 'wp_template', template );\n\t\tconst post = registry.select( editorStore ).getCurrentPost();\n\t\tregistry\n\t\t\t.dispatch( coreStore )\n\t\t\t.editEntityRecord( 'postType', post.type, post.id, {\n\t\t\t\ttemplate: savedTemplate.slug,\n\t\t\t} );\n\t};\n\nlet metaBoxesInitialized = false;\n\n/**\n * Initializes WordPress `postboxes` script and the logic for saving meta boxes.\n */\nexport const initializeMetaBoxes =\n\t() =>\n\t( { registry, select, dispatch } ) => {\n\t\tconst isEditorReady = registry\n\t\t\t.select( editorStore )\n\t\t\t.__unstableIsEditorReady();\n\n\t\tif ( ! isEditorReady ) {\n\t\t\treturn;\n\t\t}\n\t\t// Only initialize once.\n\t\tif ( metaBoxesInitialized ) {\n\t\t\treturn;\n\t\t}\n\t\tconst postType = registry.select( editorStore ).getCurrentPostType();\n\t\tif ( window.postboxes.page !== postType ) {\n\t\t\twindow.postboxes.add_postbox_toggles( postType );\n\t\t}\n\n\t\tmetaBoxesInitialized = true;\n\n\t\t// Save metaboxes on save completion, except for autosaves.\n\t\taddFilter(\n\t\t\t'editor.__unstableSavePost',\n\t\t\t'core/edit-post/save-metaboxes',\n\t\t\t( previous, options ) =>\n\t\t\t\tprevious.then( () => {\n\t\t\t\t\tif ( options.isAutosave ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( ! select.hasMetaBoxes() ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn dispatch.requestMetaBoxUpdates();\n\t\t\t\t} )\n\t\t);\n\n\t\tdispatch( {\n\t\t\ttype: 'META_BOXES_INITIALIZED',\n\t\t} );\n\t};\n\n/**\n * Action that toggles Distraction free mode.\n * Distraction free mode expects there are no sidebars, as due to the\n * z-index values set, you can't close sidebars.\n */\nexport const toggleDistractionFree =\n\t() =>\n\t( { dispatch, registry } ) => {\n\t\tconst isDistractionFree = registry\n\t\t\t.select( preferencesStore )\n\t\t\t.get( 'core/edit-post', 'distractionFree' );\n\t\tif ( ! isDistractionFree ) {\n\t\t\tregistry.batch( () => {\n\t\t\t\tregistry\n\t\t\t\t\t.dispatch( preferencesStore )\n\t\t\t\t\t.set( 'core/edit-post', 'fixedToolbar', true );\n\t\t\t\tdispatch.setIsInserterOpened( false );\n\t\t\t\tdispatch.setIsListViewOpened( false );\n\t\t\t\tdispatch.closeGeneralSidebar();\n\t\t\t} );\n\t\t}\n\t\tregistry.batch( () => {\n\t\t\tregistry\n\t\t\t\t.dispatch( preferencesStore )\n\t\t\t\t.set(\n\t\t\t\t\t'core/edit-post',\n\t\t\t\t\t'distractionFree',\n\t\t\t\t\t! isDistractionFree\n\t\t\t\t);\n\t\t\tregistry\n\t\t\t\t.dispatch( noticesStore )\n\t\t\t\t.createInfoNotice(\n\t\t\t\t\tisDistractionFree\n\t\t\t\t\t\t? __( 'Distraction free off.' )\n\t\t\t\t\t\t: __( 'Distraction free on.' ),\n\t\t\t\t\t{\n\t\t\t\t\t\tid: 'core/edit-post/distraction-free-mode/notice',\n\t\t\t\t\t\ttype: 'snackbar',\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t} );\n\t};\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["_i18n","require","_apiFetch","_interopRequireDefault","_interface","_preferences","_a11y","_notices","_blockEditor","_editor","_deprecated","_hooks","_metaBoxes","_","openGeneralSidebar","name","dispatch","registry","isDistractionFree","select","preferencesStore","get","toggleDistractionFree","interfaceStore","enableComplementaryArea","editPostStore","exports","closeGeneralSidebar","disableComplementaryArea","openModal","deprecated","since","alternative","closeModal","openPublishSidebar","type","closePublishSidebar","togglePublishSidebar","toggleEditorPanelEnabled","panelName","_registry$select$get","inactivePanels","isPanelInactive","includes","updatedInactivePanels","filter","invactivePanelName","set","toggleEditorPanelOpened","_registry$select$get2","openPanels","isPanelOpen","updatedOpenPanels","openPanelName","removeEditorPanel","toggleFeature","feature","toggle","switchEditorMode","mode","blockEditorStore","clearSelectedBlock","message","__","speak","togglePinnedPluginItem","pluginName","isPinned","isItemPinned","updatePreferredStyleVariations","blockName","blockStyle","_registry$select$get3","existingVariations","updatedVariations","showBlockTypes","blockNames","_registry$select$get4","existingBlockNames","newBlockNames","Array","isArray","hideBlockTypes","_registry$select$get5","mergedBlockNames","Set","setAvailableMetaBoxesPerLocation","metaBoxesPerLocation","requestMetaBoxUpdates","window","tinyMCE","triggerSave","post","editorStore","getCurrentPost","additionalData","comment_status","ping_status","sticky","author","Boolean","baseFormData","FormData","document","querySelector","activeMetaBoxLocations","getActiveMetaBoxLocations","formDataToMerge","map","location","getMetaBoxContainer","formData","reduce","memo","currentFormData","key","value","append","forEach","apiFetch","url","_wpMetaBoxUrl","method","body","parse","metaBoxUpdatesSuccess","metaBoxUpdatesFailure","__experimentalSetPreviewDeviceType","deviceType","version","hint","setDeviceType","setIsInserterOpened","setIsListViewOpened","isOpen","setIsEditingTemplate","__unstableSwitchToTemplateMode","setRenderingMode","__unstableCreateTemplate","metaBoxesInitialized","initializeMetaBoxes","isEditorReady","__unstableIsEditorReady","postType","getCurrentPostType","postboxes","page","add_postbox_toggles","addFilter","previous","options","then","isAutosave","hasMetaBoxes","batch","noticesStore","createInfoNotice","id"],"sources":["@wordpress/edit-post/src/store/actions.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { __ } from '@wordpress/i18n';\nimport apiFetch from '@wordpress/api-fetch';\nimport { store as interfaceStore } from '@wordpress/interface';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport { speak } from '@wordpress/a11y';\nimport { store as noticesStore } from '@wordpress/notices';\nimport { store as blockEditorStore } from '@wordpress/block-editor';\nimport { store as editorStore } from '@wordpress/editor';\nimport deprecated from '@wordpress/deprecated';\nimport { addFilter } from '@wordpress/hooks';\n\n/**\n * Internal dependencies\n */\nimport { getMetaBoxContainer } from '../utils/meta-boxes';\nimport { store as editPostStore } from '.';\n\n/**\n * Returns an action object used in signalling that the user opened an editor sidebar.\n *\n * @param {?string} name Sidebar name to be opened.\n */\nexport const openGeneralSidebar =\n\t( name ) =>\n\t( { dispatch, registry } ) => {\n\t\tconst isDistractionFree = registry\n\t\t\t.select( preferencesStore )\n\t\t\t.get( 'core/edit-post', 'distractionFree' );\n\t\tif ( isDistractionFree ) {\n\t\t\tdispatch.toggleDistractionFree();\n\t\t}\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t.enableComplementaryArea( editPostStore.name, name );\n\t};\n\n/**\n * Returns an action object signalling that the user closed the sidebar.\n */\nexport const closeGeneralSidebar =\n\t() =>\n\t( { registry } ) =>\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t.disableComplementaryArea( editPostStore.name );\n\n/**\n * Returns an action object used in signalling that the user opened a modal.\n *\n * @deprecated since WP 6.3 use `core/interface` store's action with the same name instead.\n *\n *\n * @param {string} name A string that uniquely identifies the modal.\n *\n * @return {Object} Action object.\n */\nexport const openModal =\n\t( name ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"select( 'core/edit-post' ).openModal( name )\", {\n\t\t\tsince: '6.3',\n\t\t\talternative: \"select( 'core/interface').openModal( name )\",\n\t\t} );\n\t\treturn registry.dispatch( interfaceStore ).openModal( name );\n\t};\n\n/**\n * Returns an action object signalling that the user closed a modal.\n *\n * @deprecated since WP 6.3 use `core/interface` store's action with the same name instead.\n *\n * @return {Object} Action object.\n */\nexport const closeModal =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"select( 'core/edit-post' ).closeModal()\", {\n\t\t\tsince: '6.3',\n\t\t\talternative: \"select( 'core/interface').closeModal()\",\n\t\t} );\n\t\treturn registry.dispatch( interfaceStore ).closeModal();\n\t};\n\n/**\n * Returns an action object used in signalling that the user opened the publish\n * sidebar.\n *\n * @return {Object} Action object\n */\nexport function openPublishSidebar() {\n\treturn {\n\t\ttype: 'OPEN_PUBLISH_SIDEBAR',\n\t};\n}\n\n/**\n * Returns an action object used in signalling that the user closed the\n * publish sidebar.\n *\n * @return {Object} Action object.\n */\nexport function closePublishSidebar() {\n\treturn {\n\t\ttype: 'CLOSE_PUBLISH_SIDEBAR',\n\t};\n}\n\n/**\n * Returns an action object used in signalling that the user toggles the publish sidebar.\n *\n * @return {Object} Action object\n */\nexport function togglePublishSidebar() {\n\treturn {\n\t\ttype: 'TOGGLE_PUBLISH_SIDEBAR',\n\t};\n}\n\n/**\n * Returns an action object used to enable or disable a panel in the editor.\n *\n * @param {string} panelName A string that identifies the panel to enable or disable.\n *\n * @return {Object} Action object.\n */\nexport const toggleEditorPanelEnabled =\n\t( panelName ) =>\n\t( { registry } ) => {\n\t\tconst inactivePanels =\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'inactivePanels' ) ?? [];\n\n\t\tconst isPanelInactive = !! inactivePanels?.includes( panelName );\n\n\t\t// If the panel is inactive, remove it to enable it, else add it to\n\t\t// make it inactive.\n\t\tlet updatedInactivePanels;\n\t\tif ( isPanelInactive ) {\n\t\t\tupdatedInactivePanels = inactivePanels.filter(\n\t\t\t\t( invactivePanelName ) => invactivePanelName !== panelName\n\t\t\t);\n\t\t} else {\n\t\t\tupdatedInactivePanels = [ ...inactivePanels, panelName ];\n\t\t}\n\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.set( 'core/edit-post', 'inactivePanels', updatedInactivePanels );\n\t};\n\n/**\n * Opens a closed panel and closes an open panel.\n *\n * @param {string} panelName A string that identifies the panel to open or close.\n */\nexport const toggleEditorPanelOpened =\n\t( panelName ) =>\n\t( { registry } ) => {\n\t\tconst openPanels =\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'openPanels' ) ?? [];\n\n\t\tconst isPanelOpen = !! openPanels?.includes( panelName );\n\n\t\t// If the panel is open, remove it to close it, else add it to\n\t\t// make it open.\n\t\tlet updatedOpenPanels;\n\t\tif ( isPanelOpen ) {\n\t\t\tupdatedOpenPanels = openPanels.filter(\n\t\t\t\t( openPanelName ) => openPanelName !== panelName\n\t\t\t);\n\t\t} else {\n\t\t\tupdatedOpenPanels = [ ...openPanels, panelName ];\n\t\t}\n\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.set( 'core/edit-post', 'openPanels', updatedOpenPanels );\n\t};\n\n/**\n * Returns an action object used to remove a panel from the editor.\n *\n * @param {string} panelName A string that identifies the panel to remove.\n *\n * @return {Object} Action object.\n */\nexport function removeEditorPanel( panelName ) {\n\treturn {\n\t\ttype: 'REMOVE_PANEL',\n\t\tpanelName,\n\t};\n}\n\n/**\n * Triggers an action used to toggle a feature flag.\n *\n * @param {string} feature Feature name.\n */\nexport const toggleFeature =\n\t( feature ) =>\n\t( { registry } ) =>\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.toggle( 'core/edit-post', feature );\n\n/**\n * Triggers an action used to switch editor mode.\n *\n * @param {string} mode The editor mode.\n */\nexport const switchEditorMode =\n\t( mode ) =>\n\t( { dispatch, registry } ) => {\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.set( 'core/edit-post', 'editorMode', mode );\n\n\t\t// Unselect blocks when we switch to the code editor.\n\t\tif ( mode !== 'visual' ) {\n\t\t\tregistry.dispatch( blockEditorStore ).clearSelectedBlock();\n\t\t}\n\n\t\tif (\n\t\t\tmode === 'text' &&\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'distractionFree' )\n\t\t) {\n\t\t\tdispatch.toggleDistractionFree();\n\t\t}\n\n\t\tconst message =\n\t\t\tmode === 'visual'\n\t\t\t\t? __( 'Visual editor selected' )\n\t\t\t\t: __( 'Code editor selected' );\n\t\tspeak( message, 'assertive' );\n\t};\n\n/**\n * Triggers an action object used to toggle a plugin name flag.\n *\n * @param {string} pluginName Plugin name.\n */\nexport const togglePinnedPluginItem =\n\t( pluginName ) =>\n\t( { registry } ) => {\n\t\tconst isPinned = registry\n\t\t\t.select( interfaceStore )\n\t\t\t.isItemPinned( 'core/edit-post', pluginName );\n\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t[ isPinned ? 'unpinItem' : 'pinItem' ](\n\t\t\t\t'core/edit-post',\n\t\t\t\tpluginName\n\t\t\t);\n\t};\n\n/**\n * Returns an action object used in signaling that a style should be auto-applied when a block is created.\n *\n * @param {string} blockName Name of the block.\n * @param {?string} blockStyle Name of the style that should be auto applied. If undefined, the \"auto apply\" setting of the block is removed.\n */\nexport const updatePreferredStyleVariations =\n\t( blockName, blockStyle ) =>\n\t( { registry } ) => {\n\t\tif ( ! blockName ) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst existingVariations =\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'preferredStyleVariations' ) ?? {};\n\n\t\t// When the blockStyle is omitted, remove the block's preferred variation.\n\t\tif ( ! blockStyle ) {\n\t\t\tconst updatedVariations = {\n\t\t\t\t...existingVariations,\n\t\t\t};\n\n\t\t\tdelete updatedVariations[ blockName ];\n\n\t\t\tregistry\n\t\t\t\t.dispatch( preferencesStore )\n\t\t\t\t.set(\n\t\t\t\t\t'core/edit-post',\n\t\t\t\t\t'preferredStyleVariations',\n\t\t\t\t\tupdatedVariations\n\t\t\t\t);\n\t\t} else {\n\t\t\t// Else add the variation.\n\t\t\tregistry\n\t\t\t\t.dispatch( preferencesStore )\n\t\t\t\t.set( 'core/edit-post', 'preferredStyleVariations', {\n\t\t\t\t\t...existingVariations,\n\t\t\t\t\t[ blockName ]: blockStyle,\n\t\t\t\t} );\n\t\t}\n\t};\n\n/**\n * Update the provided block types to be visible.\n *\n * @param {string[]} blockNames Names of block types to show.\n */\nexport const showBlockTypes =\n\t( blockNames ) =>\n\t( { registry } ) => {\n\t\tconst existingBlockNames =\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'hiddenBlockTypes' ) ?? [];\n\n\t\tconst newBlockNames = existingBlockNames.filter(\n\t\t\t( type ) =>\n\t\t\t\t! (\n\t\t\t\t\tArray.isArray( blockNames ) ? blockNames : [ blockNames ]\n\t\t\t\t).includes( type )\n\t\t);\n\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.set( 'core/edit-post', 'hiddenBlockTypes', newBlockNames );\n\t};\n\n/**\n * Update the provided block types to be hidden.\n *\n * @param {string[]} blockNames Names of block types to hide.\n */\nexport const hideBlockTypes =\n\t( blockNames ) =>\n\t( { registry } ) => {\n\t\tconst existingBlockNames =\n\t\t\tregistry\n\t\t\t\t.select( preferencesStore )\n\t\t\t\t.get( 'core/edit-post', 'hiddenBlockTypes' ) ?? [];\n\n\t\tconst mergedBlockNames = new Set( [\n\t\t\t...existingBlockNames,\n\t\t\t...( Array.isArray( blockNames ) ? blockNames : [ blockNames ] ),\n\t\t] );\n\n\t\tregistry\n\t\t\t.dispatch( preferencesStore )\n\t\t\t.set( 'core/edit-post', 'hiddenBlockTypes', [\n\t\t\t\t...mergedBlockNames,\n\t\t\t] );\n\t};\n\n/**\n * Stores info about which Meta boxes are available in which location.\n *\n * @param {Object} metaBoxesPerLocation Meta boxes per location.\n */\nexport function setAvailableMetaBoxesPerLocation( metaBoxesPerLocation ) {\n\treturn {\n\t\ttype: 'SET_META_BOXES_PER_LOCATIONS',\n\t\tmetaBoxesPerLocation,\n\t};\n}\n\n/**\n * Update a metabox.\n */\nexport const requestMetaBoxUpdates =\n\t() =>\n\tasync ( { registry, select, dispatch } ) => {\n\t\tdispatch( {\n\t\t\ttype: 'REQUEST_META_BOX_UPDATES',\n\t\t} );\n\n\t\t// Saves the wp_editor fields.\n\t\tif ( window.tinyMCE ) {\n\t\t\twindow.tinyMCE.triggerSave();\n\t\t}\n\n\t\t// Additional data needed for backward compatibility.\n\t\t// If we do not provide this data, the post will be overridden with the default values.\n\t\tconst post = registry.select( editorStore ).getCurrentPost();\n\t\tconst additionalData = [\n\t\t\tpost.comment_status\n\t\t\t\t? [ 'comment_status', post.comment_status ]\n\t\t\t\t: false,\n\t\t\tpost.ping_status ? [ 'ping_status', post.ping_status ] : false,\n\t\t\tpost.sticky ? [ 'sticky', post.sticky ] : false,\n\t\t\tpost.author ? [ 'post_author', post.author ] : false,\n\t\t].filter( Boolean );\n\n\t\t// We gather all the metaboxes locations data and the base form data.\n\t\tconst baseFormData = new window.FormData(\n\t\t\tdocument.querySelector( '.metabox-base-form' )\n\t\t);\n\t\tconst activeMetaBoxLocations = select.getActiveMetaBoxLocations();\n\t\tconst formDataToMerge = [\n\t\t\tbaseFormData,\n\t\t\t...activeMetaBoxLocations.map(\n\t\t\t\t( location ) =>\n\t\t\t\t\tnew window.FormData( getMetaBoxContainer( location ) )\n\t\t\t),\n\t\t];\n\n\t\t// Merge all form data objects into a single one.\n\t\tconst formData = formDataToMerge.reduce( ( memo, currentFormData ) => {\n\t\t\tfor ( const [ key, value ] of currentFormData ) {\n\t\t\t\tmemo.append( key, value );\n\t\t\t}\n\t\t\treturn memo;\n\t\t}, new window.FormData() );\n\t\tadditionalData.forEach( ( [ key, value ] ) =>\n\t\t\tformData.append( key, value )\n\t\t);\n\n\t\ttry {\n\t\t\t// Save the metaboxes.\n\t\t\tawait apiFetch( {\n\t\t\t\turl: window._wpMetaBoxUrl,\n\t\t\t\tmethod: 'POST',\n\t\t\t\tbody: formData,\n\t\t\t\tparse: false,\n\t\t\t} );\n\t\t\tdispatch.metaBoxUpdatesSuccess();\n\t\t} catch {\n\t\t\tdispatch.metaBoxUpdatesFailure();\n\t\t}\n\t};\n\n/**\n * Returns an action object used to signal a successful meta box update.\n *\n * @return {Object} Action object.\n */\nexport function metaBoxUpdatesSuccess() {\n\treturn {\n\t\ttype: 'META_BOX_UPDATES_SUCCESS',\n\t};\n}\n\n/**\n * Returns an action object used to signal a failed meta box update.\n *\n * @return {Object} Action object.\n */\nexport function metaBoxUpdatesFailure() {\n\treturn {\n\t\ttype: 'META_BOX_UPDATES_FAILURE',\n\t};\n}\n\n/**\n * Action that changes the width of the editing canvas.\n *\n * @deprecated\n *\n * @param {string} deviceType\n *\n * @return {Object} Action object.\n */\nexport const __experimentalSetPreviewDeviceType =\n\t( deviceType ) =>\n\t( { registry } ) => {\n\t\tdeprecated(\n\t\t\t\"dispatch( 'core/edit-post' ).__experimentalSetPreviewDeviceType\",\n\t\t\t{\n\t\t\t\tsince: '6.5',\n\t\t\t\tversion: '6.7',\n\t\t\t\thint: 'registry.dispatch( editorStore ).setDeviceType',\n\t\t\t}\n\t\t);\n\t\tregistry.dispatch( editorStore ).setDeviceType( deviceType );\n\t};\n\n/**\n * Returns an action object used to open/close the inserter.\n *\n * @param {boolean|Object} value Whether the inserter should be\n * opened (true) or closed (false).\n * To specify an insertion point,\n * use an object.\n * @param {string} value.rootClientId The root client ID to insert at.\n * @param {number} value.insertionIndex The index to insert at.\n *\n * @return {Object} Action object.\n */\nexport function setIsInserterOpened( value ) {\n\treturn {\n\t\ttype: 'SET_IS_INSERTER_OPENED',\n\t\tvalue,\n\t};\n}\n\n/**\n * Returns an action object used to open/close the list view.\n *\n * @param {boolean} isOpen A boolean representing whether the list view should be opened or closed.\n * @return {Object} Action object.\n */\nexport const setIsListViewOpened =\n\t( isOpen ) =>\n\t( { dispatch, registry } ) => {\n\t\tconst isDistractionFree = registry\n\t\t\t.select( preferencesStore )\n\t\t\t.get( 'core/edit-post', 'distractionFree' );\n\t\tif ( isDistractionFree && isOpen ) {\n\t\t\tdispatch.toggleDistractionFree();\n\t\t}\n\t\tdispatch( {\n\t\t\ttype: 'SET_IS_LIST_VIEW_OPENED',\n\t\t\tisOpen,\n\t\t} );\n\t};\n\n/**\n * Returns an action object used to switch to template editing.\n *\n * @deprecated\n */\nexport function setIsEditingTemplate() {\n\tdeprecated( \"dispatch( 'core/edit-post' ).setIsEditingTemplate\", {\n\t\tsince: '6.5',\n\t\talternative: \"dispatch( 'core/editor').setRenderingMode\",\n\t} );\n\treturn { type: 'NOTHING' };\n}\n\n/**\n * Switches to the template mode.\n */\nexport const __unstableSwitchToTemplateMode =\n\t() =>\n\t( { registry } ) => {\n\t\tregistry.dispatch( editorStore ).setRenderingMode( 'template-only' );\n\t};\n\n/**\n * Create a block based template.\n *\n * @deprecated\n */\nexport function __unstableCreateTemplate() {\n\tdeprecated( \"dispatch( 'core/edit-post' ).__unstableCreateTemplate\", {\n\t\tsince: '6.5',\n\t} );\n\treturn { type: 'NOTHING' };\n}\n\nlet metaBoxesInitialized = false;\n\n/**\n * Initializes WordPress `postboxes` script and the logic for saving meta boxes.\n */\nexport const initializeMetaBoxes =\n\t() =>\n\t( { registry, select, dispatch } ) => {\n\t\tconst isEditorReady = registry\n\t\t\t.select( editorStore )\n\t\t\t.__unstableIsEditorReady();\n\n\t\tif ( ! isEditorReady ) {\n\t\t\treturn;\n\t\t}\n\t\t// Only initialize once.\n\t\tif ( metaBoxesInitialized ) {\n\t\t\treturn;\n\t\t}\n\t\tconst postType = registry.select( editorStore ).getCurrentPostType();\n\t\tif ( window.postboxes.page !== postType ) {\n\t\t\twindow.postboxes.add_postbox_toggles( postType );\n\t\t}\n\n\t\tmetaBoxesInitialized = true;\n\n\t\t// Save metaboxes on save completion, except for autosaves.\n\t\taddFilter(\n\t\t\t'editor.__unstableSavePost',\n\t\t\t'core/edit-post/save-metaboxes',\n\t\t\t( previous, options ) =>\n\t\t\t\tprevious.then( () => {\n\t\t\t\t\tif ( options.isAutosave ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( ! select.hasMetaBoxes() ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn dispatch.requestMetaBoxUpdates();\n\t\t\t\t} )\n\t\t);\n\n\t\tdispatch( {\n\t\t\ttype: 'META_BOXES_INITIALIZED',\n\t\t} );\n\t};\n\n/**\n * Action that toggles Distraction free mode.\n * Distraction free mode expects there are no sidebars, as due to the\n * z-index values set, you can't close sidebars.\n */\nexport const toggleDistractionFree =\n\t() =>\n\t( { dispatch, registry } ) => {\n\t\tconst isDistractionFree = registry\n\t\t\t.select( preferencesStore )\n\t\t\t.get( 'core/edit-post', 'distractionFree' );\n\t\tif ( ! isDistractionFree ) {\n\t\t\tregistry.batch( () => {\n\t\t\t\tregistry\n\t\t\t\t\t.dispatch( preferencesStore )\n\t\t\t\t\t.set( 'core/edit-post', 'fixedToolbar', true );\n\t\t\t\tdispatch.setIsInserterOpened( false );\n\t\t\t\tdispatch.setIsListViewOpened( false );\n\t\t\t\tdispatch.closeGeneralSidebar();\n\t\t\t} );\n\t\t}\n\t\tregistry.batch( () => {\n\t\t\tregistry\n\t\t\t\t.dispatch( preferencesStore )\n\t\t\t\t.set(\n\t\t\t\t\t'core/edit-post',\n\t\t\t\t\t'distractionFree',\n\t\t\t\t\t! isDistractionFree\n\t\t\t\t);\n\t\t\tregistry\n\t\t\t\t.dispatch( noticesStore )\n\t\t\t\t.createInfoNotice(\n\t\t\t\t\tisDistractionFree\n\t\t\t\t\t\t? __( 'Distraction free off.' )\n\t\t\t\t\t\t: __( 'Distraction free on.' ),\n\t\t\t\t\t{\n\t\t\t\t\t\tid: 'core/edit-post/distraction-free-mode/notice',\n\t\t\t\t\t\ttype: 'snackbar',\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t} );\n\t};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAGA,IAAAA,KAAA,GAAAC,OAAA;AACA,IAAAC,SAAA,GAAAC,sBAAA,CAAAF,OAAA;AACA,IAAAG,UAAA,GAAAH,OAAA;AACA,IAAAI,YAAA,GAAAJ,OAAA;AACA,IAAAK,KAAA,GAAAL,OAAA;AACA,IAAAM,QAAA,GAAAN,OAAA;AACA,IAAAO,YAAA,GAAAP,OAAA;AACA,IAAAQ,OAAA,GAAAR,OAAA;AACA,IAAAS,WAAA,GAAAP,sBAAA,CAAAF,OAAA;AACA,IAAAU,MAAA,GAAAV,OAAA;AAKA,IAAAW,UAAA,GAAAX,OAAA;AACA,IAAAY,CAAA,GAAAZ,OAAA;AAlBA;AACA;AACA;;AAYA;AACA;AACA;;AAIA;AACA;AACA;AACA;AACA;AACO,MAAMa,kBAAkB,GAC5BC,IAAI,IACN,CAAE;EAAEC,QAAQ;EAAEC;AAAS,CAAC,KAAM;EAC7B,MAAMC,iBAAiB,GAAGD,QAAQ,CAChCE,MAAM,CAAEC,kBAAiB,CAAC,CAC1BC,GAAG,CAAE,gBAAgB,EAAE,iBAAkB,CAAC;EAC5C,IAAKH,iBAAiB,EAAG;IACxBF,QAAQ,CAACM,qBAAqB,CAAC,CAAC;EACjC;EACAL,QAAQ,CACND,QAAQ,CAAEO,gBAAe,CAAC,CAC1BC,uBAAuB,CAAEC,OAAa,CAACV,IAAI,EAAEA,IAAK,CAAC;AACtD,CAAC;;AAEF;AACA;AACA;AAFAW,OAAA,CAAAZ,kBAAA,GAAAA,kBAAA;AAGO,MAAMa,mBAAmB,GAC/BA,CAAA,KACA,CAAE;EAAEV;AAAS,CAAC,KACbA,QAAQ,CACND,QAAQ,CAAEO,gBAAe,CAAC,CAC1BK,wBAAwB,CAAEH,OAAa,CAACV,IAAK,CAAC;;AAElD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AATAW,OAAA,CAAAC,mBAAA,GAAAA,mBAAA;AAUO,MAAME,SAAS,GACnBd,IAAI,IACN,CAAE;EAAEE;AAAS,CAAC,KAAM;EACnB,IAAAa,mBAAU,EAAE,8CAA8C,EAAE;IAC3DC,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACH,OAAOf,QAAQ,CAACD,QAAQ,CAAEO,gBAAe,CAAC,CAACM,SAAS,CAAEd,IAAK,CAAC;AAC7D,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AANAW,OAAA,CAAAG,SAAA,GAAAA,SAAA;AAOO,MAAMI,UAAU,GACtBA,CAAA,KACA,CAAE;EAAEhB;AAAS,CAAC,KAAM;EACnB,IAAAa,mBAAU,EAAE,yCAAyC,EAAE;IACtDC,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACH,OAAOf,QAAQ,CAACD,QAAQ,CAAEO,gBAAe,CAAC,CAACU,UAAU,CAAC,CAAC;AACxD,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AALAP,OAAA,CAAAO,UAAA,GAAAA,UAAA;AAMO,SAASC,kBAAkBA,CAAA,EAAG;EACpC,OAAO;IACNC,IAAI,EAAE;EACP,CAAC;AACF;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,SAASC,mBAAmBA,CAAA,EAAG;EACrC,OAAO;IACND,IAAI,EAAE;EACP,CAAC;AACF;;AAEA;AACA;AACA;AACA;AACA;AACO,SAASE,oBAAoBA,CAAA,EAAG;EACtC,OAAO;IACNF,IAAI,EAAE;EACP,CAAC;AACF;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,MAAMG,wBAAwB,GAClCC,SAAS,IACX,CAAE;EAAEtB;AAAS,CAAC,KAAM;EAAA,IAAAuB,oBAAA;EACnB,MAAMC,cAAc,IAAAD,oBAAA,GACnBvB,QAAQ,CACNE,MAAM,CAAEC,kBAAiB,CAAC,CAC1BC,GAAG,CAAE,gBAAgB,EAAE,gBAAiB,CAAC,cAAAmB,oBAAA,cAAAA,oBAAA,GAAI,EAAE;EAElD,MAAME,eAAe,GAAG,CAAC,CAAED,cAAc,EAAEE,QAAQ,CAAEJ,SAAU,CAAC;;EAEhE;EACA;EACA,IAAIK,qBAAqB;EACzB,IAAKF,eAAe,EAAG;IACtBE,qBAAqB,GAAGH,cAAc,CAACI,MAAM,CAC1CC,kBAAkB,IAAMA,kBAAkB,KAAKP,SAClD,CAAC;EACF,CAAC,MAAM;IACNK,qBAAqB,GAAG,CAAE,GAAGH,cAAc,EAAEF,SAAS,CAAE;EACzD;EAEAtB,QAAQ,CACND,QAAQ,CAAEI,kBAAiB,CAAC,CAC5B2B,GAAG,CAAE,gBAAgB,EAAE,gBAAgB,EAAEH,qBAAsB,CAAC;AACnE,CAAC;;AAEF;AACA;AACA;AACA;AACA;AAJAlB,OAAA,CAAAY,wBAAA,GAAAA,wBAAA;AAKO,MAAMU,uBAAuB,GACjCT,SAAS,IACX,CAAE;EAAEtB;AAAS,CAAC,KAAM;EAAA,IAAAgC,qBAAA;EACnB,MAAMC,UAAU,IAAAD,qBAAA,GACfhC,QAAQ,CACNE,MAAM,CAAEC,kBAAiB,CAAC,CAC1BC,GAAG,CAAE,gBAAgB,EAAE,YAAa,CAAC,cAAA4B,qBAAA,cAAAA,qBAAA,GAAI,EAAE;EAE9C,MAAME,WAAW,GAAG,CAAC,CAAED,UAAU,EAAEP,QAAQ,CAAEJ,SAAU,CAAC;;EAExD;EACA;EACA,IAAIa,iBAAiB;EACrB,IAAKD,WAAW,EAAG;IAClBC,iBAAiB,GAAGF,UAAU,CAACL,MAAM,CAClCQ,aAAa,IAAMA,aAAa,KAAKd,SACxC,CAAC;EACF,CAAC,MAAM;IACNa,iBAAiB,GAAG,CAAE,GAAGF,UAAU,EAAEX,SAAS,CAAE;EACjD;EAEAtB,QAAQ,CACND,QAAQ,CAAEI,kBAAiB,CAAC,CAC5B2B,GAAG,CAAE,gBAAgB,EAAE,YAAY,EAAEK,iBAAkB,CAAC;AAC3D,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AANA1B,OAAA,CAAAsB,uBAAA,GAAAA,uBAAA;AAOO,SAASM,iBAAiBA,CAAEf,SAAS,EAAG;EAC9C,OAAO;IACNJ,IAAI,EAAE,cAAc;IACpBI;EACD,CAAC;AACF;;AAEA;AACA;AACA;AACA;AACA;AACO,MAAMgB,aAAa,GACvBC,OAAO,IACT,CAAE;EAAEvC;AAAS,CAAC,KACbA,QAAQ,CACND,QAAQ,CAAEI,kBAAiB,CAAC,CAC5BqC,MAAM,CAAE,gBAAgB,EAAED,OAAQ,CAAC;;AAEvC;AACA;AACA;AACA;AACA;AAJA9B,OAAA,CAAA6B,aAAA,GAAAA,aAAA;AAKO,MAAMG,gBAAgB,GAC1BC,IAAI,IACN,CAAE;EAAE3C,QAAQ;EAAEC;AAAS,CAAC,KAAM;EAC7BA,QAAQ,CACND,QAAQ,CAAEI,kBAAiB,CAAC,CAC5B2B,GAAG,CAAE,gBAAgB,EAAE,YAAY,EAAEY,IAAK,CAAC;;EAE7C;EACA,IAAKA,IAAI,KAAK,QAAQ,EAAG;IACxB1C,QAAQ,CAACD,QAAQ,CAAE4C,kBAAiB,CAAC,CAACC,kBAAkB,CAAC,CAAC;EAC3D;EAEA,IACCF,IAAI,KAAK,MAAM,IACf1C,QAAQ,CACNE,MAAM,CAAEC,kBAAiB,CAAC,CAC1BC,GAAG,CAAE,gBAAgB,EAAE,iBAAkB,CAAC,EAC3C;IACDL,QAAQ,CAACM,qBAAqB,CAAC,CAAC;EACjC;EAEA,MAAMwC,OAAO,GACZH,IAAI,KAAK,QAAQ,GACd,IAAAI,QAAE,EAAE,wBAAyB,CAAC,GAC9B,IAAAA,QAAE,EAAE,sBAAuB,CAAC;EAChC,IAAAC,WAAK,EAAEF,OAAO,EAAE,WAAY,CAAC;AAC9B,CAAC;;AAEF;AACA;AACA;AACA;AACA;AAJApC,OAAA,CAAAgC,gBAAA,GAAAA,gBAAA;AAKO,MAAMO,sBAAsB,GAChCC,UAAU,IACZ,CAAE;EAAEjD;AAAS,CAAC,KAAM;EACnB,MAAMkD,QAAQ,GAAGlD,QAAQ,CACvBE,MAAM,CAAEI,gBAAe,CAAC,CACxB6C,YAAY,CAAE,gBAAgB,EAAEF,UAAW,CAAC;EAE9CjD,QAAQ,CACND,QAAQ,CAAEO,gBAAe,CAAC,CACzB4C,QAAQ,GAAG,WAAW,GAAG,SAAS,CAAE,CACrC,gBAAgB,EAChBD,UACD,CAAC;AACH,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AALAxC,OAAA,CAAAuC,sBAAA,GAAAA,sBAAA;AAMO,MAAMI,8BAA8B,GAC1CA,CAAEC,SAAS,EAAEC,UAAU,KACvB,CAAE;EAAEtD;AAAS,CAAC,KAAM;EAAA,IAAAuD,qBAAA;EACnB,IAAK,CAAEF,SAAS,EAAG;IAClB;EACD;EAEA,MAAMG,kBAAkB,IAAAD,qBAAA,GACvBvD,QAAQ,CACNE,MAAM,CAAEC,kBAAiB,CAAC,CAC1BC,GAAG,CAAE,gBAAgB,EAAE,0BAA2B,CAAC,cAAAmD,qBAAA,cAAAA,qBAAA,GAAI,CAAC,CAAC;;EAE5D;EACA,IAAK,CAAED,UAAU,EAAG;IACnB,MAAMG,iBAAiB,GAAG;MACzB,GAAGD;IACJ,CAAC;IAED,OAAOC,iBAAiB,CAAEJ,SAAS,CAAE;IAErCrD,QAAQ,CACND,QAAQ,CAAEI,kBAAiB,CAAC,CAC5B2B,GAAG,CACH,gBAAgB,EAChB,0BAA0B,EAC1B2B,iBACD,CAAC;EACH,CAAC,MAAM;IACN;IACAzD,QAAQ,CACND,QAAQ,CAAEI,kBAAiB,CAAC,CAC5B2B,GAAG,CAAE,gBAAgB,EAAE,0BAA0B,EAAE;MACnD,GAAG0B,kBAAkB;MACrB,CAAEH,SAAS,GAAIC;IAChB,CAAE,CAAC;EACL;AACD,CAAC;;AAEF;AACA;AACA;AACA;AACA;AAJA7C,OAAA,CAAA2C,8BAAA,GAAAA,8BAAA;AAKO,MAAMM,cAAc,GACxBC,UAAU,IACZ,CAAE;EAAE3D;AAAS,CAAC,KAAM;EAAA,IAAA4D,qBAAA;EACnB,MAAMC,kBAAkB,IAAAD,qBAAA,GACvB5D,QAAQ,CACNE,MAAM,CAAEC,kBAAiB,CAAC,CAC1BC,GAAG,CAAE,gBAAgB,EAAE,kBAAmB,CAAC,cAAAwD,qBAAA,cAAAA,qBAAA,GAAI,EAAE;EAEpD,MAAME,aAAa,GAAGD,kBAAkB,CAACjC,MAAM,CAC5CV,IAAI,IACL,CAAE,CACD6C,KAAK,CAACC,OAAO,CAAEL,UAAW,CAAC,GAAGA,UAAU,GAAG,CAAEA,UAAU,CAAE,EACxDjC,QAAQ,CAAER,IAAK,CACnB,CAAC;EAEDlB,QAAQ,CACND,QAAQ,CAAEI,kBAAiB,CAAC,CAC5B2B,GAAG,CAAE,gBAAgB,EAAE,kBAAkB,EAAEgC,aAAc,CAAC;AAC7D,CAAC;;AAEF;AACA;AACA;AACA;AACA;AAJArD,OAAA,CAAAiD,cAAA,GAAAA,cAAA;AAKO,MAAMO,cAAc,GACxBN,UAAU,IACZ,CAAE;EAAE3D;AAAS,CAAC,KAAM;EAAA,IAAAkE,qBAAA;EACnB,MAAML,kBAAkB,IAAAK,qBAAA,GACvBlE,QAAQ,CACNE,MAAM,CAAEC,kBAAiB,CAAC,CAC1BC,GAAG,CAAE,gBAAgB,EAAE,kBAAmB,CAAC,cAAA8D,qBAAA,cAAAA,qBAAA,GAAI,EAAE;EAEpD,MAAMC,gBAAgB,GAAG,IAAIC,GAAG,CAAE,CACjC,GAAGP,kBAAkB,EACrB,IAAKE,KAAK,CAACC,OAAO,CAAEL,UAAW,CAAC,GAAGA,UAAU,GAAG,CAAEA,UAAU,CAAE,CAAE,CAC/D,CAAC;EAEH3D,QAAQ,CACND,QAAQ,CAAEI,kBAAiB,CAAC,CAC5B2B,GAAG,CAAE,gBAAgB,EAAE,kBAAkB,EAAE,CAC3C,GAAGqC,gBAAgB,CAClB,CAAC;AACL,CAAC;;AAEF;AACA;AACA;AACA;AACA;AAJA1D,OAAA,CAAAwD,cAAA,GAAAA,cAAA;AAKO,SAASI,gCAAgCA,CAAEC,oBAAoB,EAAG;EACxE,OAAO;IACNpD,IAAI,EAAE,8BAA8B;IACpCoD;EACD,CAAC;AACF;;AAEA;AACA;AACA;AACO,MAAMC,qBAAqB,GACjCA,CAAA,KACA,OAAQ;EAAEvE,QAAQ;EAAEE,MAAM;EAAEH;AAAS,CAAC,KAAM;EAC3CA,QAAQ,CAAE;IACTmB,IAAI,EAAE;EACP,CAAE,CAAC;;EAEH;EACA,IAAKsD,MAAM,CAACC,OAAO,EAAG;IACrBD,MAAM,CAACC,OAAO,CAACC,WAAW,CAAC,CAAC;EAC7B;;EAEA;EACA;EACA,MAAMC,IAAI,GAAG3E,QAAQ,CAACE,MAAM,CAAE0E,aAAY,CAAC,CAACC,cAAc,CAAC,CAAC;EAC5D,MAAMC,cAAc,GAAG,CACtBH,IAAI,CAACI,cAAc,GAChB,CAAE,gBAAgB,EAAEJ,IAAI,CAACI,cAAc,CAAE,GACzC,KAAK,EACRJ,IAAI,CAACK,WAAW,GAAG,CAAE,aAAa,EAAEL,IAAI,CAACK,WAAW,CAAE,GAAG,KAAK,EAC9DL,IAAI,CAACM,MAAM,GAAG,CAAE,QAAQ,EAAEN,IAAI,CAACM,MAAM,CAAE,GAAG,KAAK,EAC/CN,IAAI,CAACO,MAAM,GAAG,CAAE,aAAa,EAAEP,IAAI,CAACO,MAAM,CAAE,GAAG,KAAK,CACpD,CAACtD,MAAM,CAAEuD,OAAQ,CAAC;;EAEnB;EACA,MAAMC,YAAY,GAAG,IAAIZ,MAAM,CAACa,QAAQ,CACvCC,QAAQ,CAACC,aAAa,CAAE,oBAAqB,CAC9C,CAAC;EACD,MAAMC,sBAAsB,GAAGtF,MAAM,CAACuF,yBAAyB,CAAC,CAAC;EACjE,MAAMC,eAAe,GAAG,CACvBN,YAAY,EACZ,GAAGI,sBAAsB,CAACG,GAAG,CAC1BC,QAAQ,IACT,IAAIpB,MAAM,CAACa,QAAQ,CAAE,IAAAQ,8BAAmB,EAAED,QAAS,CAAE,CACvD,CAAC,CACD;;EAED;EACA,MAAME,QAAQ,GAAGJ,eAAe,CAACK,MAAM,CAAE,CAAEC,IAAI,EAAEC,eAAe,KAAM;IACrE,KAAM,MAAM,CAAEC,GAAG,EAAEC,KAAK,CAAE,IAAIF,eAAe,EAAG;MAC/CD,IAAI,CAACI,MAAM,CAAEF,GAAG,EAAEC,KAAM,CAAC;IAC1B;IACA,OAAOH,IAAI;EACZ,CAAC,EAAE,IAAIxB,MAAM,CAACa,QAAQ,CAAC,CAAE,CAAC;EAC1BP,cAAc,CAACuB,OAAO,CAAE,CAAE,CAAEH,GAAG,EAAEC,KAAK,CAAE,KACvCL,QAAQ,CAACM,MAAM,CAAEF,GAAG,EAAEC,KAAM,CAC7B,CAAC;EAED,IAAI;IACH;IACA,MAAM,IAAAG,iBAAQ,EAAE;MACfC,GAAG,EAAE/B,MAAM,CAACgC,aAAa;MACzBC,MAAM,EAAE,MAAM;MACdC,IAAI,EAAEZ,QAAQ;MACda,KAAK,EAAE;IACR,CAAE,CAAC;IACH5G,QAAQ,CAAC6G,qBAAqB,CAAC,CAAC;EACjC,CAAC,CAAC,MAAM;IACP7G,QAAQ,CAAC8G,qBAAqB,CAAC,CAAC;EACjC;AACD,CAAC;;AAEF;AACA;AACA;AACA;AACA;AAJApG,OAAA,CAAA8D,qBAAA,GAAAA,qBAAA;AAKO,SAASqC,qBAAqBA,CAAA,EAAG;EACvC,OAAO;IACN1F,IAAI,EAAE;EACP,CAAC;AACF;;AAEA;AACA;AACA;AACA;AACA;AACO,SAAS2F,qBAAqBA,CAAA,EAAG;EACvC,OAAO;IACN3F,IAAI,EAAE;EACP,CAAC;AACF;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,MAAM4F,kCAAkC,GAC5CC,UAAU,IACZ,CAAE;EAAE/G;AAAS,CAAC,KAAM;EACnB,IAAAa,mBAAU,EACT,iEAAiE,EACjE;IACCC,KAAK,EAAE,KAAK;IACZkG,OAAO,EAAE,KAAK;IACdC,IAAI,EAAE;EACP,CACD,CAAC;EACDjH,QAAQ,CAACD,QAAQ,CAAE6E,aAAY,CAAC,CAACsC,aAAa,CAAEH,UAAW,CAAC;AAC7D,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAXAtG,OAAA,CAAAqG,kCAAA,GAAAA,kCAAA;AAYO,SAASK,mBAAmBA,CAAEhB,KAAK,EAAG;EAC5C,OAAO;IACNjF,IAAI,EAAE,wBAAwB;IAC9BiF;EACD,CAAC;AACF;;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,MAAMiB,mBAAmB,GAC7BC,MAAM,IACR,CAAE;EAAEtH,QAAQ;EAAEC;AAAS,CAAC,KAAM;EAC7B,MAAMC,iBAAiB,GAAGD,QAAQ,CAChCE,MAAM,CAAEC,kBAAiB,CAAC,CAC1BC,GAAG,CAAE,gBAAgB,EAAE,iBAAkB,CAAC;EAC5C,IAAKH,iBAAiB,IAAIoH,MAAM,EAAG;IAClCtH,QAAQ,CAACM,qBAAqB,CAAC,CAAC;EACjC;EACAN,QAAQ,CAAE;IACTmB,IAAI,EAAE,yBAAyB;IAC/BmG;EACD,CAAE,CAAC;AACJ,CAAC;;AAEF;AACA;AACA;AACA;AACA;AAJA5G,OAAA,CAAA2G,mBAAA,GAAAA,mBAAA;AAKO,SAASE,oBAAoBA,CAAA,EAAG;EACtC,IAAAzG,mBAAU,EAAE,mDAAmD,EAAE;IAChEC,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACH,OAAO;IAAEG,IAAI,EAAE;EAAU,CAAC;AAC3B;;AAEA;AACA;AACA;AACO,MAAMqG,8BAA8B,GAC1CA,CAAA,KACA,CAAE;EAAEvH;AAAS,CAAC,KAAM;EACnBA,QAAQ,CAACD,QAAQ,CAAE6E,aAAY,CAAC,CAAC4C,gBAAgB,CAAE,eAAgB,CAAC;AACrE,CAAC;;AAEF;AACA;AACA;AACA;AACA;AAJA/G,OAAA,CAAA8G,8BAAA,GAAAA,8BAAA;AAKO,SAASE,wBAAwBA,CAAA,EAAG;EAC1C,IAAA5G,mBAAU,EAAE,uDAAuD,EAAE;IACpEC,KAAK,EAAE;EACR,CAAE,CAAC;EACH,OAAO;IAAEI,IAAI,EAAE;EAAU,CAAC;AAC3B;AAEA,IAAIwG,oBAAoB,GAAG,KAAK;;AAEhC;AACA;AACA;AACO,MAAMC,mBAAmB,GAC/BA,CAAA,KACA,CAAE;EAAE3H,QAAQ;EAAEE,MAAM;EAAEH;AAAS,CAAC,KAAM;EACrC,MAAM6H,aAAa,GAAG5H,QAAQ,CAC5BE,MAAM,CAAE0E,aAAY,CAAC,CACrBiD,uBAAuB,CAAC,CAAC;EAE3B,IAAK,CAAED,aAAa,EAAG;IACtB;EACD;EACA;EACA,IAAKF,oBAAoB,EAAG;IAC3B;EACD;EACA,MAAMI,QAAQ,GAAG9H,QAAQ,CAACE,MAAM,CAAE0E,aAAY,CAAC,CAACmD,kBAAkB,CAAC,CAAC;EACpE,IAAKvD,MAAM,CAACwD,SAAS,CAACC,IAAI,KAAKH,QAAQ,EAAG;IACzCtD,MAAM,CAACwD,SAAS,CAACE,mBAAmB,CAAEJ,QAAS,CAAC;EACjD;EAEAJ,oBAAoB,GAAG,IAAI;;EAE3B;EACA,IAAAS,gBAAS,EACR,2BAA2B,EAC3B,+BAA+B,EAC/B,CAAEC,QAAQ,EAAEC,OAAO,KAClBD,QAAQ,CAACE,IAAI,CAAE,MAAM;IACpB,IAAKD,OAAO,CAACE,UAAU,EAAG;MACzB;IACD;IAEA,IAAK,CAAErI,MAAM,CAACsI,YAAY,CAAC,CAAC,EAAG;MAC9B;IACD;IAEA,OAAOzI,QAAQ,CAACwE,qBAAqB,CAAC,CAAC;EACxC,CAAE,CACJ,CAAC;EAEDxE,QAAQ,CAAE;IACTmB,IAAI,EAAE;EACP,CAAE,CAAC;AACJ,CAAC;;AAEF;AACA;AACA;AACA;AACA;AAJAT,OAAA,CAAAkH,mBAAA,GAAAA,mBAAA;AAKO,MAAMtH,qBAAqB,GACjCA,CAAA,KACA,CAAE;EAAEN,QAAQ;EAAEC;AAAS,CAAC,KAAM;EAC7B,MAAMC,iBAAiB,GAAGD,QAAQ,CAChCE,MAAM,CAAEC,kBAAiB,CAAC,CAC1BC,GAAG,CAAE,gBAAgB,EAAE,iBAAkB,CAAC;EAC5C,IAAK,CAAEH,iBAAiB,EAAG;IAC1BD,QAAQ,CAACyI,KAAK,CAAE,MAAM;MACrBzI,QAAQ,CACND,QAAQ,CAAEI,kBAAiB,CAAC,CAC5B2B,GAAG,CAAE,gBAAgB,EAAE,cAAc,EAAE,IAAK,CAAC;MAC/C/B,QAAQ,CAACoH,mBAAmB,CAAE,KAAM,CAAC;MACrCpH,QAAQ,CAACqH,mBAAmB,CAAE,KAAM,CAAC;MACrCrH,QAAQ,CAACW,mBAAmB,CAAC,CAAC;IAC/B,CAAE,CAAC;EACJ;EACAV,QAAQ,CAACyI,KAAK,CAAE,MAAM;IACrBzI,QAAQ,CACND,QAAQ,CAAEI,kBAAiB,CAAC,CAC5B2B,GAAG,CACH,gBAAgB,EAChB,iBAAiB,EACjB,CAAE7B,iBACH,CAAC;IACFD,QAAQ,CACND,QAAQ,CAAE2I,cAAa,CAAC,CACxBC,gBAAgB,CAChB1I,iBAAiB,GACd,IAAA6C,QAAE,EAAE,uBAAwB,CAAC,GAC7B,IAAAA,QAAE,EAAE,sBAAuB,CAAC,EAC/B;MACC8F,EAAE,EAAE,6CAA6C;MACjD1H,IAAI,EAAE;IACP,CACD,CAAC;EACH,CAAE,CAAC;AACJ,CAAC;AAACT,OAAA,CAAAJ,qBAAA,GAAAA,qBAAA"}
|
package/build/store/reducer.js
CHANGED
|
@@ -5,7 +5,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.blockInserterPanel = blockInserterPanel;
|
|
7
7
|
exports.default = void 0;
|
|
8
|
-
exports.deviceType = deviceType;
|
|
9
8
|
exports.isSavingMetaBoxes = isSavingMetaBoxes;
|
|
10
9
|
exports.listViewPanel = listViewPanel;
|
|
11
10
|
exports.metaBoxLocations = metaBoxLocations;
|
|
@@ -103,22 +102,6 @@ function metaBoxLocations(state = {}, action) {
|
|
|
103
102
|
return state;
|
|
104
103
|
}
|
|
105
104
|
|
|
106
|
-
/**
|
|
107
|
-
* Reducer returning the editing canvas device type.
|
|
108
|
-
*
|
|
109
|
-
* @param {Object} state Current state.
|
|
110
|
-
* @param {Object} action Dispatched action.
|
|
111
|
-
*
|
|
112
|
-
* @return {Object} Updated state.
|
|
113
|
-
*/
|
|
114
|
-
function deviceType(state = 'Desktop', action) {
|
|
115
|
-
switch (action.type) {
|
|
116
|
-
case 'SET_PREVIEW_DEVICE_TYPE':
|
|
117
|
-
return action.deviceType;
|
|
118
|
-
}
|
|
119
|
-
return state;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
105
|
/**
|
|
123
106
|
* Reducer to set the block inserter panel open or closed.
|
|
124
107
|
*
|
|
@@ -157,20 +140,6 @@ function listViewPanel(state = false, action) {
|
|
|
157
140
|
return state;
|
|
158
141
|
}
|
|
159
142
|
|
|
160
|
-
/**
|
|
161
|
-
* Reducer tracking whether template editing is on or off.
|
|
162
|
-
*
|
|
163
|
-
* @param {boolean} state
|
|
164
|
-
* @param {Object} action
|
|
165
|
-
*/
|
|
166
|
-
function isEditingTemplate(state = false, action) {
|
|
167
|
-
switch (action.type) {
|
|
168
|
-
case 'SET_IS_EDITING_TEMPLATE':
|
|
169
|
-
return action.value;
|
|
170
|
-
}
|
|
171
|
-
return state;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
143
|
/**
|
|
175
144
|
* Reducer tracking whether meta boxes are initialized.
|
|
176
145
|
*
|
|
@@ -195,10 +164,8 @@ var _default = (0, _data.combineReducers)({
|
|
|
195
164
|
metaBoxes,
|
|
196
165
|
publishSidebarActive,
|
|
197
166
|
removedPanels,
|
|
198
|
-
deviceType,
|
|
199
167
|
blockInserterPanel,
|
|
200
|
-
listViewPanel
|
|
201
|
-
isEditingTemplate
|
|
168
|
+
listViewPanel
|
|
202
169
|
});
|
|
203
170
|
exports.default = _default;
|
|
204
171
|
//# sourceMappingURL=reducer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_data","require","removedPanels","state","action","type","includes","panelName","publishSidebarActive","isSavingMetaBoxes","mergeMetaboxes","metaboxes","newMetaboxes","mergedMetaboxes","metabox","existing","findIndex","box","id","push","metaBoxLocations","newState","location","Object","entries","metaBoxesPerLocation","
|
|
1
|
+
{"version":3,"names":["_data","require","removedPanels","state","action","type","includes","panelName","publishSidebarActive","isSavingMetaBoxes","mergeMetaboxes","metaboxes","newMetaboxes","mergedMetaboxes","metabox","existing","findIndex","box","id","push","metaBoxLocations","newState","location","Object","entries","metaBoxesPerLocation","blockInserterPanel","isOpen","value","listViewPanel","metaBoxesInitialized","metaBoxes","combineReducers","isSaving","locations","initialized","_default","exports","default"],"sources":["@wordpress/edit-post/src/store/reducer.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { combineReducers } from '@wordpress/data';\n\n/**\n * Reducer storing the list of all programmatically removed panels.\n *\n * @param {Array} state Current state.\n * @param {Object} action Action object.\n *\n * @return {Array} Updated state.\n */\nexport function removedPanels( state = [], action ) {\n\tswitch ( action.type ) {\n\t\tcase 'REMOVE_PANEL':\n\t\t\tif ( ! state.includes( action.panelName ) ) {\n\t\t\t\treturn [ ...state, action.panelName ];\n\t\t\t}\n\t}\n\n\treturn state;\n}\n\nexport function publishSidebarActive( state = false, action ) {\n\tswitch ( action.type ) {\n\t\tcase 'OPEN_PUBLISH_SIDEBAR':\n\t\t\treturn true;\n\t\tcase 'CLOSE_PUBLISH_SIDEBAR':\n\t\t\treturn false;\n\t\tcase 'TOGGLE_PUBLISH_SIDEBAR':\n\t\t\treturn ! state;\n\t}\n\treturn state;\n}\n\n/**\n * Reducer keeping track of the meta boxes isSaving state.\n * A \"true\" value means the meta boxes saving request is in-flight.\n *\n *\n * @param {boolean} state Previous state.\n * @param {Object} action Action Object.\n *\n * @return {Object} Updated state.\n */\nexport function isSavingMetaBoxes( state = false, action ) {\n\tswitch ( action.type ) {\n\t\tcase 'REQUEST_META_BOX_UPDATES':\n\t\t\treturn true;\n\t\tcase 'META_BOX_UPDATES_SUCCESS':\n\t\tcase 'META_BOX_UPDATES_FAILURE':\n\t\t\treturn false;\n\t\tdefault:\n\t\t\treturn state;\n\t}\n}\n\nfunction mergeMetaboxes( metaboxes = [], newMetaboxes ) {\n\tconst mergedMetaboxes = [ ...metaboxes ];\n\tfor ( const metabox of newMetaboxes ) {\n\t\tconst existing = mergedMetaboxes.findIndex(\n\t\t\t( box ) => box.id === metabox.id\n\t\t);\n\t\tif ( existing !== -1 ) {\n\t\t\tmergedMetaboxes[ existing ] = metabox;\n\t\t} else {\n\t\t\tmergedMetaboxes.push( metabox );\n\t\t}\n\t}\n\treturn mergedMetaboxes;\n}\n\n/**\n * Reducer keeping track of the meta boxes per location.\n *\n * @param {boolean} state Previous state.\n * @param {Object} action Action Object.\n *\n * @return {Object} Updated state.\n */\nexport function metaBoxLocations( state = {}, action ) {\n\tswitch ( action.type ) {\n\t\tcase 'SET_META_BOXES_PER_LOCATIONS': {\n\t\t\tconst newState = { ...state };\n\t\t\tfor ( const [ location, metaboxes ] of Object.entries(\n\t\t\t\taction.metaBoxesPerLocation\n\t\t\t) ) {\n\t\t\t\tnewState[ location ] = mergeMetaboxes(\n\t\t\t\t\tnewState[ location ],\n\t\t\t\t\tmetaboxes\n\t\t\t\t);\n\t\t\t}\n\t\t\treturn newState;\n\t\t}\n\t}\n\n\treturn state;\n}\n\n/**\n * Reducer to set the block inserter panel open or closed.\n *\n * Note: this reducer interacts with the list view panel reducer\n * to make sure that only one of the two panels is open at the same time.\n *\n * @param {Object} state Current state.\n * @param {Object} action Dispatched action.\n */\nexport function blockInserterPanel( state = false, action ) {\n\tswitch ( action.type ) {\n\t\tcase 'SET_IS_LIST_VIEW_OPENED':\n\t\t\treturn action.isOpen ? false : state;\n\t\tcase 'SET_IS_INSERTER_OPENED':\n\t\t\treturn action.value;\n\t}\n\treturn state;\n}\n\n/**\n * Reducer to set the list view panel open or closed.\n *\n * Note: this reducer interacts with the inserter panel reducer\n * to make sure that only one of the two panels is open at the same time.\n *\n * @param {Object} state Current state.\n * @param {Object} action Dispatched action.\n */\nexport function listViewPanel( state = false, action ) {\n\tswitch ( action.type ) {\n\t\tcase 'SET_IS_INSERTER_OPENED':\n\t\t\treturn action.value ? false : state;\n\t\tcase 'SET_IS_LIST_VIEW_OPENED':\n\t\t\treturn action.isOpen;\n\t}\n\treturn state;\n}\n\n/**\n * Reducer tracking whether meta boxes are initialized.\n *\n * @param {boolean} state\n * @param {Object} action\n *\n * @return {boolean} Updated state.\n */\nfunction metaBoxesInitialized( state = false, action ) {\n\tswitch ( action.type ) {\n\t\tcase 'META_BOXES_INITIALIZED':\n\t\t\treturn true;\n\t}\n\treturn state;\n}\n\nconst metaBoxes = combineReducers( {\n\tisSaving: isSavingMetaBoxes,\n\tlocations: metaBoxLocations,\n\tinitialized: metaBoxesInitialized,\n} );\n\nexport default combineReducers( {\n\tmetaBoxes,\n\tpublishSidebarActive,\n\tremovedPanels,\n\tblockInserterPanel,\n\tlistViewPanel,\n} );\n"],"mappings":";;;;;;;;;;;;AAGA,IAAAA,KAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAASC,aAAaA,CAAEC,KAAK,GAAG,EAAE,EAAEC,MAAM,EAAG;EACnD,QAASA,MAAM,CAACC,IAAI;IACnB,KAAK,cAAc;MAClB,IAAK,CAAEF,KAAK,CAACG,QAAQ,CAAEF,MAAM,CAACG,SAAU,CAAC,EAAG;QAC3C,OAAO,CAAE,GAAGJ,KAAK,EAAEC,MAAM,CAACG,SAAS,CAAE;MACtC;EACF;EAEA,OAAOJ,KAAK;AACb;AAEO,SAASK,oBAAoBA,CAAEL,KAAK,GAAG,KAAK,EAAEC,MAAM,EAAG;EAC7D,QAASA,MAAM,CAACC,IAAI;IACnB,KAAK,sBAAsB;MAC1B,OAAO,IAAI;IACZ,KAAK,uBAAuB;MAC3B,OAAO,KAAK;IACb,KAAK,wBAAwB;MAC5B,OAAO,CAAEF,KAAK;EAChB;EACA,OAAOA,KAAK;AACb;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAASM,iBAAiBA,CAAEN,KAAK,GAAG,KAAK,EAAEC,MAAM,EAAG;EAC1D,QAASA,MAAM,CAACC,IAAI;IACnB,KAAK,0BAA0B;MAC9B,OAAO,IAAI;IACZ,KAAK,0BAA0B;IAC/B,KAAK,0BAA0B;MAC9B,OAAO,KAAK;IACb;MACC,OAAOF,KAAK;EACd;AACD;AAEA,SAASO,cAAcA,CAAEC,SAAS,GAAG,EAAE,EAAEC,YAAY,EAAG;EACvD,MAAMC,eAAe,GAAG,CAAE,GAAGF,SAAS,CAAE;EACxC,KAAM,MAAMG,OAAO,IAAIF,YAAY,EAAG;IACrC,MAAMG,QAAQ,GAAGF,eAAe,CAACG,SAAS,CACvCC,GAAG,IAAMA,GAAG,CAACC,EAAE,KAAKJ,OAAO,CAACI,EAC/B,CAAC;IACD,IAAKH,QAAQ,KAAK,CAAC,CAAC,EAAG;MACtBF,eAAe,CAAEE,QAAQ,CAAE,GAAGD,OAAO;IACtC,CAAC,MAAM;MACND,eAAe,CAACM,IAAI,CAAEL,OAAQ,CAAC;IAChC;EACD;EACA,OAAOD,eAAe;AACvB;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAASO,gBAAgBA,CAAEjB,KAAK,GAAG,CAAC,CAAC,EAAEC,MAAM,EAAG;EACtD,QAASA,MAAM,CAACC,IAAI;IACnB,KAAK,8BAA8B;MAAE;QACpC,MAAMgB,QAAQ,GAAG;UAAE,GAAGlB;QAAM,CAAC;QAC7B,KAAM,MAAM,CAAEmB,QAAQ,EAAEX,SAAS,CAAE,IAAIY,MAAM,CAACC,OAAO,CACpDpB,MAAM,CAACqB,oBACR,CAAC,EAAG;UACHJ,QAAQ,CAAEC,QAAQ,CAAE,GAAGZ,cAAc,CACpCW,QAAQ,CAAEC,QAAQ,CAAE,EACpBX,SACD,CAAC;QACF;QACA,OAAOU,QAAQ;MAChB;EACD;EAEA,OAAOlB,KAAK;AACb;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAASuB,kBAAkBA,CAAEvB,KAAK,GAAG,KAAK,EAAEC,MAAM,EAAG;EAC3D,QAASA,MAAM,CAACC,IAAI;IACnB,KAAK,yBAAyB;MAC7B,OAAOD,MAAM,CAACuB,MAAM,GAAG,KAAK,GAAGxB,KAAK;IACrC,KAAK,wBAAwB;MAC5B,OAAOC,MAAM,CAACwB,KAAK;EACrB;EACA,OAAOzB,KAAK;AACb;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS0B,aAAaA,CAAE1B,KAAK,GAAG,KAAK,EAAEC,MAAM,EAAG;EACtD,QAASA,MAAM,CAACC,IAAI;IACnB,KAAK,wBAAwB;MAC5B,OAAOD,MAAM,CAACwB,KAAK,GAAG,KAAK,GAAGzB,KAAK;IACpC,KAAK,yBAAyB;MAC7B,OAAOC,MAAM,CAACuB,MAAM;EACtB;EACA,OAAOxB,KAAK;AACb;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS2B,oBAAoBA,CAAE3B,KAAK,GAAG,KAAK,EAAEC,MAAM,EAAG;EACtD,QAASA,MAAM,CAACC,IAAI;IACnB,KAAK,wBAAwB;MAC5B,OAAO,IAAI;EACb;EACA,OAAOF,KAAK;AACb;AAEA,MAAM4B,SAAS,GAAG,IAAAC,qBAAe,EAAE;EAClCC,QAAQ,EAAExB,iBAAiB;EAC3ByB,SAAS,EAAEd,gBAAgB;EAC3Be,WAAW,EAAEL;AACd,CAAE,CAAC;AAAC,IAAAM,QAAA,GAEW,IAAAJ,qBAAe,EAAE;EAC/BD,SAAS;EACTvB,oBAAoB;EACpBN,aAAa;EACbwB,kBAAkB;EAClBG;AACD,CAAE,CAAC;AAAAQ,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/build/store/selectors.js
CHANGED
|
@@ -5,15 +5,14 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.__experimentalGetInsertionPoint = __experimentalGetInsertionPoint;
|
|
8
|
-
exports.__experimentalGetPreviewDeviceType =
|
|
8
|
+
exports.__experimentalGetPreviewDeviceType = void 0;
|
|
9
9
|
exports.areMetaBoxesInitialized = areMetaBoxesInitialized;
|
|
10
10
|
exports.getHiddenBlockTypes = exports.getEditorMode = exports.getEditedPostTemplate = exports.getAllMetaBoxes = exports.getActiveMetaBoxLocations = exports.getActiveGeneralSidebarName = void 0;
|
|
11
11
|
exports.getMetaBoxesPerLocation = getMetaBoxesPerLocation;
|
|
12
12
|
exports.getPreference = getPreference;
|
|
13
13
|
exports.getPreferences = void 0;
|
|
14
14
|
exports.hasMetaBoxes = hasMetaBoxes;
|
|
15
|
-
exports.isEditingTemplate =
|
|
16
|
-
exports.isEditorPanelOpened = exports.isEditorPanelEnabled = void 0;
|
|
15
|
+
exports.isEditorPanelOpened = exports.isEditorPanelEnabled = exports.isEditingTemplate = void 0;
|
|
17
16
|
exports.isEditorPanelRemoved = isEditorPanelRemoved;
|
|
18
17
|
exports.isFeatureActive = exports.isEditorSidebarOpened = void 0;
|
|
19
18
|
exports.isInserterOpened = isInserterOpened;
|
|
@@ -414,13 +413,20 @@ function isSavingMetaBoxes(state) {
|
|
|
414
413
|
/**
|
|
415
414
|
* Returns the current editing canvas device type.
|
|
416
415
|
*
|
|
416
|
+
* @deprecated
|
|
417
|
+
*
|
|
417
418
|
* @param {Object} state Global application state.
|
|
418
419
|
*
|
|
419
420
|
* @return {string} Device type.
|
|
420
421
|
*/
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
422
|
+
const __experimentalGetPreviewDeviceType = (0, _data.createRegistrySelector)(select => () => {
|
|
423
|
+
(0, _deprecated.default)(`select( 'core/edit-site' ).__experimentalGetPreviewDeviceType`, {
|
|
424
|
+
since: '6.5',
|
|
425
|
+
version: '6.7',
|
|
426
|
+
alternative: `select( 'core/editor' ).getDeviceType`
|
|
427
|
+
});
|
|
428
|
+
return select(_editor.store).getDeviceType();
|
|
429
|
+
});
|
|
424
430
|
|
|
425
431
|
/**
|
|
426
432
|
* Returns true if the inserter is opened.
|
|
@@ -429,6 +435,7 @@ function __experimentalGetPreviewDeviceType(state) {
|
|
|
429
435
|
*
|
|
430
436
|
* @return {boolean} Whether the inserter is opened.
|
|
431
437
|
*/
|
|
438
|
+
exports.__experimentalGetPreviewDeviceType = __experimentalGetPreviewDeviceType;
|
|
432
439
|
function isInserterOpened(state) {
|
|
433
440
|
return !!state.blockInserterPanel;
|
|
434
441
|
}
|
|
@@ -461,13 +468,15 @@ function isListViewOpened(state) {
|
|
|
461
468
|
/**
|
|
462
469
|
* Returns true if the template editing mode is enabled.
|
|
463
470
|
*
|
|
464
|
-
* @
|
|
465
|
-
*
|
|
466
|
-
* @return {boolean} Whether we're editing the template.
|
|
471
|
+
* @deprecated
|
|
467
472
|
*/
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
473
|
+
const isEditingTemplate = (0, _data.createRegistrySelector)(select => () => {
|
|
474
|
+
(0, _deprecated.default)(`select( 'core/edit-post' ).isEditingTemplate`, {
|
|
475
|
+
since: '6.5',
|
|
476
|
+
alternative: `select( 'core/editor' ).getRenderingMode`
|
|
477
|
+
});
|
|
478
|
+
return select(_editor.store).getRenderingMode() !== 'post-only';
|
|
479
|
+
});
|
|
471
480
|
|
|
472
481
|
/**
|
|
473
482
|
* Returns true if meta boxes are initialized.
|
|
@@ -476,6 +485,7 @@ function isEditingTemplate(state) {
|
|
|
476
485
|
*
|
|
477
486
|
* @return {boolean} Whether meta boxes are initialized.
|
|
478
487
|
*/
|
|
488
|
+
exports.isEditingTemplate = isEditingTemplate;
|
|
479
489
|
function areMetaBoxesInitialized(state) {
|
|
480
490
|
return state.metaBoxes.initialized;
|
|
481
491
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_rememo","_interopRequireDefault","require","_data","_interface","_preferences","_coreData","_editor","_deprecated","EMPTY_ARRAY","EMPTY_OBJECT","EMPTY_INSERTION_POINT","rootClientId","undefined","insertionIndex","filterValue","getEditorMode","createRegistrySelector","select","_select$get","preferencesStore","get","exports","isEditorSidebarOpened","activeGeneralSidebar","interfaceStore","getActiveComplementaryArea","includes","isPluginSidebarOpened","getActiveGeneralSidebarName","convertPanelsToOldFormat","inactivePanels","openPanels","_ref","panelsWithEnabledState","reduce","accumulatedPanels","panelName","enabled","panels","currentPanelState","opened","getPreferences","deprecated","since","alternative","preferences","accumulatedPrefs","preferenceKey","value","getPreference","state","defaultValue","getHiddenBlockTypes","_select$get2","isPublishSidebarOpened","publishSidebarActive","isEditorPanelRemoved","removedPanels","isEditorPanelEnabled","isEditorPanelOpened","isModalActive","modalName","isFeatureActive","feature","isPluginItemPinned","pluginName","isItemPinned","getActiveMetaBoxLocations","createSelector","Object","keys","metaBoxes","locations","filter","location","isMetaBoxLocationActive","isMetaBoxLocationVisible","getMetaBoxesPerLocation","some","id","length","getAllMetaBoxes","values","flat","hasMetaBoxes","isSavingMetaBoxes","isSaving","__experimentalGetPreviewDeviceType","deviceType","isInserterOpened","blockInserterPanel","__experimentalGetInsertionPoint","isListViewOpened","listViewPanel","isEditingTemplate","areMetaBoxesInitialized","initialized","getEditedPostTemplate","currentTemplate","editorStore","getEditedPostAttribute","templateWithSameSlug","coreStore","getEntityRecords","per_page","find","template","slug","getEditedEntityRecord","post","getCurrentPost","link","__experimentalGetTemplateForLink"],"sources":["@wordpress/edit-post/src/store/selectors.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport createSelector from 'rememo';\n\n/**\n * WordPress dependencies\n */\nimport { createRegistrySelector } from '@wordpress/data';\nimport { store as interfaceStore } from '@wordpress/interface';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { store as editorStore } from '@wordpress/editor';\nimport deprecated from '@wordpress/deprecated';\n\nconst EMPTY_ARRAY = [];\nconst EMPTY_OBJECT = {};\nconst EMPTY_INSERTION_POINT = {\n\trootClientId: undefined,\n\tinsertionIndex: undefined,\n\tfilterValue: undefined,\n};\n\n/**\n * Returns the current editing mode.\n *\n * @param {Object} state Global application state.\n *\n * @return {string} Editing mode.\n */\nexport const getEditorMode = createRegistrySelector(\n\t( select ) => () =>\n\t\tselect( preferencesStore ).get( 'core/edit-post', 'editorMode' ) ??\n\t\t'visual'\n);\n\n/**\n * Returns true if the editor sidebar is opened.\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether the editor sidebar is opened.\n */\nexport const isEditorSidebarOpened = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst activeGeneralSidebar =\n\t\t\tselect( interfaceStore ).getActiveComplementaryArea(\n\t\t\t\t'core/edit-post'\n\t\t\t);\n\t\treturn [ 'edit-post/document', 'edit-post/block' ].includes(\n\t\t\tactiveGeneralSidebar\n\t\t);\n\t}\n);\n\n/**\n * Returns true if the plugin sidebar is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the plugin sidebar is opened.\n */\nexport const isPluginSidebarOpened = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst activeGeneralSidebar =\n\t\t\tselect( interfaceStore ).getActiveComplementaryArea(\n\t\t\t\t'core/edit-post'\n\t\t\t);\n\t\treturn (\n\t\t\t!! activeGeneralSidebar &&\n\t\t\t! [ 'edit-post/document', 'edit-post/block' ].includes(\n\t\t\t\tactiveGeneralSidebar\n\t\t\t)\n\t\t);\n\t}\n);\n\n/**\n * Returns the current active general sidebar name, or null if there is no\n * general sidebar active. The active general sidebar is a unique name to\n * identify either an editor or plugin sidebar.\n *\n * Examples:\n *\n * - `edit-post/document`\n * - `my-plugin/insert-image-sidebar`\n *\n * @param {Object} state Global application state.\n *\n * @return {?string} Active general sidebar name.\n */\nexport const getActiveGeneralSidebarName = createRegistrySelector(\n\t( select ) => () => {\n\t\treturn select( interfaceStore ).getActiveComplementaryArea(\n\t\t\t'core/edit-post'\n\t\t);\n\t}\n);\n\n/**\n * Converts panels from the new preferences store format to the old format\n * that the post editor previously used.\n *\n * The resultant converted data should look like this:\n * {\n * panelName: {\n * enabled: false,\n * opened: true,\n * },\n * anotherPanelName: {\n * opened: true\n * },\n * }\n *\n * @param {string[] | undefined} inactivePanels An array of inactive panel names.\n * @param {string[] | undefined} openPanels An array of open panel names.\n *\n * @return {Object} The converted panel data.\n */\nfunction convertPanelsToOldFormat( inactivePanels, openPanels ) {\n\t// First reduce the inactive panels.\n\tconst panelsWithEnabledState = inactivePanels?.reduce(\n\t\t( accumulatedPanels, panelName ) => ( {\n\t\t\t...accumulatedPanels,\n\t\t\t[ panelName ]: {\n\t\t\t\tenabled: false,\n\t\t\t},\n\t\t} ),\n\t\t{}\n\t);\n\n\t// Then reduce the open panels, passing in the result of the previous\n\t// reduction as the initial value so that both open and inactive\n\t// panel state is combined.\n\tconst panels = openPanels?.reduce( ( accumulatedPanels, panelName ) => {\n\t\tconst currentPanelState = accumulatedPanels?.[ panelName ];\n\t\treturn {\n\t\t\t...accumulatedPanels,\n\t\t\t[ panelName ]: {\n\t\t\t\t...currentPanelState,\n\t\t\t\topened: true,\n\t\t\t},\n\t\t};\n\t}, panelsWithEnabledState ?? {} );\n\n\t// The panels variable will only be set if openPanels wasn't `undefined`.\n\t// If it isn't set just return `panelsWithEnabledState`, and if that isn't\n\t// set return an empty object.\n\treturn panels ?? panelsWithEnabledState ?? EMPTY_OBJECT;\n}\n\n/**\n * Returns the preferences (these preferences are persisted locally).\n *\n * @param {Object} state Global application state.\n *\n * @return {Object} Preferences Object.\n */\nexport const getPreferences = createRegistrySelector( ( select ) => () => {\n\tdeprecated( `select( 'core/edit-post' ).getPreferences`, {\n\t\tsince: '6.0',\n\t\talternative: `select( 'core/preferences' ).get`,\n\t} );\n\n\t// These preferences now exist in the preferences store.\n\t// Fetch them so that they can be merged into the post\n\t// editor preferences.\n\tconst preferences = [\n\t\t'hiddenBlockTypes',\n\t\t'editorMode',\n\t\t'preferredStyleVariations',\n\t].reduce( ( accumulatedPrefs, preferenceKey ) => {\n\t\tconst value = select( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\tpreferenceKey\n\t\t);\n\n\t\treturn {\n\t\t\t...accumulatedPrefs,\n\t\t\t[ preferenceKey ]: value,\n\t\t};\n\t}, {} );\n\n\t// Panels were a preference, but the data structure changed when the state\n\t// was migrated to the preferences store. They need to be converted from\n\t// the new preferences store format to old format to ensure no breaking\n\t// changes for plugins.\n\tconst inactivePanels = select( preferencesStore ).get(\n\t\t'core/edit-post',\n\t\t'inactivePanels'\n\t);\n\tconst openPanels = select( preferencesStore ).get(\n\t\t'core/edit-post',\n\t\t'openPanels'\n\t);\n\tconst panels = convertPanelsToOldFormat( inactivePanels, openPanels );\n\n\treturn {\n\t\t...preferences,\n\t\tpanels,\n\t};\n} );\n\n/**\n *\n * @param {Object} state Global application state.\n * @param {string} preferenceKey Preference Key.\n * @param {*} defaultValue Default Value.\n *\n * @return {*} Preference Value.\n */\nexport function getPreference( state, preferenceKey, defaultValue ) {\n\tdeprecated( `select( 'core/edit-post' ).getPreference`, {\n\t\tsince: '6.0',\n\t\talternative: `select( 'core/preferences' ).get`,\n\t} );\n\n\t// Avoid using the `getPreferences` registry selector where possible.\n\tconst preferences = getPreferences( state );\n\tconst value = preferences[ preferenceKey ];\n\treturn value === undefined ? defaultValue : value;\n}\n\n/**\n * Returns an array of blocks that are hidden.\n *\n * @return {Array} A list of the hidden block types\n */\nexport const getHiddenBlockTypes = createRegistrySelector( ( select ) => () => {\n\treturn (\n\t\tselect( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\t'hiddenBlockTypes'\n\t\t) ?? EMPTY_ARRAY\n\t);\n} );\n\n/**\n * Returns true if the publish sidebar is opened.\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether the publish sidebar is open.\n */\nexport function isPublishSidebarOpened( state ) {\n\treturn state.publishSidebarActive;\n}\n\n/**\n * Returns true if the given panel was programmatically removed, or false otherwise.\n * All panels are not removed by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is removed.\n */\nexport function isEditorPanelRemoved( state, panelName ) {\n\treturn state.removedPanels.includes( panelName );\n}\n\n/**\n * Returns true if the given panel is enabled, or false otherwise. Panels are\n * enabled by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is enabled.\n */\nexport const isEditorPanelEnabled = createRegistrySelector(\n\t( select ) => ( state, panelName ) => {\n\t\tconst inactivePanels = select( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\t'inactivePanels'\n\t\t);\n\t\treturn (\n\t\t\t! isEditorPanelRemoved( state, panelName ) &&\n\t\t\t! inactivePanels?.includes( panelName )\n\t\t);\n\t}\n);\n\n/**\n * Returns true if the given panel is open, or false otherwise. Panels are\n * closed by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is open.\n */\nexport const isEditorPanelOpened = createRegistrySelector(\n\t( select ) => ( state, panelName ) => {\n\t\tconst openPanels = select( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\t'openPanels'\n\t\t);\n\t\treturn !! openPanels?.includes( panelName );\n\t}\n);\n\n/**\n * Returns true if a modal is active, or false otherwise.\n *\n * @deprecated since WP 6.3 use `core/interface` store's selector with the same name instead.\n *\n * @param {Object} state Global application state.\n * @param {string} modalName A string that uniquely identifies the modal.\n *\n * @return {boolean} Whether the modal is active.\n */\nexport const isModalActive = createRegistrySelector(\n\t( select ) => ( state, modalName ) => {\n\t\tdeprecated( `select( 'core/edit-post' ).isModalActive`, {\n\t\t\tsince: '6.3',\n\t\t\talternative: `select( 'core/interface' ).isModalActive`,\n\t\t} );\n\t\treturn !! select( interfaceStore ).isModalActive( modalName );\n\t}\n);\n\n/**\n * Returns whether the given feature is enabled or not.\n *\n * @param {Object} state Global application state.\n * @param {string} feature Feature slug.\n *\n * @return {boolean} Is active.\n */\nexport const isFeatureActive = createRegistrySelector(\n\t( select ) => ( state, feature ) => {\n\t\treturn !! select( preferencesStore ).get( 'core/edit-post', feature );\n\t}\n);\n\n/**\n * Returns true if the plugin item is pinned to the header.\n * When the value is not set it defaults to true.\n *\n * @param {Object} state Global application state.\n * @param {string} pluginName Plugin item name.\n *\n * @return {boolean} Whether the plugin item is pinned.\n */\nexport const isPluginItemPinned = createRegistrySelector(\n\t( select ) => ( state, pluginName ) => {\n\t\treturn select( interfaceStore ).isItemPinned(\n\t\t\t'core/edit-post',\n\t\t\tpluginName\n\t\t);\n\t}\n);\n\n/**\n * Returns an array of active meta box locations.\n *\n * @param {Object} state Post editor state.\n *\n * @return {string[]} Active meta box locations.\n */\nexport const getActiveMetaBoxLocations = createSelector(\n\t( state ) => {\n\t\treturn Object.keys( state.metaBoxes.locations ).filter( ( location ) =>\n\t\t\tisMetaBoxLocationActive( state, location )\n\t\t);\n\t},\n\t( state ) => [ state.metaBoxes.locations ]\n);\n\n/**\n * Returns true if a metabox location is active and visible\n *\n * @param {Object} state Post editor state.\n * @param {string} location Meta box location to test.\n *\n * @return {boolean} Whether the meta box location is active and visible.\n */\nexport function isMetaBoxLocationVisible( state, location ) {\n\treturn (\n\t\tisMetaBoxLocationActive( state, location ) &&\n\t\tgetMetaBoxesPerLocation( state, location )?.some( ( { id } ) => {\n\t\t\treturn isEditorPanelEnabled( state, `meta-box-${ id }` );\n\t\t} )\n\t);\n}\n\n/**\n * Returns true if there is an active meta box in the given location, or false\n * otherwise.\n *\n * @param {Object} state Post editor state.\n * @param {string} location Meta box location to test.\n *\n * @return {boolean} Whether the meta box location is active.\n */\nexport function isMetaBoxLocationActive( state, location ) {\n\tconst metaBoxes = getMetaBoxesPerLocation( state, location );\n\treturn !! metaBoxes && metaBoxes.length !== 0;\n}\n\n/**\n * Returns the list of all the available meta boxes for a given location.\n *\n * @param {Object} state Global application state.\n * @param {string} location Meta box location to test.\n *\n * @return {?Array} List of meta boxes.\n */\nexport function getMetaBoxesPerLocation( state, location ) {\n\treturn state.metaBoxes.locations[ location ];\n}\n\n/**\n * Returns the list of all the available meta boxes.\n *\n * @param {Object} state Global application state.\n *\n * @return {Array} List of meta boxes.\n */\nexport const getAllMetaBoxes = createSelector(\n\t( state ) => {\n\t\treturn Object.values( state.metaBoxes.locations ).flat();\n\t},\n\t( state ) => [ state.metaBoxes.locations ]\n);\n\n/**\n * Returns true if the post is using Meta Boxes\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether there are metaboxes or not.\n */\nexport function hasMetaBoxes( state ) {\n\treturn getActiveMetaBoxLocations( state ).length > 0;\n}\n\n/**\n * Returns true if the Meta Boxes are being saved.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the metaboxes are being saved.\n */\nexport function isSavingMetaBoxes( state ) {\n\treturn state.metaBoxes.isSaving;\n}\n\n/**\n * Returns the current editing canvas device type.\n *\n * @param {Object} state Global application state.\n *\n * @return {string} Device type.\n */\nexport function __experimentalGetPreviewDeviceType( state ) {\n\treturn state.deviceType;\n}\n\n/**\n * Returns true if the inserter is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the inserter is opened.\n */\nexport function isInserterOpened( state ) {\n\treturn !! state.blockInserterPanel;\n}\n\n/**\n * Get the insertion point for the inserter.\n *\n * @param {Object} state Global application state.\n *\n * @return {Object} The root client ID, index to insert at and starting filter value.\n */\nexport function __experimentalGetInsertionPoint( state ) {\n\tif ( typeof state.blockInserterPanel === 'boolean' ) {\n\t\treturn EMPTY_INSERTION_POINT;\n\t}\n\n\treturn state.blockInserterPanel;\n}\n\n/**\n * Returns true if the list view is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the list view is opened.\n */\nexport function isListViewOpened( state ) {\n\treturn state.listViewPanel;\n}\n\n/**\n * Returns true if the template editing mode is enabled.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether we're editing the template.\n */\nexport function isEditingTemplate( state ) {\n\treturn state.isEditingTemplate;\n}\n\n/**\n * Returns true if meta boxes are initialized.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether meta boxes are initialized.\n */\nexport function areMetaBoxesInitialized( state ) {\n\treturn state.metaBoxes.initialized;\n}\n\n/**\n * Retrieves the template of the currently edited post.\n *\n * @return {Object?} Post Template.\n */\nexport const getEditedPostTemplate = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst currentTemplate =\n\t\t\tselect( editorStore ).getEditedPostAttribute( 'template' );\n\t\tif ( currentTemplate ) {\n\t\t\tconst templateWithSameSlug = select( coreStore )\n\t\t\t\t.getEntityRecords( 'postType', 'wp_template', { per_page: -1 } )\n\t\t\t\t?.find( ( template ) => template.slug === currentTemplate );\n\t\t\tif ( ! templateWithSameSlug ) {\n\t\t\t\treturn templateWithSameSlug;\n\t\t\t}\n\t\t\treturn select( coreStore ).getEditedEntityRecord(\n\t\t\t\t'postType',\n\t\t\t\t'wp_template',\n\t\t\t\ttemplateWithSameSlug.id\n\t\t\t);\n\t\t}\n\n\t\tconst post = select( editorStore ).getCurrentPost();\n\t\tif ( post.link ) {\n\t\t\treturn select( coreStore ).__experimentalGetTemplateForLink(\n\t\t\t\tpost.link\n\t\t\t);\n\t\t}\n\n\t\treturn null;\n\t}\n);\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["_rememo","_interopRequireDefault","require","_data","_interface","_preferences","_coreData","_editor","_deprecated","EMPTY_ARRAY","EMPTY_OBJECT","EMPTY_INSERTION_POINT","rootClientId","undefined","insertionIndex","filterValue","getEditorMode","createRegistrySelector","select","_select$get","preferencesStore","get","exports","isEditorSidebarOpened","activeGeneralSidebar","interfaceStore","getActiveComplementaryArea","includes","isPluginSidebarOpened","getActiveGeneralSidebarName","convertPanelsToOldFormat","inactivePanels","openPanels","_ref","panelsWithEnabledState","reduce","accumulatedPanels","panelName","enabled","panels","currentPanelState","opened","getPreferences","deprecated","since","alternative","preferences","accumulatedPrefs","preferenceKey","value","getPreference","state","defaultValue","getHiddenBlockTypes","_select$get2","isPublishSidebarOpened","publishSidebarActive","isEditorPanelRemoved","removedPanels","isEditorPanelEnabled","isEditorPanelOpened","isModalActive","modalName","isFeatureActive","feature","isPluginItemPinned","pluginName","isItemPinned","getActiveMetaBoxLocations","createSelector","Object","keys","metaBoxes","locations","filter","location","isMetaBoxLocationActive","isMetaBoxLocationVisible","getMetaBoxesPerLocation","some","id","length","getAllMetaBoxes","values","flat","hasMetaBoxes","isSavingMetaBoxes","isSaving","__experimentalGetPreviewDeviceType","version","editorStore","getDeviceType","isInserterOpened","blockInserterPanel","__experimentalGetInsertionPoint","isListViewOpened","listViewPanel","isEditingTemplate","getRenderingMode","areMetaBoxesInitialized","initialized","getEditedPostTemplate","currentTemplate","getEditedPostAttribute","templateWithSameSlug","coreStore","getEntityRecords","per_page","find","template","slug","getEditedEntityRecord","post","getCurrentPost","link","__experimentalGetTemplateForLink"],"sources":["@wordpress/edit-post/src/store/selectors.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport createSelector from 'rememo';\n\n/**\n * WordPress dependencies\n */\nimport { createRegistrySelector } from '@wordpress/data';\nimport { store as interfaceStore } from '@wordpress/interface';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { store as editorStore } from '@wordpress/editor';\nimport deprecated from '@wordpress/deprecated';\n\nconst EMPTY_ARRAY = [];\nconst EMPTY_OBJECT = {};\nconst EMPTY_INSERTION_POINT = {\n\trootClientId: undefined,\n\tinsertionIndex: undefined,\n\tfilterValue: undefined,\n};\n\n/**\n * Returns the current editing mode.\n *\n * @param {Object} state Global application state.\n *\n * @return {string} Editing mode.\n */\nexport const getEditorMode = createRegistrySelector(\n\t( select ) => () =>\n\t\tselect( preferencesStore ).get( 'core/edit-post', 'editorMode' ) ??\n\t\t'visual'\n);\n\n/**\n * Returns true if the editor sidebar is opened.\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether the editor sidebar is opened.\n */\nexport const isEditorSidebarOpened = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst activeGeneralSidebar =\n\t\t\tselect( interfaceStore ).getActiveComplementaryArea(\n\t\t\t\t'core/edit-post'\n\t\t\t);\n\t\treturn [ 'edit-post/document', 'edit-post/block' ].includes(\n\t\t\tactiveGeneralSidebar\n\t\t);\n\t}\n);\n\n/**\n * Returns true if the plugin sidebar is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the plugin sidebar is opened.\n */\nexport const isPluginSidebarOpened = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst activeGeneralSidebar =\n\t\t\tselect( interfaceStore ).getActiveComplementaryArea(\n\t\t\t\t'core/edit-post'\n\t\t\t);\n\t\treturn (\n\t\t\t!! activeGeneralSidebar &&\n\t\t\t! [ 'edit-post/document', 'edit-post/block' ].includes(\n\t\t\t\tactiveGeneralSidebar\n\t\t\t)\n\t\t);\n\t}\n);\n\n/**\n * Returns the current active general sidebar name, or null if there is no\n * general sidebar active. The active general sidebar is a unique name to\n * identify either an editor or plugin sidebar.\n *\n * Examples:\n *\n * - `edit-post/document`\n * - `my-plugin/insert-image-sidebar`\n *\n * @param {Object} state Global application state.\n *\n * @return {?string} Active general sidebar name.\n */\nexport const getActiveGeneralSidebarName = createRegistrySelector(\n\t( select ) => () => {\n\t\treturn select( interfaceStore ).getActiveComplementaryArea(\n\t\t\t'core/edit-post'\n\t\t);\n\t}\n);\n\n/**\n * Converts panels from the new preferences store format to the old format\n * that the post editor previously used.\n *\n * The resultant converted data should look like this:\n * {\n * panelName: {\n * enabled: false,\n * opened: true,\n * },\n * anotherPanelName: {\n * opened: true\n * },\n * }\n *\n * @param {string[] | undefined} inactivePanels An array of inactive panel names.\n * @param {string[] | undefined} openPanels An array of open panel names.\n *\n * @return {Object} The converted panel data.\n */\nfunction convertPanelsToOldFormat( inactivePanels, openPanels ) {\n\t// First reduce the inactive panels.\n\tconst panelsWithEnabledState = inactivePanels?.reduce(\n\t\t( accumulatedPanels, panelName ) => ( {\n\t\t\t...accumulatedPanels,\n\t\t\t[ panelName ]: {\n\t\t\t\tenabled: false,\n\t\t\t},\n\t\t} ),\n\t\t{}\n\t);\n\n\t// Then reduce the open panels, passing in the result of the previous\n\t// reduction as the initial value so that both open and inactive\n\t// panel state is combined.\n\tconst panels = openPanels?.reduce( ( accumulatedPanels, panelName ) => {\n\t\tconst currentPanelState = accumulatedPanels?.[ panelName ];\n\t\treturn {\n\t\t\t...accumulatedPanels,\n\t\t\t[ panelName ]: {\n\t\t\t\t...currentPanelState,\n\t\t\t\topened: true,\n\t\t\t},\n\t\t};\n\t}, panelsWithEnabledState ?? {} );\n\n\t// The panels variable will only be set if openPanels wasn't `undefined`.\n\t// If it isn't set just return `panelsWithEnabledState`, and if that isn't\n\t// set return an empty object.\n\treturn panels ?? panelsWithEnabledState ?? EMPTY_OBJECT;\n}\n\n/**\n * Returns the preferences (these preferences are persisted locally).\n *\n * @param {Object} state Global application state.\n *\n * @return {Object} Preferences Object.\n */\nexport const getPreferences = createRegistrySelector( ( select ) => () => {\n\tdeprecated( `select( 'core/edit-post' ).getPreferences`, {\n\t\tsince: '6.0',\n\t\talternative: `select( 'core/preferences' ).get`,\n\t} );\n\n\t// These preferences now exist in the preferences store.\n\t// Fetch them so that they can be merged into the post\n\t// editor preferences.\n\tconst preferences = [\n\t\t'hiddenBlockTypes',\n\t\t'editorMode',\n\t\t'preferredStyleVariations',\n\t].reduce( ( accumulatedPrefs, preferenceKey ) => {\n\t\tconst value = select( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\tpreferenceKey\n\t\t);\n\n\t\treturn {\n\t\t\t...accumulatedPrefs,\n\t\t\t[ preferenceKey ]: value,\n\t\t};\n\t}, {} );\n\n\t// Panels were a preference, but the data structure changed when the state\n\t// was migrated to the preferences store. They need to be converted from\n\t// the new preferences store format to old format to ensure no breaking\n\t// changes for plugins.\n\tconst inactivePanels = select( preferencesStore ).get(\n\t\t'core/edit-post',\n\t\t'inactivePanels'\n\t);\n\tconst openPanels = select( preferencesStore ).get(\n\t\t'core/edit-post',\n\t\t'openPanels'\n\t);\n\tconst panels = convertPanelsToOldFormat( inactivePanels, openPanels );\n\n\treturn {\n\t\t...preferences,\n\t\tpanels,\n\t};\n} );\n\n/**\n *\n * @param {Object} state Global application state.\n * @param {string} preferenceKey Preference Key.\n * @param {*} defaultValue Default Value.\n *\n * @return {*} Preference Value.\n */\nexport function getPreference( state, preferenceKey, defaultValue ) {\n\tdeprecated( `select( 'core/edit-post' ).getPreference`, {\n\t\tsince: '6.0',\n\t\talternative: `select( 'core/preferences' ).get`,\n\t} );\n\n\t// Avoid using the `getPreferences` registry selector where possible.\n\tconst preferences = getPreferences( state );\n\tconst value = preferences[ preferenceKey ];\n\treturn value === undefined ? defaultValue : value;\n}\n\n/**\n * Returns an array of blocks that are hidden.\n *\n * @return {Array} A list of the hidden block types\n */\nexport const getHiddenBlockTypes = createRegistrySelector( ( select ) => () => {\n\treturn (\n\t\tselect( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\t'hiddenBlockTypes'\n\t\t) ?? EMPTY_ARRAY\n\t);\n} );\n\n/**\n * Returns true if the publish sidebar is opened.\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether the publish sidebar is open.\n */\nexport function isPublishSidebarOpened( state ) {\n\treturn state.publishSidebarActive;\n}\n\n/**\n * Returns true if the given panel was programmatically removed, or false otherwise.\n * All panels are not removed by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is removed.\n */\nexport function isEditorPanelRemoved( state, panelName ) {\n\treturn state.removedPanels.includes( panelName );\n}\n\n/**\n * Returns true if the given panel is enabled, or false otherwise. Panels are\n * enabled by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is enabled.\n */\nexport const isEditorPanelEnabled = createRegistrySelector(\n\t( select ) => ( state, panelName ) => {\n\t\tconst inactivePanels = select( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\t'inactivePanels'\n\t\t);\n\t\treturn (\n\t\t\t! isEditorPanelRemoved( state, panelName ) &&\n\t\t\t! inactivePanels?.includes( panelName )\n\t\t);\n\t}\n);\n\n/**\n * Returns true if the given panel is open, or false otherwise. Panels are\n * closed by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is open.\n */\nexport const isEditorPanelOpened = createRegistrySelector(\n\t( select ) => ( state, panelName ) => {\n\t\tconst openPanels = select( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\t'openPanels'\n\t\t);\n\t\treturn !! openPanels?.includes( panelName );\n\t}\n);\n\n/**\n * Returns true if a modal is active, or false otherwise.\n *\n * @deprecated since WP 6.3 use `core/interface` store's selector with the same name instead.\n *\n * @param {Object} state Global application state.\n * @param {string} modalName A string that uniquely identifies the modal.\n *\n * @return {boolean} Whether the modal is active.\n */\nexport const isModalActive = createRegistrySelector(\n\t( select ) => ( state, modalName ) => {\n\t\tdeprecated( `select( 'core/edit-post' ).isModalActive`, {\n\t\t\tsince: '6.3',\n\t\t\talternative: `select( 'core/interface' ).isModalActive`,\n\t\t} );\n\t\treturn !! select( interfaceStore ).isModalActive( modalName );\n\t}\n);\n\n/**\n * Returns whether the given feature is enabled or not.\n *\n * @param {Object} state Global application state.\n * @param {string} feature Feature slug.\n *\n * @return {boolean} Is active.\n */\nexport const isFeatureActive = createRegistrySelector(\n\t( select ) => ( state, feature ) => {\n\t\treturn !! select( preferencesStore ).get( 'core/edit-post', feature );\n\t}\n);\n\n/**\n * Returns true if the plugin item is pinned to the header.\n * When the value is not set it defaults to true.\n *\n * @param {Object} state Global application state.\n * @param {string} pluginName Plugin item name.\n *\n * @return {boolean} Whether the plugin item is pinned.\n */\nexport const isPluginItemPinned = createRegistrySelector(\n\t( select ) => ( state, pluginName ) => {\n\t\treturn select( interfaceStore ).isItemPinned(\n\t\t\t'core/edit-post',\n\t\t\tpluginName\n\t\t);\n\t}\n);\n\n/**\n * Returns an array of active meta box locations.\n *\n * @param {Object} state Post editor state.\n *\n * @return {string[]} Active meta box locations.\n */\nexport const getActiveMetaBoxLocations = createSelector(\n\t( state ) => {\n\t\treturn Object.keys( state.metaBoxes.locations ).filter( ( location ) =>\n\t\t\tisMetaBoxLocationActive( state, location )\n\t\t);\n\t},\n\t( state ) => [ state.metaBoxes.locations ]\n);\n\n/**\n * Returns true if a metabox location is active and visible\n *\n * @param {Object} state Post editor state.\n * @param {string} location Meta box location to test.\n *\n * @return {boolean} Whether the meta box location is active and visible.\n */\nexport function isMetaBoxLocationVisible( state, location ) {\n\treturn (\n\t\tisMetaBoxLocationActive( state, location ) &&\n\t\tgetMetaBoxesPerLocation( state, location )?.some( ( { id } ) => {\n\t\t\treturn isEditorPanelEnabled( state, `meta-box-${ id }` );\n\t\t} )\n\t);\n}\n\n/**\n * Returns true if there is an active meta box in the given location, or false\n * otherwise.\n *\n * @param {Object} state Post editor state.\n * @param {string} location Meta box location to test.\n *\n * @return {boolean} Whether the meta box location is active.\n */\nexport function isMetaBoxLocationActive( state, location ) {\n\tconst metaBoxes = getMetaBoxesPerLocation( state, location );\n\treturn !! metaBoxes && metaBoxes.length !== 0;\n}\n\n/**\n * Returns the list of all the available meta boxes for a given location.\n *\n * @param {Object} state Global application state.\n * @param {string} location Meta box location to test.\n *\n * @return {?Array} List of meta boxes.\n */\nexport function getMetaBoxesPerLocation( state, location ) {\n\treturn state.metaBoxes.locations[ location ];\n}\n\n/**\n * Returns the list of all the available meta boxes.\n *\n * @param {Object} state Global application state.\n *\n * @return {Array} List of meta boxes.\n */\nexport const getAllMetaBoxes = createSelector(\n\t( state ) => {\n\t\treturn Object.values( state.metaBoxes.locations ).flat();\n\t},\n\t( state ) => [ state.metaBoxes.locations ]\n);\n\n/**\n * Returns true if the post is using Meta Boxes\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether there are metaboxes or not.\n */\nexport function hasMetaBoxes( state ) {\n\treturn getActiveMetaBoxLocations( state ).length > 0;\n}\n\n/**\n * Returns true if the Meta Boxes are being saved.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the metaboxes are being saved.\n */\nexport function isSavingMetaBoxes( state ) {\n\treturn state.metaBoxes.isSaving;\n}\n\n/**\n * Returns the current editing canvas device type.\n *\n * @deprecated\n *\n * @param {Object} state Global application state.\n *\n * @return {string} Device type.\n */\nexport const __experimentalGetPreviewDeviceType = createRegistrySelector(\n\t( select ) => () => {\n\t\tdeprecated(\n\t\t\t`select( 'core/edit-site' ).__experimentalGetPreviewDeviceType`,\n\t\t\t{\n\t\t\t\tsince: '6.5',\n\t\t\t\tversion: '6.7',\n\t\t\t\talternative: `select( 'core/editor' ).getDeviceType`,\n\t\t\t}\n\t\t);\n\t\treturn select( editorStore ).getDeviceType();\n\t}\n);\n\n/**\n * Returns true if the inserter is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the inserter is opened.\n */\nexport function isInserterOpened( state ) {\n\treturn !! state.blockInserterPanel;\n}\n\n/**\n * Get the insertion point for the inserter.\n *\n * @param {Object} state Global application state.\n *\n * @return {Object} The root client ID, index to insert at and starting filter value.\n */\nexport function __experimentalGetInsertionPoint( state ) {\n\tif ( typeof state.blockInserterPanel === 'boolean' ) {\n\t\treturn EMPTY_INSERTION_POINT;\n\t}\n\n\treturn state.blockInserterPanel;\n}\n\n/**\n * Returns true if the list view is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the list view is opened.\n */\nexport function isListViewOpened( state ) {\n\treturn state.listViewPanel;\n}\n\n/**\n * Returns true if the template editing mode is enabled.\n *\n * @deprecated\n */\nexport const isEditingTemplate = createRegistrySelector( ( select ) => () => {\n\tdeprecated( `select( 'core/edit-post' ).isEditingTemplate`, {\n\t\tsince: '6.5',\n\t\talternative: `select( 'core/editor' ).getRenderingMode`,\n\t} );\n\treturn select( editorStore ).getRenderingMode() !== 'post-only';\n} );\n\n/**\n * Returns true if meta boxes are initialized.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether meta boxes are initialized.\n */\nexport function areMetaBoxesInitialized( state ) {\n\treturn state.metaBoxes.initialized;\n}\n\n/**\n * Retrieves the template of the currently edited post.\n *\n * @return {Object?} Post Template.\n */\nexport const getEditedPostTemplate = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst currentTemplate =\n\t\t\tselect( editorStore ).getEditedPostAttribute( 'template' );\n\t\tif ( currentTemplate ) {\n\t\t\tconst templateWithSameSlug = select( coreStore )\n\t\t\t\t.getEntityRecords( 'postType', 'wp_template', { per_page: -1 } )\n\t\t\t\t?.find( ( template ) => template.slug === currentTemplate );\n\t\t\tif ( ! templateWithSameSlug ) {\n\t\t\t\treturn templateWithSameSlug;\n\t\t\t}\n\t\t\treturn select( coreStore ).getEditedEntityRecord(\n\t\t\t\t'postType',\n\t\t\t\t'wp_template',\n\t\t\t\ttemplateWithSameSlug.id\n\t\t\t);\n\t\t}\n\n\t\tconst post = select( editorStore ).getCurrentPost();\n\t\tif ( post.link ) {\n\t\t\treturn select( coreStore ).__experimentalGetTemplateForLink(\n\t\t\t\tpost.link\n\t\t\t);\n\t\t}\n\n\t\treturn null;\n\t}\n);\n"],"mappings":"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"}
|
|
@@ -92,7 +92,8 @@ function HeaderToolbar({
|
|
|
92
92
|
showTooltip: !showIconLabels,
|
|
93
93
|
variant: showIconLabels ? 'tertiary' : undefined,
|
|
94
94
|
"aria-expanded": isListViewOpen,
|
|
95
|
-
ref: setListViewToggleElement
|
|
95
|
+
ref: setListViewToggleElement,
|
|
96
|
+
size: "compact"
|
|
96
97
|
}));
|
|
97
98
|
const toggleInserter = useCallback(() => {
|
|
98
99
|
if (isInserterOpened) {
|
|
@@ -133,15 +134,18 @@ function HeaderToolbar({
|
|
|
133
134
|
as: ToolSelector,
|
|
134
135
|
showTooltip: !showIconLabels,
|
|
135
136
|
variant: showIconLabels ? 'tertiary' : undefined,
|
|
136
|
-
disabled: isTextModeEnabled
|
|
137
|
+
disabled: isTextModeEnabled,
|
|
138
|
+
size: "compact"
|
|
137
139
|
}), createElement(ToolbarItem, {
|
|
138
140
|
as: EditorHistoryUndo,
|
|
139
141
|
showTooltip: !showIconLabels,
|
|
140
|
-
variant: showIconLabels ? 'tertiary' : undefined
|
|
142
|
+
variant: showIconLabels ? 'tertiary' : undefined,
|
|
143
|
+
size: "compact"
|
|
141
144
|
}), createElement(ToolbarItem, {
|
|
142
145
|
as: EditorHistoryRedo,
|
|
143
146
|
showTooltip: !showIconLabels,
|
|
144
|
-
variant: showIconLabels ? 'tertiary' : undefined
|
|
147
|
+
variant: showIconLabels ? 'tertiary' : undefined,
|
|
148
|
+
size: "compact"
|
|
145
149
|
}), overflowItems)));
|
|
146
150
|
}
|
|
147
151
|
export default HeaderToolbar;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["useViewportMatch","useSelect","useDispatch","__","_x","NavigableToolbar","ToolSelector","store","blockEditorStore","privateApis","blockEditorPrivateApis","EditorHistoryRedo","EditorHistoryUndo","editorStore","Button","ToolbarItem","listView","plus","useRef","useCallback","keyboardShortcutsStore","editPostStore","unlock","useShouldContextualToolbarShow","preventDefault","event","HeaderToolbar","hasFixedToolbar","setListViewToggleElement","inserterButton","setIsInserterOpened","setIsListViewOpened","isInserterEnabled","isInserterOpened","isTextModeEnabled","showIconLabels","isListViewOpen","listViewShortcut","select","hasInserterItems","getBlockRootClientId","getBlockSelectionEnd","getEditorSettings","getEditorMode","isFeatureActive","isListViewOpened","getShortcutRepresentation","richEditingEnabled","isLargeViewport","isWideViewport","shouldShowContextualToolbar","canFocusHiddenToolbar","fixedToolbarCanBeFocused","blockToolbarCanBeFocused","toolbarAriaLabel","toggleListView","overflowItems","createElement","Fragment","as","className","icon","disabled","isPressed","label","onClick","shortcut","showTooltip","variant","undefined","ref","toggleInserter","current","focus","longLabel","shortLabel","shouldUseKeyboardFocusShortcut","onMouseDown"],"sources":["@wordpress/edit-post/src/components/header/header-toolbar/index.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { useViewportMatch } from '@wordpress/compose';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport { __, _x } from '@wordpress/i18n';\nimport {\n\tNavigableToolbar,\n\tToolSelector,\n\tstore as blockEditorStore,\n\tprivateApis as blockEditorPrivateApis,\n} from '@wordpress/block-editor';\nimport {\n\tEditorHistoryRedo,\n\tEditorHistoryUndo,\n\tstore as editorStore,\n} from '@wordpress/editor';\nimport { Button, ToolbarItem } from '@wordpress/components';\nimport { listView, plus } from '@wordpress/icons';\nimport { useRef, useCallback } from '@wordpress/element';\nimport { store as keyboardShortcutsStore } from '@wordpress/keyboard-shortcuts';\n\n/**\n * Internal dependencies\n */\nimport { store as editPostStore } from '../../../store';\nimport { unlock } from '../../../lock-unlock';\n\nconst { useShouldContextualToolbarShow } = unlock( blockEditorPrivateApis );\n\nconst preventDefault = ( event ) => {\n\tevent.preventDefault();\n};\n\nfunction HeaderToolbar( { hasFixedToolbar, setListViewToggleElement } ) {\n\tconst inserterButton = useRef();\n\tconst { setIsInserterOpened, setIsListViewOpened } =\n\t\tuseDispatch( editPostStore );\n\tconst {\n\t\tisInserterEnabled,\n\t\tisInserterOpened,\n\t\tisTextModeEnabled,\n\t\tshowIconLabels,\n\t\tisListViewOpen,\n\t\tlistViewShortcut,\n\t} = useSelect( ( select ) => {\n\t\tconst { hasInserterItems, getBlockRootClientId, getBlockSelectionEnd } =\n\t\t\tselect( blockEditorStore );\n\t\tconst { getEditorSettings } = select( editorStore );\n\t\tconst { getEditorMode, isFeatureActive, isListViewOpened } =\n\t\t\tselect( editPostStore );\n\t\tconst { getShortcutRepresentation } = select( keyboardShortcutsStore );\n\n\t\treturn {\n\t\t\t// This setting (richEditingEnabled) should not live in the block editor's setting.\n\t\t\tisInserterEnabled:\n\t\t\t\tgetEditorMode() === 'visual' &&\n\t\t\t\tgetEditorSettings().richEditingEnabled &&\n\t\t\t\thasInserterItems(\n\t\t\t\t\tgetBlockRootClientId( getBlockSelectionEnd() )\n\t\t\t\t),\n\t\t\tisInserterOpened: select( editPostStore ).isInserterOpened(),\n\t\t\tisTextModeEnabled: getEditorMode() === 'text',\n\t\t\tshowIconLabels: isFeatureActive( 'showIconLabels' ),\n\t\t\tisListViewOpen: isListViewOpened(),\n\t\t\tlistViewShortcut: getShortcutRepresentation(\n\t\t\t\t'core/edit-post/toggle-list-view'\n\t\t\t),\n\t\t};\n\t}, [] );\n\n\tconst isLargeViewport = useViewportMatch( 'medium' );\n\tconst isWideViewport = useViewportMatch( 'wide' );\n\tconst {\n\t\tshouldShowContextualToolbar,\n\t\tcanFocusHiddenToolbar,\n\t\tfixedToolbarCanBeFocused,\n\t} = useShouldContextualToolbarShow();\n\t// If there's a block toolbar to be focused, disable the focus shortcut for the document toolbar.\n\t// There's a fixed block toolbar when the fixed toolbar option is enabled or when the browser width is less than the large viewport.\n\tconst blockToolbarCanBeFocused =\n\t\tshouldShowContextualToolbar ||\n\t\tcanFocusHiddenToolbar ||\n\t\tfixedToolbarCanBeFocused;\n\t/* translators: accessibility text for the editor toolbar */\n\tconst toolbarAriaLabel = __( 'Document tools' );\n\n\tconst toggleListView = useCallback(\n\t\t() => setIsListViewOpened( ! isListViewOpen ),\n\t\t[ setIsListViewOpened, isListViewOpen ]\n\t);\n\tconst overflowItems = (\n\t\t<>\n\t\t\t<ToolbarItem\n\t\t\t\tas={ Button }\n\t\t\t\tclassName=\"edit-post-header-toolbar__document-overview-toggle\"\n\t\t\t\ticon={ listView }\n\t\t\t\tdisabled={ isTextModeEnabled }\n\t\t\t\tisPressed={ isListViewOpen }\n\t\t\t\t/* translators: button label text should, if possible, be under 16 characters. */\n\t\t\t\tlabel={ __( 'Document Overview' ) }\n\t\t\t\tonClick={ toggleListView }\n\t\t\t\tshortcut={ listViewShortcut }\n\t\t\t\tshowTooltip={ ! showIconLabels }\n\t\t\t\tvariant={ showIconLabels ? 'tertiary' : undefined }\n\t\t\t\taria-expanded={ isListViewOpen }\n\t\t\t\tref={ setListViewToggleElement }\n\t\t\t/>\n\t\t</>\n\t);\n\tconst toggleInserter = useCallback( () => {\n\t\tif ( isInserterOpened ) {\n\t\t\t// Focusing the inserter button should close the inserter popover.\n\t\t\t// However, there are some cases it won't close when the focus is lost.\n\t\t\t// See https://github.com/WordPress/gutenberg/issues/43090 for more details.\n\t\t\tinserterButton.current.focus();\n\t\t\tsetIsInserterOpened( false );\n\t\t} else {\n\t\t\tsetIsInserterOpened( true );\n\t\t}\n\t}, [ isInserterOpened, setIsInserterOpened ] );\n\n\t/* translators: button label text should, if possible, be under 16 characters. */\n\tconst longLabel = _x(\n\t\t'Toggle block inserter',\n\t\t'Generic label for block inserter button'\n\t);\n\tconst shortLabel = ! isInserterOpened ? __( 'Add' ) : __( 'Close' );\n\n\treturn (\n\t\t<NavigableToolbar\n\t\t\tclassName=\"edit-post-header-toolbar\"\n\t\t\taria-label={ toolbarAriaLabel }\n\t\t\tshouldUseKeyboardFocusShortcut={ ! blockToolbarCanBeFocused }\n\t\t\tvariant=\"unstyled\"\n\t\t>\n\t\t\t<div className=\"edit-post-header-toolbar__left\">\n\t\t\t\t<ToolbarItem\n\t\t\t\t\tref={ inserterButton }\n\t\t\t\t\tas={ Button }\n\t\t\t\t\tclassName=\"edit-post-header-toolbar__inserter-toggle\"\n\t\t\t\t\tvariant=\"primary\"\n\t\t\t\t\tisPressed={ isInserterOpened }\n\t\t\t\t\tonMouseDown={ preventDefault }\n\t\t\t\t\tonClick={ toggleInserter }\n\t\t\t\t\tdisabled={ ! isInserterEnabled }\n\t\t\t\t\ticon={ plus }\n\t\t\t\t\tlabel={ showIconLabels ? shortLabel : longLabel }\n\t\t\t\t\tshowTooltip={ ! showIconLabels }\n\t\t\t\t\taria-expanded={ isInserterOpened }\n\t\t\t\t/>\n\t\t\t\t{ ( isWideViewport || ! showIconLabels ) && (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{ isLargeViewport && ! hasFixedToolbar && (\n\t\t\t\t\t\t\t<ToolbarItem\n\t\t\t\t\t\t\t\tas={ ToolSelector }\n\t\t\t\t\t\t\t\tshowTooltip={ ! showIconLabels }\n\t\t\t\t\t\t\t\tvariant={\n\t\t\t\t\t\t\t\t\tshowIconLabels ? 'tertiary' : undefined\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tdisabled={ isTextModeEnabled }\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t) }\n\t\t\t\t\t\t<ToolbarItem\n\t\t\t\t\t\t\tas={ EditorHistoryUndo }\n\t\t\t\t\t\t\tshowTooltip={ ! showIconLabels }\n\t\t\t\t\t\t\tvariant={ showIconLabels ? 'tertiary' : undefined }\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t<ToolbarItem\n\t\t\t\t\t\t\tas={ EditorHistoryRedo }\n\t\t\t\t\t\t\tshowTooltip={ ! showIconLabels }\n\t\t\t\t\t\t\tvariant={ showIconLabels ? 'tertiary' : undefined }\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t{ overflowItems }\n\t\t\t\t\t</>\n\t\t\t\t) }\n\t\t\t</div>\n\t\t</NavigableToolbar>\n\t);\n}\n\nexport default HeaderToolbar;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["useViewportMatch","useSelect","useDispatch","__","_x","NavigableToolbar","ToolSelector","store","blockEditorStore","privateApis","blockEditorPrivateApis","EditorHistoryRedo","EditorHistoryUndo","editorStore","Button","ToolbarItem","listView","plus","useRef","useCallback","keyboardShortcutsStore","editPostStore","unlock","useShouldContextualToolbarShow","preventDefault","event","HeaderToolbar","hasFixedToolbar","setListViewToggleElement","inserterButton","setIsInserterOpened","setIsListViewOpened","isInserterEnabled","isInserterOpened","isTextModeEnabled","showIconLabels","isListViewOpen","listViewShortcut","select","hasInserterItems","getBlockRootClientId","getBlockSelectionEnd","getEditorSettings","getEditorMode","isFeatureActive","isListViewOpened","getShortcutRepresentation","richEditingEnabled","isLargeViewport","isWideViewport","shouldShowContextualToolbar","canFocusHiddenToolbar","fixedToolbarCanBeFocused","blockToolbarCanBeFocused","toolbarAriaLabel","toggleListView","overflowItems","createElement","Fragment","as","className","icon","disabled","isPressed","label","onClick","shortcut","showTooltip","variant","undefined","ref","size","toggleInserter","current","focus","longLabel","shortLabel","shouldUseKeyboardFocusShortcut","onMouseDown"],"sources":["@wordpress/edit-post/src/components/header/header-toolbar/index.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { useViewportMatch } from '@wordpress/compose';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport { __, _x } from '@wordpress/i18n';\nimport {\n\tNavigableToolbar,\n\tToolSelector,\n\tstore as blockEditorStore,\n\tprivateApis as blockEditorPrivateApis,\n} from '@wordpress/block-editor';\nimport {\n\tEditorHistoryRedo,\n\tEditorHistoryUndo,\n\tstore as editorStore,\n} from '@wordpress/editor';\nimport { Button, ToolbarItem } from '@wordpress/components';\nimport { listView, plus } from '@wordpress/icons';\nimport { useRef, useCallback } from '@wordpress/element';\nimport { store as keyboardShortcutsStore } from '@wordpress/keyboard-shortcuts';\n\n/**\n * Internal dependencies\n */\nimport { store as editPostStore } from '../../../store';\nimport { unlock } from '../../../lock-unlock';\n\nconst { useShouldContextualToolbarShow } = unlock( blockEditorPrivateApis );\n\nconst preventDefault = ( event ) => {\n\tevent.preventDefault();\n};\n\nfunction HeaderToolbar( { hasFixedToolbar, setListViewToggleElement } ) {\n\tconst inserterButton = useRef();\n\tconst { setIsInserterOpened, setIsListViewOpened } =\n\t\tuseDispatch( editPostStore );\n\tconst {\n\t\tisInserterEnabled,\n\t\tisInserterOpened,\n\t\tisTextModeEnabled,\n\t\tshowIconLabels,\n\t\tisListViewOpen,\n\t\tlistViewShortcut,\n\t} = useSelect( ( select ) => {\n\t\tconst { hasInserterItems, getBlockRootClientId, getBlockSelectionEnd } =\n\t\t\tselect( blockEditorStore );\n\t\tconst { getEditorSettings } = select( editorStore );\n\t\tconst { getEditorMode, isFeatureActive, isListViewOpened } =\n\t\t\tselect( editPostStore );\n\t\tconst { getShortcutRepresentation } = select( keyboardShortcutsStore );\n\n\t\treturn {\n\t\t\t// This setting (richEditingEnabled) should not live in the block editor's setting.\n\t\t\tisInserterEnabled:\n\t\t\t\tgetEditorMode() === 'visual' &&\n\t\t\t\tgetEditorSettings().richEditingEnabled &&\n\t\t\t\thasInserterItems(\n\t\t\t\t\tgetBlockRootClientId( getBlockSelectionEnd() )\n\t\t\t\t),\n\t\t\tisInserterOpened: select( editPostStore ).isInserterOpened(),\n\t\t\tisTextModeEnabled: getEditorMode() === 'text',\n\t\t\tshowIconLabels: isFeatureActive( 'showIconLabels' ),\n\t\t\tisListViewOpen: isListViewOpened(),\n\t\t\tlistViewShortcut: getShortcutRepresentation(\n\t\t\t\t'core/edit-post/toggle-list-view'\n\t\t\t),\n\t\t};\n\t}, [] );\n\n\tconst isLargeViewport = useViewportMatch( 'medium' );\n\tconst isWideViewport = useViewportMatch( 'wide' );\n\tconst {\n\t\tshouldShowContextualToolbar,\n\t\tcanFocusHiddenToolbar,\n\t\tfixedToolbarCanBeFocused,\n\t} = useShouldContextualToolbarShow();\n\t// If there's a block toolbar to be focused, disable the focus shortcut for the document toolbar.\n\t// There's a fixed block toolbar when the fixed toolbar option is enabled or when the browser width is less than the large viewport.\n\tconst blockToolbarCanBeFocused =\n\t\tshouldShowContextualToolbar ||\n\t\tcanFocusHiddenToolbar ||\n\t\tfixedToolbarCanBeFocused;\n\t/* translators: accessibility text for the editor toolbar */\n\tconst toolbarAriaLabel = __( 'Document tools' );\n\n\tconst toggleListView = useCallback(\n\t\t() => setIsListViewOpened( ! isListViewOpen ),\n\t\t[ setIsListViewOpened, isListViewOpen ]\n\t);\n\tconst overflowItems = (\n\t\t<>\n\t\t\t<ToolbarItem\n\t\t\t\tas={ Button }\n\t\t\t\tclassName=\"edit-post-header-toolbar__document-overview-toggle\"\n\t\t\t\ticon={ listView }\n\t\t\t\tdisabled={ isTextModeEnabled }\n\t\t\t\tisPressed={ isListViewOpen }\n\t\t\t\t/* translators: button label text should, if possible, be under 16 characters. */\n\t\t\t\tlabel={ __( 'Document Overview' ) }\n\t\t\t\tonClick={ toggleListView }\n\t\t\t\tshortcut={ listViewShortcut }\n\t\t\t\tshowTooltip={ ! showIconLabels }\n\t\t\t\tvariant={ showIconLabels ? 'tertiary' : undefined }\n\t\t\t\taria-expanded={ isListViewOpen }\n\t\t\t\tref={ setListViewToggleElement }\n\t\t\t\tsize=\"compact\"\n\t\t\t/>\n\t\t</>\n\t);\n\tconst toggleInserter = useCallback( () => {\n\t\tif ( isInserterOpened ) {\n\t\t\t// Focusing the inserter button should close the inserter popover.\n\t\t\t// However, there are some cases it won't close when the focus is lost.\n\t\t\t// See https://github.com/WordPress/gutenberg/issues/43090 for more details.\n\t\t\tinserterButton.current.focus();\n\t\t\tsetIsInserterOpened( false );\n\t\t} else {\n\t\t\tsetIsInserterOpened( true );\n\t\t}\n\t}, [ isInserterOpened, setIsInserterOpened ] );\n\n\t/* translators: button label text should, if possible, be under 16 characters. */\n\tconst longLabel = _x(\n\t\t'Toggle block inserter',\n\t\t'Generic label for block inserter button'\n\t);\n\tconst shortLabel = ! isInserterOpened ? __( 'Add' ) : __( 'Close' );\n\n\treturn (\n\t\t<NavigableToolbar\n\t\t\tclassName=\"edit-post-header-toolbar\"\n\t\t\taria-label={ toolbarAriaLabel }\n\t\t\tshouldUseKeyboardFocusShortcut={ ! blockToolbarCanBeFocused }\n\t\t\tvariant=\"unstyled\"\n\t\t>\n\t\t\t<div className=\"edit-post-header-toolbar__left\">\n\t\t\t\t<ToolbarItem\n\t\t\t\t\tref={ inserterButton }\n\t\t\t\t\tas={ Button }\n\t\t\t\t\tclassName=\"edit-post-header-toolbar__inserter-toggle\"\n\t\t\t\t\tvariant=\"primary\"\n\t\t\t\t\tisPressed={ isInserterOpened }\n\t\t\t\t\tonMouseDown={ preventDefault }\n\t\t\t\t\tonClick={ toggleInserter }\n\t\t\t\t\tdisabled={ ! isInserterEnabled }\n\t\t\t\t\ticon={ plus }\n\t\t\t\t\tlabel={ showIconLabels ? shortLabel : longLabel }\n\t\t\t\t\tshowTooltip={ ! showIconLabels }\n\t\t\t\t\taria-expanded={ isInserterOpened }\n\t\t\t\t/>\n\t\t\t\t{ ( isWideViewport || ! showIconLabels ) && (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{ isLargeViewport && ! hasFixedToolbar && (\n\t\t\t\t\t\t\t<ToolbarItem\n\t\t\t\t\t\t\t\tas={ ToolSelector }\n\t\t\t\t\t\t\t\tshowTooltip={ ! showIconLabels }\n\t\t\t\t\t\t\t\tvariant={\n\t\t\t\t\t\t\t\t\tshowIconLabels ? 'tertiary' : undefined\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tdisabled={ isTextModeEnabled }\n\t\t\t\t\t\t\t\tsize=\"compact\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t) }\n\t\t\t\t\t\t<ToolbarItem\n\t\t\t\t\t\t\tas={ EditorHistoryUndo }\n\t\t\t\t\t\t\tshowTooltip={ ! showIconLabels }\n\t\t\t\t\t\t\tvariant={ showIconLabels ? 'tertiary' : undefined }\n\t\t\t\t\t\t\tsize=\"compact\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t<ToolbarItem\n\t\t\t\t\t\t\tas={ EditorHistoryRedo }\n\t\t\t\t\t\t\tshowTooltip={ ! showIconLabels }\n\t\t\t\t\t\t\tvariant={ showIconLabels ? 'tertiary' : undefined }\n\t\t\t\t\t\t\tsize=\"compact\"\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t{ overflowItems }\n\t\t\t\t\t</>\n\t\t\t\t) }\n\t\t\t</div>\n\t\t</NavigableToolbar>\n\t);\n}\n\nexport default HeaderToolbar;\n"],"mappings":"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"}
|