@wordpress/edit-post 8.0.3 → 8.0.4

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.
@@ -19,6 +19,7 @@ var _preferences = require("@wordpress/preferences");
19
19
  var _editor = require("@wordpress/editor");
20
20
  var _deprecated = _interopRequireDefault(require("@wordpress/deprecated"));
21
21
  var _hooks = require("@wordpress/hooks");
22
+ var _coreData = require("@wordpress/core-data");
22
23
  var _metaBoxes = require("../utils/meta-boxes");
23
24
  var _lockUnlock = require("../lock-unlock");
24
25
  /**
@@ -312,13 +313,19 @@ const requestMetaBoxUpdates = () => async ({
312
313
  window.tinyMCE.triggerSave();
313
314
  }
314
315
 
316
+ // We gather the base form data.
317
+ const baseFormData = new window.FormData(document.querySelector('.metabox-base-form'));
318
+ const postId = baseFormData.get('post_ID');
319
+ const postType = baseFormData.get('post_type');
320
+
315
321
  // Additional data needed for backward compatibility.
316
322
  // If we do not provide this data, the post will be overridden with the default values.
317
- const post = registry.select(_editor.store).getCurrentPost();
323
+ // We cannot rely on getCurrentPost because right now on the editor we may be editing a pattern or a template.
324
+ // We need to retrieve the post that the base form data is referring to.
325
+ const post = registry.select(_coreData.store).getEditedEntityRecord('postType', postType, postId);
318
326
  const additionalData = [post.comment_status ? ['comment_status', post.comment_status] : false, post.ping_status ? ['ping_status', post.ping_status] : false, post.sticky ? ['sticky', post.sticky] : false, post.author ? ['post_author', post.author] : false].filter(Boolean);
319
327
 
320
- // We gather all the metaboxes locations data and the base form data.
321
- const baseFormData = new window.FormData(document.querySelector('.metabox-base-form'));
328
+ // We gather all the metaboxes locations.
322
329
  const activeMetaBoxLocations = select.getActiveMetaBoxLocations();
323
330
  const formDataToMerge = [baseFormData, ...activeMetaBoxLocations.map(location => new window.FormData((0, _metaBoxes.getMetaBoxContainer)(location)))];
324
331
 
@@ -1 +1 @@
1
- {"version":3,"names":["_apiFetch","_interopRequireDefault","require","_preferences","_editor","_deprecated","_hooks","_metaBoxes","_lockUnlock","interfaceStore","unlock","editorPrivateApis","openGeneralSidebar","name","registry","dispatch","enableComplementaryArea","exports","closeGeneralSidebar","disableComplementaryArea","openModal","deprecated","since","alternative","closeModal","openPublishSidebar","editorStore","closePublishSidebar","togglePublishSidebar","toggleEditorPanelEnabled","panelName","toggleEditorPanelOpened","removeEditorPanel","toggleFeature","feature","preferencesStore","toggle","switchEditorMode","mode","togglePinnedPluginItem","pluginName","isPinned","select","isItemPinned","updatePreferredStyleVariations","hint","type","showBlockTypes","blockNames","hideBlockTypes","setAvailableMetaBoxesPerLocation","metaBoxesPerLocation","requestMetaBoxUpdates","window","tinyMCE","triggerSave","post","getCurrentPost","additionalData","comment_status","ping_status","sticky","author","filter","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","setDeviceType","setIsInserterOpened","setIsListViewOpened","isOpen","setIsEditingTemplate","__unstableCreateTemplate","metaBoxesInitialized","initializeMetaBoxes","isEditorReady","__unstableIsEditorReady","postType","getCurrentPostType","postboxes","page","add_postbox_toggles","addFilter","previous","options","then","isAutosave","hasMetaBoxes","toggleDistractionFree"],"sources":["@wordpress/edit-post/src/store/actions.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport apiFetch from '@wordpress/api-fetch';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport {\n\tstore as editorStore,\n\tprivateApis as editorPrivateApis,\n} 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 { unlock } from '../lock-unlock';\n\nconst { interfaceStore } = unlock( editorPrivateApis );\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( { registry } ) => {\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t.enableComplementaryArea( 'core', 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.dispatch( interfaceStore ).disableComplementaryArea( 'core' );\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 * @deprecated\n *\n * @return {Object} Action object\n */\nexport const openPublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).openPublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').openPublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).openPublishSidebar();\n\t};\n\n/**\n * Returns an action object used in signalling that the user closed the\n * publish sidebar.\n * @deprecated\n *\n * @return {Object} Action object.\n */\nexport const closePublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).closePublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').closePublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).closePublishSidebar();\n\t};\n\n/**\n * Returns an action object used in signalling that the user toggles the publish sidebar.\n * @deprecated\n *\n * @return {Object} Action object\n */\nexport const togglePublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).togglePublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').togglePublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).togglePublishSidebar();\n\t};\n\n/**\n * Returns an action object used to enable or disable a panel in the editor.\n *\n * @deprecated\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\tdeprecated( \"dispatch( 'core/edit-post' ).toggleEditorPanelEnabled\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').toggleEditorPanelEnabled\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleEditorPanelEnabled( panelName );\n\t};\n\n/**\n * Opens a closed panel and closes an open panel.\n *\n * @deprecated\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\tdeprecated( \"dispatch( 'core/edit-post' ).toggleEditorPanelOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').toggleEditorPanelOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleEditorPanelOpened( panelName );\n\t};\n\n/**\n * Returns an action object used to remove a panel from the editor.\n *\n * @deprecated\n *\n * @param {string} panelName A string that identifies the panel to remove.\n *\n * @return {Object} Action object.\n */\nexport const removeEditorPanel =\n\t( panelName ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).removeEditorPanel\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').removeEditorPanel\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).removeEditorPanel( panelName );\n\t};\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 * @deprecated\n *\n * @param {string} mode The editor mode.\n */\nexport const switchEditorMode =\n\t( mode ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).switchEditorMode\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').switchEditorMode\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).switchEditorMode( mode );\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', pluginName );\n\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t[ isPinned ? 'unpinItem' : 'pinItem' ]( 'core', pluginName );\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 * @deprecated\n */\nexport function updatePreferredStyleVariations() {\n\tdeprecated( \"dispatch( 'core/edit-post' ).updatePreferredStyleVariations\", {\n\t\tsince: '6.6',\n\t\thint: 'Preferred Style Variations are not supported anymore.',\n\t} );\n\treturn { type: 'NOTHING' };\n}\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\tunlock( registry.dispatch( editorStore ) ).showBlockTypes( blockNames );\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\tunlock( registry.dispatch( editorStore ) ).hideBlockTypes( blockNames );\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 */\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 * @deprecated\n *\n * @param {boolean|Object} value Whether the inserter should be opened (true) or closed (false).\n */\nexport const setIsInserterOpened =\n\t( value ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).setIsInserterOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').setIsInserterOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).setIsInserterOpened( value );\n\t};\n\n/**\n * Returns an action object used to open/close the list view.\n *\n * @deprecated\n *\n * @param {boolean} isOpen A boolean representing whether the list view should be opened or closed.\n */\nexport const setIsListViewOpened =\n\t( isOpen ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).setIsListViewOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').setIsListViewOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).setIsListViewOpened( isOpen );\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 * 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 *\n * @deprecated\n */\nexport const toggleDistractionFree =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).toggleDistractionFree\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').toggleDistractionFree\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleDistractionFree();\n\t};\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_apiFetch","_interopRequireDefault","require","_preferences","_editor","_deprecated","_hooks","_coreData","_metaBoxes","_lockUnlock","interfaceStore","unlock","editorPrivateApis","openGeneralSidebar","name","registry","dispatch","enableComplementaryArea","exports","closeGeneralSidebar","disableComplementaryArea","openModal","deprecated","since","alternative","closeModal","openPublishSidebar","editorStore","closePublishSidebar","togglePublishSidebar","toggleEditorPanelEnabled","panelName","toggleEditorPanelOpened","removeEditorPanel","toggleFeature","feature","preferencesStore","toggle","switchEditorMode","mode","togglePinnedPluginItem","pluginName","isPinned","select","isItemPinned","updatePreferredStyleVariations","hint","type","showBlockTypes","blockNames","hideBlockTypes","setAvailableMetaBoxesPerLocation","metaBoxesPerLocation","requestMetaBoxUpdates","window","tinyMCE","triggerSave","baseFormData","FormData","document","querySelector","postId","get","postType","post","coreStore","getEditedEntityRecord","additionalData","comment_status","ping_status","sticky","author","filter","Boolean","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","setDeviceType","setIsInserterOpened","setIsListViewOpened","isOpen","setIsEditingTemplate","__unstableCreateTemplate","metaBoxesInitialized","initializeMetaBoxes","isEditorReady","__unstableIsEditorReady","getCurrentPostType","postboxes","page","add_postbox_toggles","addFilter","previous","options","then","isAutosave","hasMetaBoxes","toggleDistractionFree"],"sources":["@wordpress/edit-post/src/store/actions.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport apiFetch from '@wordpress/api-fetch';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport {\n\tstore as editorStore,\n\tprivateApis as editorPrivateApis,\n} from '@wordpress/editor';\nimport deprecated from '@wordpress/deprecated';\nimport { addFilter } from '@wordpress/hooks';\nimport { store as coreStore } from '@wordpress/core-data';\n\n/**\n * Internal dependencies\n */\nimport { getMetaBoxContainer } from '../utils/meta-boxes';\nimport { unlock } from '../lock-unlock';\n\nconst { interfaceStore } = unlock( editorPrivateApis );\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( { registry } ) => {\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t.enableComplementaryArea( 'core', 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.dispatch( interfaceStore ).disableComplementaryArea( 'core' );\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 * @deprecated\n *\n * @return {Object} Action object\n */\nexport const openPublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).openPublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').openPublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).openPublishSidebar();\n\t};\n\n/**\n * Returns an action object used in signalling that the user closed the\n * publish sidebar.\n * @deprecated\n *\n * @return {Object} Action object.\n */\nexport const closePublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).closePublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').closePublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).closePublishSidebar();\n\t};\n\n/**\n * Returns an action object used in signalling that the user toggles the publish sidebar.\n * @deprecated\n *\n * @return {Object} Action object\n */\nexport const togglePublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).togglePublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').togglePublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).togglePublishSidebar();\n\t};\n\n/**\n * Returns an action object used to enable or disable a panel in the editor.\n *\n * @deprecated\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\tdeprecated( \"dispatch( 'core/edit-post' ).toggleEditorPanelEnabled\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').toggleEditorPanelEnabled\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleEditorPanelEnabled( panelName );\n\t};\n\n/**\n * Opens a closed panel and closes an open panel.\n *\n * @deprecated\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\tdeprecated( \"dispatch( 'core/edit-post' ).toggleEditorPanelOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').toggleEditorPanelOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleEditorPanelOpened( panelName );\n\t};\n\n/**\n * Returns an action object used to remove a panel from the editor.\n *\n * @deprecated\n *\n * @param {string} panelName A string that identifies the panel to remove.\n *\n * @return {Object} Action object.\n */\nexport const removeEditorPanel =\n\t( panelName ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).removeEditorPanel\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').removeEditorPanel\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).removeEditorPanel( panelName );\n\t};\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 * @deprecated\n *\n * @param {string} mode The editor mode.\n */\nexport const switchEditorMode =\n\t( mode ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).switchEditorMode\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').switchEditorMode\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).switchEditorMode( mode );\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', pluginName );\n\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t[ isPinned ? 'unpinItem' : 'pinItem' ]( 'core', pluginName );\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 * @deprecated\n */\nexport function updatePreferredStyleVariations() {\n\tdeprecated( \"dispatch( 'core/edit-post' ).updatePreferredStyleVariations\", {\n\t\tsince: '6.6',\n\t\thint: 'Preferred Style Variations are not supported anymore.',\n\t} );\n\treturn { type: 'NOTHING' };\n}\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\tunlock( registry.dispatch( editorStore ) ).showBlockTypes( blockNames );\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\tunlock( registry.dispatch( editorStore ) ).hideBlockTypes( blockNames );\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// We gather the base form data.\n\t\tconst baseFormData = new window.FormData(\n\t\t\tdocument.querySelector( '.metabox-base-form' )\n\t\t);\n\n\t\tconst postId = baseFormData.get( 'post_ID' );\n\t\tconst postType = baseFormData.get( 'post_type' );\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\t// We cannot rely on getCurrentPost because right now on the editor we may be editing a pattern or a template.\n\t\t// We need to retrieve the post that the base form data is referring to.\n\t\tconst post = registry\n\t\t\t.select( coreStore )\n\t\t\t.getEditedEntityRecord( 'postType', postType, postId );\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.\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 */\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 * @deprecated\n *\n * @param {boolean|Object} value Whether the inserter should be opened (true) or closed (false).\n */\nexport const setIsInserterOpened =\n\t( value ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).setIsInserterOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').setIsInserterOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).setIsInserterOpened( value );\n\t};\n\n/**\n * Returns an action object used to open/close the list view.\n *\n * @deprecated\n *\n * @param {boolean} isOpen A boolean representing whether the list view should be opened or closed.\n */\nexport const setIsListViewOpened =\n\t( isOpen ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).setIsListViewOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').setIsListViewOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).setIsListViewOpened( isOpen );\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 * 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 *\n * @deprecated\n */\nexport const toggleDistractionFree =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).toggleDistractionFree\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').toggleDistractionFree\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleDistractionFree();\n\t};\n"],"mappings":"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","ignoreList":[]}
@@ -6,6 +6,7 @@ import { store as preferencesStore } from '@wordpress/preferences';
6
6
  import { store as editorStore, privateApis as editorPrivateApis } from '@wordpress/editor';
7
7
  import deprecated from '@wordpress/deprecated';
8
8
  import { addFilter } from '@wordpress/hooks';
9
+ import { store as coreStore } from '@wordpress/core-data';
9
10
 
10
11
  /**
11
12
  * Internal dependencies
@@ -280,13 +281,19 @@ export const requestMetaBoxUpdates = () => async ({
280
281
  window.tinyMCE.triggerSave();
281
282
  }
282
283
 
284
+ // We gather the base form data.
285
+ const baseFormData = new window.FormData(document.querySelector('.metabox-base-form'));
286
+ const postId = baseFormData.get('post_ID');
287
+ const postType = baseFormData.get('post_type');
288
+
283
289
  // Additional data needed for backward compatibility.
284
290
  // If we do not provide this data, the post will be overridden with the default values.
285
- const post = registry.select(editorStore).getCurrentPost();
291
+ // We cannot rely on getCurrentPost because right now on the editor we may be editing a pattern or a template.
292
+ // We need to retrieve the post that the base form data is referring to.
293
+ const post = registry.select(coreStore).getEditedEntityRecord('postType', postType, postId);
286
294
  const additionalData = [post.comment_status ? ['comment_status', post.comment_status] : false, post.ping_status ? ['ping_status', post.ping_status] : false, post.sticky ? ['sticky', post.sticky] : false, post.author ? ['post_author', post.author] : false].filter(Boolean);
287
295
 
288
- // We gather all the metaboxes locations data and the base form data.
289
- const baseFormData = new window.FormData(document.querySelector('.metabox-base-form'));
296
+ // We gather all the metaboxes locations.
290
297
  const activeMetaBoxLocations = select.getActiveMetaBoxLocations();
291
298
  const formDataToMerge = [baseFormData, ...activeMetaBoxLocations.map(location => new window.FormData(getMetaBoxContainer(location)))];
292
299
 
@@ -1 +1 @@
1
- {"version":3,"names":["apiFetch","store","preferencesStore","editorStore","privateApis","editorPrivateApis","deprecated","addFilter","getMetaBoxContainer","unlock","interfaceStore","openGeneralSidebar","name","registry","dispatch","enableComplementaryArea","closeGeneralSidebar","disableComplementaryArea","openModal","since","alternative","closeModal","openPublishSidebar","closePublishSidebar","togglePublishSidebar","toggleEditorPanelEnabled","panelName","toggleEditorPanelOpened","removeEditorPanel","toggleFeature","feature","toggle","switchEditorMode","mode","togglePinnedPluginItem","pluginName","isPinned","select","isItemPinned","updatePreferredStyleVariations","hint","type","showBlockTypes","blockNames","hideBlockTypes","setAvailableMetaBoxesPerLocation","metaBoxesPerLocation","requestMetaBoxUpdates","window","tinyMCE","triggerSave","post","getCurrentPost","additionalData","comment_status","ping_status","sticky","author","filter","Boolean","baseFormData","FormData","document","querySelector","activeMetaBoxLocations","getActiveMetaBoxLocations","formDataToMerge","map","location","formData","reduce","memo","currentFormData","key","value","append","forEach","url","_wpMetaBoxUrl","method","body","parse","metaBoxUpdatesSuccess","metaBoxUpdatesFailure","__experimentalSetPreviewDeviceType","deviceType","version","setDeviceType","setIsInserterOpened","setIsListViewOpened","isOpen","setIsEditingTemplate","__unstableCreateTemplate","metaBoxesInitialized","initializeMetaBoxes","isEditorReady","__unstableIsEditorReady","postType","getCurrentPostType","postboxes","page","add_postbox_toggles","previous","options","then","isAutosave","hasMetaBoxes","toggleDistractionFree"],"sources":["@wordpress/edit-post/src/store/actions.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport apiFetch from '@wordpress/api-fetch';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport {\n\tstore as editorStore,\n\tprivateApis as editorPrivateApis,\n} 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 { unlock } from '../lock-unlock';\n\nconst { interfaceStore } = unlock( editorPrivateApis );\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( { registry } ) => {\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t.enableComplementaryArea( 'core', 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.dispatch( interfaceStore ).disableComplementaryArea( 'core' );\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 * @deprecated\n *\n * @return {Object} Action object\n */\nexport const openPublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).openPublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').openPublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).openPublishSidebar();\n\t};\n\n/**\n * Returns an action object used in signalling that the user closed the\n * publish sidebar.\n * @deprecated\n *\n * @return {Object} Action object.\n */\nexport const closePublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).closePublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').closePublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).closePublishSidebar();\n\t};\n\n/**\n * Returns an action object used in signalling that the user toggles the publish sidebar.\n * @deprecated\n *\n * @return {Object} Action object\n */\nexport const togglePublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).togglePublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').togglePublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).togglePublishSidebar();\n\t};\n\n/**\n * Returns an action object used to enable or disable a panel in the editor.\n *\n * @deprecated\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\tdeprecated( \"dispatch( 'core/edit-post' ).toggleEditorPanelEnabled\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').toggleEditorPanelEnabled\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleEditorPanelEnabled( panelName );\n\t};\n\n/**\n * Opens a closed panel and closes an open panel.\n *\n * @deprecated\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\tdeprecated( \"dispatch( 'core/edit-post' ).toggleEditorPanelOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').toggleEditorPanelOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleEditorPanelOpened( panelName );\n\t};\n\n/**\n * Returns an action object used to remove a panel from the editor.\n *\n * @deprecated\n *\n * @param {string} panelName A string that identifies the panel to remove.\n *\n * @return {Object} Action object.\n */\nexport const removeEditorPanel =\n\t( panelName ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).removeEditorPanel\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').removeEditorPanel\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).removeEditorPanel( panelName );\n\t};\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 * @deprecated\n *\n * @param {string} mode The editor mode.\n */\nexport const switchEditorMode =\n\t( mode ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).switchEditorMode\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').switchEditorMode\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).switchEditorMode( mode );\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', pluginName );\n\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t[ isPinned ? 'unpinItem' : 'pinItem' ]( 'core', pluginName );\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 * @deprecated\n */\nexport function updatePreferredStyleVariations() {\n\tdeprecated( \"dispatch( 'core/edit-post' ).updatePreferredStyleVariations\", {\n\t\tsince: '6.6',\n\t\thint: 'Preferred Style Variations are not supported anymore.',\n\t} );\n\treturn { type: 'NOTHING' };\n}\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\tunlock( registry.dispatch( editorStore ) ).showBlockTypes( blockNames );\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\tunlock( registry.dispatch( editorStore ) ).hideBlockTypes( blockNames );\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 */\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 * @deprecated\n *\n * @param {boolean|Object} value Whether the inserter should be opened (true) or closed (false).\n */\nexport const setIsInserterOpened =\n\t( value ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).setIsInserterOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').setIsInserterOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).setIsInserterOpened( value );\n\t};\n\n/**\n * Returns an action object used to open/close the list view.\n *\n * @deprecated\n *\n * @param {boolean} isOpen A boolean representing whether the list view should be opened or closed.\n */\nexport const setIsListViewOpened =\n\t( isOpen ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).setIsListViewOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').setIsListViewOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).setIsListViewOpened( isOpen );\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 * 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 *\n * @deprecated\n */\nexport const toggleDistractionFree =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).toggleDistractionFree\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').toggleDistractionFree\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleDistractionFree();\n\t};\n"],"mappings":"AAAA;AACA;AACA;AACA,OAAOA,QAAQ,MAAM,sBAAsB;AAC3C,SAASC,KAAK,IAAIC,gBAAgB,QAAQ,wBAAwB;AAClE,SACCD,KAAK,IAAIE,WAAW,EACpBC,WAAW,IAAIC,iBAAiB,QAC1B,mBAAmB;AAC1B,OAAOC,UAAU,MAAM,uBAAuB;AAC9C,SAASC,SAAS,QAAQ,kBAAkB;;AAE5C;AACA;AACA;AACA,SAASC,mBAAmB,QAAQ,qBAAqB;AACzD,SAASC,MAAM,QAAQ,gBAAgB;AAEvC,MAAM;EAAEC;AAAe,CAAC,GAAGD,MAAM,CAAEJ,iBAAkB,CAAC;;AAEtD;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMM,kBAAkB,GAC5BC,IAAI,IACN,CAAE;EAAEC;AAAS,CAAC,KAAM;EACnBA,QAAQ,CACNC,QAAQ,CAAEJ,cAAe,CAAC,CAC1BK,uBAAuB,CAAE,MAAM,EAAEH,IAAK,CAAC;AAC1C,CAAC;;AAEF;AACA;AACA;AACA,OAAO,MAAMI,mBAAmB,GAC/BA,CAAA,KACA,CAAE;EAAEH;AAAS,CAAC,KACbA,QAAQ,CAACC,QAAQ,CAAEJ,cAAe,CAAC,CAACO,wBAAwB,CAAE,MAAO,CAAC;;AAExE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,SAAS,GACnBN,IAAI,IACN,CAAE;EAAEC;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,8CAA8C,EAAE;IAC3Da,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACH,OAAOP,QAAQ,CAACC,QAAQ,CAAEJ,cAAe,CAAC,CAACQ,SAAS,CAAEN,IAAK,CAAC;AAC7D,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMS,UAAU,GACtBA,CAAA,KACA,CAAE;EAAER;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,yCAAyC,EAAE;IACtDa,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACH,OAAOP,QAAQ,CAACC,QAAQ,CAAEJ,cAAe,CAAC,CAACW,UAAU,CAAC,CAAC;AACxD,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,kBAAkB,GAC9BA,CAAA,KACA,CAAE;EAAET;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,iDAAiD,EAAE;IAC9Da,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACHP,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAC,CAACmB,kBAAkB,CAAC,CAAC;AACtD,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,mBAAmB,GAC/BA,CAAA,KACA,CAAE;EAAEV;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,kDAAkD,EAAE;IAC/Da,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACHP,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAC,CAACoB,mBAAmB,CAAC,CAAC;AACvD,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,oBAAoB,GAChCA,CAAA,KACA,CAAE;EAAEX;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,mDAAmD,EAAE;IAChEa,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACHP,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAC,CAACqB,oBAAoB,CAAC,CAAC;AACxD,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,wBAAwB,GAClCC,SAAS,IACX,CAAE;EAAEb;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,uDAAuD,EAAE;IACpEa,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACHP,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAC,CAACsB,wBAAwB,CAAEC,SAAU,CAAC;AACvE,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,uBAAuB,GACjCD,SAAS,IACX,CAAE;EAAEb;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,sDAAsD,EAAE;IACnEa,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACHP,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAC,CAACwB,uBAAuB,CAAED,SAAU,CAAC;AACtE,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAME,iBAAiB,GAC3BF,SAAS,IACX,CAAE;EAAEb;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,gDAAgD,EAAE;IAC7Da,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACHP,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAC,CAACyB,iBAAiB,CAAEF,SAAU,CAAC;AAChE,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMG,aAAa,GACvBC,OAAO,IACT,CAAE;EAAEjB;AAAS,CAAC,KACbA,QAAQ,CACNC,QAAQ,CAAEZ,gBAAiB,CAAC,CAC5B6B,MAAM,CAAE,gBAAgB,EAAED,OAAQ,CAAC;;AAEvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAME,gBAAgB,GAC1BC,IAAI,IACN,CAAE;EAAEpB;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,+CAA+C,EAAE;IAC5Da,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACHP,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAC,CAAC6B,gBAAgB,CAAEC,IAAK,CAAC;AAC1D,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,sBAAsB,GAChCC,UAAU,IACZ,CAAE;EAAEtB;AAAS,CAAC,KAAM;EACnB,MAAMuB,QAAQ,GAAGvB,QAAQ,CACvBwB,MAAM,CAAE3B,cAAe,CAAC,CACxB4B,YAAY,CAAE,MAAM,EAAEH,UAAW,CAAC;EAEpCtB,QAAQ,CACNC,QAAQ,CAAEJ,cAAe,CAAC,CACzB0B,QAAQ,GAAG,WAAW,GAAG,SAAS,CAAE,CAAE,MAAM,EAAED,UAAW,CAAC;AAC9D,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA,OAAO,SAASI,8BAA8BA,CAAA,EAAG;EAChDjC,UAAU,CAAE,6DAA6D,EAAE;IAC1Ea,KAAK,EAAE,KAAK;IACZqB,IAAI,EAAE;EACP,CAAE,CAAC;EACH,OAAO;IAAEC,IAAI,EAAE;EAAU,CAAC;AAC3B;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,cAAc,GACxBC,UAAU,IACZ,CAAE;EAAE9B;AAAS,CAAC,KAAM;EACnBJ,MAAM,CAAEI,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAE,CAAC,CAACuC,cAAc,CAAEC,UAAW,CAAC;AACxE,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,cAAc,GACxBD,UAAU,IACZ,CAAE;EAAE9B;AAAS,CAAC,KAAM;EACnBJ,MAAM,CAAEI,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAE,CAAC,CAACyC,cAAc,CAAED,UAAW,CAAC;AACxE,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA,OAAO,SAASE,gCAAgCA,CAAEC,oBAAoB,EAAG;EACxE,OAAO;IACNL,IAAI,EAAE,8BAA8B;IACpCK;EACD,CAAC;AACF;;AAEA;AACA;AACA;AACA,OAAO,MAAMC,qBAAqB,GACjCA,CAAA,KACA,OAAQ;EAAElC,QAAQ;EAAEwB,MAAM;EAAEvB;AAAS,CAAC,KAAM;EAC3CA,QAAQ,CAAE;IACT2B,IAAI,EAAE;EACP,CAAE,CAAC;;EAEH;EACA,IAAKO,MAAM,CAACC,OAAO,EAAG;IACrBD,MAAM,CAACC,OAAO,CAACC,WAAW,CAAC,CAAC;EAC7B;;EAEA;EACA;EACA,MAAMC,IAAI,GAAGtC,QAAQ,CAACwB,MAAM,CAAElC,WAAY,CAAC,CAACiD,cAAc,CAAC,CAAC;EAC5D,MAAMC,cAAc,GAAG,CACtBF,IAAI,CAACG,cAAc,GAChB,CAAE,gBAAgB,EAAEH,IAAI,CAACG,cAAc,CAAE,GACzC,KAAK,EACRH,IAAI,CAACI,WAAW,GAAG,CAAE,aAAa,EAAEJ,IAAI,CAACI,WAAW,CAAE,GAAG,KAAK,EAC9DJ,IAAI,CAACK,MAAM,GAAG,CAAE,QAAQ,EAAEL,IAAI,CAACK,MAAM,CAAE,GAAG,KAAK,EAC/CL,IAAI,CAACM,MAAM,GAAG,CAAE,aAAa,EAAEN,IAAI,CAACM,MAAM,CAAE,GAAG,KAAK,CACpD,CAACC,MAAM,CAAEC,OAAQ,CAAC;;EAEnB;EACA,MAAMC,YAAY,GAAG,IAAIZ,MAAM,CAACa,QAAQ,CACvCC,QAAQ,CAACC,aAAa,CAAE,oBAAqB,CAC9C,CAAC;EACD,MAAMC,sBAAsB,GAAG3B,MAAM,CAAC4B,yBAAyB,CAAC,CAAC;EACjE,MAAMC,eAAe,GAAG,CACvBN,YAAY,EACZ,GAAGI,sBAAsB,CAACG,GAAG,CAC1BC,QAAQ,IACT,IAAIpB,MAAM,CAACa,QAAQ,CAAErD,mBAAmB,CAAE4D,QAAS,CAAE,CACvD,CAAC,CACD;;EAED;EACA,MAAMC,QAAQ,GAAGH,eAAe,CAACI,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,IAAIvB,MAAM,CAACa,QAAQ,CAAC,CAAE,CAAC;EAC1BR,cAAc,CAACuB,OAAO,CAAE,CAAE,CAAEH,GAAG,EAAEC,KAAK,CAAE,KACvCL,QAAQ,CAACM,MAAM,CAAEF,GAAG,EAAEC,KAAM,CAC7B,CAAC;EAED,IAAI;IACH;IACA,MAAM1E,QAAQ,CAAE;MACf6E,GAAG,EAAE7B,MAAM,CAAC8B,aAAa;MACzBC,MAAM,EAAE,MAAM;MACdC,IAAI,EAAEX,QAAQ;MACdY,KAAK,EAAE;IACR,CAAE,CAAC;IACHnE,QAAQ,CAACoE,qBAAqB,CAAC,CAAC;EACjC,CAAC,CAAC,MAAM;IACPpE,QAAQ,CAACqE,qBAAqB,CAAC,CAAC;EACjC;AACD,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA,OAAO,SAASD,qBAAqBA,CAAA,EAAG;EACvC,OAAO;IACNzC,IAAI,EAAE;EACP,CAAC;AACF;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO,SAAS0C,qBAAqBA,CAAA,EAAG;EACvC,OAAO;IACN1C,IAAI,EAAE;EACP,CAAC;AACF;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAM2C,kCAAkC,GAC5CC,UAAU,IACZ,CAAE;EAAExE;AAAS,CAAC,KAAM;EACnBP,UAAU,CACT,iEAAiE,EACjE;IACCa,KAAK,EAAE,KAAK;IACZmE,OAAO,EAAE,KAAK;IACd9C,IAAI,EAAE;EACP,CACD,CAAC;EACD3B,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAC,CAACoF,aAAa,CAAEF,UAAW,CAAC;AAC7D,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMG,mBAAmB,GAC7Bd,KAAK,IACP,CAAE;EAAE7D;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,kDAAkD,EAAE;IAC/Da,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACHP,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAC,CAACqF,mBAAmB,CAAEd,KAAM,CAAC;AAC9D,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMe,mBAAmB,GAC7BC,MAAM,IACR,CAAE;EAAE7E;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,kDAAkD,EAAE;IAC/Da,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACHP,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAC,CAACsF,mBAAmB,CAAEC,MAAO,CAAC;AAC/D,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,oBAAoBA,CAAA,EAAG;EACtCrF,UAAU,CAAE,mDAAmD,EAAE;IAChEa,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACH,OAAO;IAAEqB,IAAI,EAAE;EAAU,CAAC;AAC3B;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASmD,wBAAwBA,CAAA,EAAG;EAC1CtF,UAAU,CAAE,uDAAuD,EAAE;IACpEa,KAAK,EAAE;EACR,CAAE,CAAC;EACH,OAAO;IAAEsB,IAAI,EAAE;EAAU,CAAC;AAC3B;AAEA,IAAIoD,oBAAoB,GAAG,KAAK;;AAEhC;AACA;AACA;AACA,OAAO,MAAMC,mBAAmB,GAC/BA,CAAA,KACA,CAAE;EAAEjF,QAAQ;EAAEwB,MAAM;EAAEvB;AAAS,CAAC,KAAM;EACrC,MAAMiF,aAAa,GAAGlF,QAAQ,CAC5BwB,MAAM,CAAElC,WAAY,CAAC,CACrB6F,uBAAuB,CAAC,CAAC;EAE3B,IAAK,CAAED,aAAa,EAAG;IACtB;EACD;EACA;EACA,IAAKF,oBAAoB,EAAG;IAC3B;EACD;EACA,MAAMI,QAAQ,GAAGpF,QAAQ,CAACwB,MAAM,CAAElC,WAAY,CAAC,CAAC+F,kBAAkB,CAAC,CAAC;EACpE,IAAKlD,MAAM,CAACmD,SAAS,CAACC,IAAI,KAAKH,QAAQ,EAAG;IACzCjD,MAAM,CAACmD,SAAS,CAACE,mBAAmB,CAAEJ,QAAS,CAAC;EACjD;EAEAJ,oBAAoB,GAAG,IAAI;;EAE3B;EACAtF,SAAS,CACR,2BAA2B,EAC3B,+BAA+B,EAC/B,CAAE+F,QAAQ,EAAEC,OAAO,KAClBD,QAAQ,CAACE,IAAI,CAAE,MAAM;IACpB,IAAKD,OAAO,CAACE,UAAU,EAAG;MACzB;IACD;IAEA,IAAK,CAAEpE,MAAM,CAACqE,YAAY,CAAC,CAAC,EAAG;MAC9B;IACD;IAEA,OAAO5F,QAAQ,CAACiC,qBAAqB,CAAC,CAAC;EACxC,CAAE,CACJ,CAAC;EAEDjC,QAAQ,CAAE;IACT2B,IAAI,EAAE;EACP,CAAE,CAAC;AACJ,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMkE,qBAAqB,GACjCA,CAAA,KACA,CAAE;EAAE9F;AAAS,CAAC,KAAM;EACnBP,UAAU,CAAE,oDAAoD,EAAE;IACjEa,KAAK,EAAE,KAAK;IACZC,WAAW,EAAE;EACd,CAAE,CAAC;EACHP,QAAQ,CAACC,QAAQ,CAAEX,WAAY,CAAC,CAACwG,qBAAqB,CAAC,CAAC;AACzD,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["apiFetch","store","preferencesStore","editorStore","privateApis","editorPrivateApis","deprecated","addFilter","coreStore","getMetaBoxContainer","unlock","interfaceStore","openGeneralSidebar","name","registry","dispatch","enableComplementaryArea","closeGeneralSidebar","disableComplementaryArea","openModal","since","alternative","closeModal","openPublishSidebar","closePublishSidebar","togglePublishSidebar","toggleEditorPanelEnabled","panelName","toggleEditorPanelOpened","removeEditorPanel","toggleFeature","feature","toggle","switchEditorMode","mode","togglePinnedPluginItem","pluginName","isPinned","select","isItemPinned","updatePreferredStyleVariations","hint","type","showBlockTypes","blockNames","hideBlockTypes","setAvailableMetaBoxesPerLocation","metaBoxesPerLocation","requestMetaBoxUpdates","window","tinyMCE","triggerSave","baseFormData","FormData","document","querySelector","postId","get","postType","post","getEditedEntityRecord","additionalData","comment_status","ping_status","sticky","author","filter","Boolean","activeMetaBoxLocations","getActiveMetaBoxLocations","formDataToMerge","map","location","formData","reduce","memo","currentFormData","key","value","append","forEach","url","_wpMetaBoxUrl","method","body","parse","metaBoxUpdatesSuccess","metaBoxUpdatesFailure","__experimentalSetPreviewDeviceType","deviceType","version","setDeviceType","setIsInserterOpened","setIsListViewOpened","isOpen","setIsEditingTemplate","__unstableCreateTemplate","metaBoxesInitialized","initializeMetaBoxes","isEditorReady","__unstableIsEditorReady","getCurrentPostType","postboxes","page","add_postbox_toggles","previous","options","then","isAutosave","hasMetaBoxes","toggleDistractionFree"],"sources":["@wordpress/edit-post/src/store/actions.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport apiFetch from '@wordpress/api-fetch';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport {\n\tstore as editorStore,\n\tprivateApis as editorPrivateApis,\n} from '@wordpress/editor';\nimport deprecated from '@wordpress/deprecated';\nimport { addFilter } from '@wordpress/hooks';\nimport { store as coreStore } from '@wordpress/core-data';\n\n/**\n * Internal dependencies\n */\nimport { getMetaBoxContainer } from '../utils/meta-boxes';\nimport { unlock } from '../lock-unlock';\n\nconst { interfaceStore } = unlock( editorPrivateApis );\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( { registry } ) => {\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t.enableComplementaryArea( 'core', 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.dispatch( interfaceStore ).disableComplementaryArea( 'core' );\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 * @deprecated\n *\n * @return {Object} Action object\n */\nexport const openPublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).openPublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').openPublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).openPublishSidebar();\n\t};\n\n/**\n * Returns an action object used in signalling that the user closed the\n * publish sidebar.\n * @deprecated\n *\n * @return {Object} Action object.\n */\nexport const closePublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).closePublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').closePublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).closePublishSidebar();\n\t};\n\n/**\n * Returns an action object used in signalling that the user toggles the publish sidebar.\n * @deprecated\n *\n * @return {Object} Action object\n */\nexport const togglePublishSidebar =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).togglePublishSidebar\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').togglePublishSidebar\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).togglePublishSidebar();\n\t};\n\n/**\n * Returns an action object used to enable or disable a panel in the editor.\n *\n * @deprecated\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\tdeprecated( \"dispatch( 'core/edit-post' ).toggleEditorPanelEnabled\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').toggleEditorPanelEnabled\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleEditorPanelEnabled( panelName );\n\t};\n\n/**\n * Opens a closed panel and closes an open panel.\n *\n * @deprecated\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\tdeprecated( \"dispatch( 'core/edit-post' ).toggleEditorPanelOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').toggleEditorPanelOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleEditorPanelOpened( panelName );\n\t};\n\n/**\n * Returns an action object used to remove a panel from the editor.\n *\n * @deprecated\n *\n * @param {string} panelName A string that identifies the panel to remove.\n *\n * @return {Object} Action object.\n */\nexport const removeEditorPanel =\n\t( panelName ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).removeEditorPanel\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').removeEditorPanel\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).removeEditorPanel( panelName );\n\t};\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 * @deprecated\n *\n * @param {string} mode The editor mode.\n */\nexport const switchEditorMode =\n\t( mode ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).switchEditorMode\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').switchEditorMode\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).switchEditorMode( mode );\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', pluginName );\n\n\t\tregistry\n\t\t\t.dispatch( interfaceStore )\n\t\t\t[ isPinned ? 'unpinItem' : 'pinItem' ]( 'core', pluginName );\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 * @deprecated\n */\nexport function updatePreferredStyleVariations() {\n\tdeprecated( \"dispatch( 'core/edit-post' ).updatePreferredStyleVariations\", {\n\t\tsince: '6.6',\n\t\thint: 'Preferred Style Variations are not supported anymore.',\n\t} );\n\treturn { type: 'NOTHING' };\n}\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\tunlock( registry.dispatch( editorStore ) ).showBlockTypes( blockNames );\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\tunlock( registry.dispatch( editorStore ) ).hideBlockTypes( blockNames );\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// We gather the base form data.\n\t\tconst baseFormData = new window.FormData(\n\t\t\tdocument.querySelector( '.metabox-base-form' )\n\t\t);\n\n\t\tconst postId = baseFormData.get( 'post_ID' );\n\t\tconst postType = baseFormData.get( 'post_type' );\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\t// We cannot rely on getCurrentPost because right now on the editor we may be editing a pattern or a template.\n\t\t// We need to retrieve the post that the base form data is referring to.\n\t\tconst post = registry\n\t\t\t.select( coreStore )\n\t\t\t.getEditedEntityRecord( 'postType', postType, postId );\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.\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 */\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 * @deprecated\n *\n * @param {boolean|Object} value Whether the inserter should be opened (true) or closed (false).\n */\nexport const setIsInserterOpened =\n\t( value ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).setIsInserterOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').setIsInserterOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).setIsInserterOpened( value );\n\t};\n\n/**\n * Returns an action object used to open/close the list view.\n *\n * @deprecated\n *\n * @param {boolean} isOpen A boolean representing whether the list view should be opened or closed.\n */\nexport const setIsListViewOpened =\n\t( isOpen ) =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).setIsListViewOpened\", {\n\t\t\tsince: '6.5',\n\t\t\talternative: \"dispatch( 'core/editor').setIsListViewOpened\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).setIsListViewOpened( isOpen );\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 * 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 *\n * @deprecated\n */\nexport const toggleDistractionFree =\n\t() =>\n\t( { registry } ) => {\n\t\tdeprecated( \"dispatch( 'core/edit-post' ).toggleDistractionFree\", {\n\t\t\tsince: '6.6',\n\t\t\talternative: \"dispatch( 'core/editor').toggleDistractionFree\",\n\t\t} );\n\t\tregistry.dispatch( editorStore ).toggleDistractionFree();\n\t};\n"],"mappings":"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","ignoreList":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/edit-post",
3
- "version": "8.0.3",
3
+ "version": "8.0.4",
4
4
  "description": "Edit Post module for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -30,33 +30,33 @@
30
30
  "@babel/runtime": "^7.16.0",
31
31
  "@wordpress/a11y": "^4.0.1",
32
32
  "@wordpress/api-fetch": "^7.0.1",
33
- "@wordpress/block-editor": "^13.0.2",
34
- "@wordpress/block-library": "^9.0.3",
35
- "@wordpress/blocks": "^13.0.2",
36
- "@wordpress/commands": "^1.0.2",
37
- "@wordpress/components": "^28.0.2",
33
+ "@wordpress/block-editor": "^13.0.3",
34
+ "@wordpress/block-library": "^9.0.4",
35
+ "@wordpress/blocks": "^13.0.3",
36
+ "@wordpress/commands": "^1.0.3",
37
+ "@wordpress/components": "^28.0.3",
38
38
  "@wordpress/compose": "^7.0.1",
39
- "@wordpress/core-commands": "^1.0.2",
40
- "@wordpress/core-data": "^7.0.2",
39
+ "@wordpress/core-commands": "^1.0.3",
40
+ "@wordpress/core-data": "^7.0.3",
41
41
  "@wordpress/data": "^10.0.2",
42
42
  "@wordpress/deprecated": "^4.0.1",
43
43
  "@wordpress/dom": "^4.0.1",
44
- "@wordpress/editor": "^14.0.2",
44
+ "@wordpress/editor": "^14.0.3",
45
45
  "@wordpress/element": "^6.0.1",
46
46
  "@wordpress/hooks": "^4.0.1",
47
47
  "@wordpress/html-entities": "^4.0.1",
48
48
  "@wordpress/i18n": "^5.0.1",
49
- "@wordpress/icons": "^10.0.1",
49
+ "@wordpress/icons": "^10.0.2",
50
50
  "@wordpress/keyboard-shortcuts": "^5.0.2",
51
51
  "@wordpress/keycodes": "^4.0.1",
52
52
  "@wordpress/notices": "^5.0.2",
53
- "@wordpress/plugins": "^7.0.2",
54
- "@wordpress/preferences": "^4.0.2",
53
+ "@wordpress/plugins": "^7.0.3",
54
+ "@wordpress/preferences": "^4.0.3",
55
55
  "@wordpress/private-apis": "^1.0.2",
56
56
  "@wordpress/url": "^4.0.1",
57
57
  "@wordpress/viewport": "^6.0.2",
58
58
  "@wordpress/warning": "^3.0.1",
59
- "@wordpress/widgets": "^4.0.2",
59
+ "@wordpress/widgets": "^4.0.3",
60
60
  "clsx": "^2.1.1",
61
61
  "memize": "^2.1.0"
62
62
  },
@@ -67,5 +67,5 @@
67
67
  "publishConfig": {
68
68
  "access": "public"
69
69
  },
70
- "gitHead": "d0d80eabf45745725edbb19ce6667157fc68a6aa"
70
+ "gitHead": "9dd5f8dcfa4fc7242e5d48be20ee789ad087b432"
71
71
  }
@@ -9,6 +9,7 @@ import {
9
9
  } from '@wordpress/editor';
10
10
  import deprecated from '@wordpress/deprecated';
11
11
  import { addFilter } from '@wordpress/hooks';
12
+ import { store as coreStore } from '@wordpress/core-data';
12
13
 
13
14
  /**
14
15
  * Internal dependencies
@@ -289,9 +290,21 @@ export const requestMetaBoxUpdates =
289
290
  window.tinyMCE.triggerSave();
290
291
  }
291
292
 
293
+ // We gather the base form data.
294
+ const baseFormData = new window.FormData(
295
+ document.querySelector( '.metabox-base-form' )
296
+ );
297
+
298
+ const postId = baseFormData.get( 'post_ID' );
299
+ const postType = baseFormData.get( 'post_type' );
300
+
292
301
  // Additional data needed for backward compatibility.
293
302
  // If we do not provide this data, the post will be overridden with the default values.
294
- const post = registry.select( editorStore ).getCurrentPost();
303
+ // We cannot rely on getCurrentPost because right now on the editor we may be editing a pattern or a template.
304
+ // We need to retrieve the post that the base form data is referring to.
305
+ const post = registry
306
+ .select( coreStore )
307
+ .getEditedEntityRecord( 'postType', postType, postId );
295
308
  const additionalData = [
296
309
  post.comment_status
297
310
  ? [ 'comment_status', post.comment_status ]
@@ -301,10 +314,7 @@ export const requestMetaBoxUpdates =
301
314
  post.author ? [ 'post_author', post.author ] : false,
302
315
  ].filter( Boolean );
303
316
 
304
- // We gather all the metaboxes locations data and the base form data.
305
- const baseFormData = new window.FormData(
306
- document.querySelector( '.metabox-base-form' )
307
- );
317
+ // We gather all the metaboxes locations.
308
318
  const activeMetaBoxLocations = select.getActiveMetaBoxLocations();
309
319
  const formDataToMerge = [
310
320
  baseFormData,