@wordpress/edit-post 8.1.0 → 8.2.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 CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 8.2.0 (2024-06-26)
6
+
5
7
  ## 8.1.0 (2024-06-15)
6
8
 
7
9
  ### Bug Fixes
@@ -101,7 +103,7 @@
101
103
 
102
104
  ## 6.19.0 (2022-11-16)
103
105
 
104
- ### Enhancement
106
+ ### Enhancements
105
107
 
106
108
  - ` BlockTypesChecklist`: Move BlockIcon component out of CheckboxControl label ([#45535](https://github.com/WordPress/gutenberg/pull/45535))
107
109
 
@@ -143,11 +145,11 @@
143
145
 
144
146
  ## 6.0.0 (2022-02-10)
145
147
 
146
- ### Breaking Change
148
+ ### Breaking Changes
147
149
 
148
150
  - The `GUTENBERG_PHASE` environment variable has been renamed to `IS_GUTENBERG_PLUGIN` and is now a boolean ([#38202](https://github.com/WordPress/gutenberg/pull/38202)).
149
151
 
150
- ### Bug Fix
152
+ ### Bug Fixes
151
153
 
152
154
  - Removed unused `@wordpress/api-fetch`, `@wordpress/primitives` and `uuid` dependencies ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
153
155
 
@@ -155,7 +157,7 @@
155
157
 
156
158
  ## 5.0.0 (2021-07-29)
157
159
 
158
- ### Breaking Change
160
+ ### Breaking Changes
159
161
 
160
162
  - Upgraded React components to work with v17.0 ([#29118](https://github.com/WordPress/gutenberg/pull/29118)). There are no new features in React v17.0 as explained in the [blog post](https://reactjs.org/blog/2020/10/20/react-v17.html).
161
163
 
@@ -190,23 +192,23 @@
190
192
 
191
193
  ## 3.6.0 (2019-08-05)
192
194
 
193
- ### Refactor
195
+ ### Internal
194
196
 
195
197
  - Create EditorInitializer component and implement for various things to initialize as the editor is loaded. This replaces the `__unstableInitialize` refactor done in #14740. ([#15444](https://github.com/WordPress/gutenberg/pull/15444))
196
198
 
197
199
  ## 3.4.0 (2019-05-21)
198
200
 
199
- ### New Feature
201
+ ### New Features
200
202
 
201
203
  - Implement the `addToGallery` option in the `MediaUpload` hook. The option allows users to open the media modal in the `gallery-library`instead of `gallery-edit` state.
202
204
 
203
- ### Refactor
205
+ ### Internal
204
206
 
205
207
  - convert `INIT` effect to controls & actions [#14740](https://github.com/WordPress/gutenberg/pull/14740)
206
208
 
207
209
  ## 3.2.0 (2019-03-06)
208
210
 
209
- ### Polish
211
+ ### Internal
210
212
 
211
213
  - Expose the `className` property to style the `PluginSidebar` component.
212
214
 
@@ -235,7 +237,7 @@
235
237
 
236
238
  ## 3.1.0 (2018-11-20)
237
239
 
238
- ### New Feature
240
+ ### New Features
239
241
 
240
242
  - The new `AdminNotices` component will transparently upgrade any `.notice` elements on the page to the equivalent `@wordpress/notices` module notice state.
241
243
 
@@ -245,7 +247,7 @@
245
247
 
246
248
  ## 3.0.0 (2018-11-12)
247
249
 
248
- ### Breaking Change
250
+ ### Breaking Changes
249
251
 
250
252
  - `isEditorSidebarPanelOpened` selector (`core/edit-post`) has been removed. Please use `isEditorPanelEnabled` instead.
251
253
  - `toggleGeneralSidebarEditorPanel` action (`core/edit-post`) has been removed. Please use `toggleEditorPanelOpened` instead.
@@ -276,7 +278,7 @@
276
278
  - `getMetaBoxes` selector (`core/edit-post`) has been removed. Use `getActiveMetaBoxLocations` selector (`core/edit-post`) instead.
277
279
  - `getMetaBox` selector (`core/edit-post`) has been removed. Use `isMetaBoxLocationActive` selector (`core/edit-post`) instead.
278
280
 
279
- ### Polish
281
+ ### Internal
280
282
 
281
283
  - Add the editor styles support's wrapper className.
282
284
 
@@ -14,6 +14,7 @@ exports.PluginSidebar = PluginSidebar;
14
14
  exports.PluginSidebarMoreMenuItem = PluginSidebarMoreMenuItem;
15
15
  exports.__experimentalPluginPostExcerpt = __experimentalPluginPostExcerpt;
16
16
  var _editor = require("@wordpress/editor");
17
+ var _url = require("@wordpress/url");
17
18
  var _deprecated = _interopRequireDefault(require("@wordpress/deprecated"));
18
19
  var _lockUnlock = require("./lock-unlock");
19
20
  var _jsxRuntime = require("react/jsx-runtime");
@@ -28,6 +29,7 @@ var _jsxRuntime = require("react/jsx-runtime");
28
29
  const {
29
30
  PluginPostExcerpt
30
31
  } = (0, _lockUnlock.unlock)(_editor.privateApis);
32
+ const isSiteEditor = (0, _url.getPath)(window.location.href)?.includes('site-editor.php');
31
33
  const deprecateSlot = name => {
32
34
  (0, _deprecated.default)(`wp.editPost.${name}`, {
33
35
  since: '6.6',
@@ -40,6 +42,9 @@ const deprecateSlot = name => {
40
42
  * @see PluginBlockSettingsMenuItem in @wordpress/editor package.
41
43
  */
42
44
  function PluginBlockSettingsMenuItem(props) {
45
+ if (isSiteEditor) {
46
+ return null;
47
+ }
43
48
  deprecateSlot('PluginBlockSettingsMenuItem');
44
49
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.PluginBlockSettingsMenuItem, {
45
50
  ...props
@@ -50,6 +55,9 @@ function PluginBlockSettingsMenuItem(props) {
50
55
  * @see PluginDocumentSettingPanel in @wordpress/editor package.
51
56
  */
52
57
  function PluginDocumentSettingPanel(props) {
58
+ if (isSiteEditor) {
59
+ return null;
60
+ }
53
61
  deprecateSlot('PluginDocumentSettingPanel');
54
62
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.PluginDocumentSettingPanel, {
55
63
  ...props
@@ -60,6 +68,9 @@ function PluginDocumentSettingPanel(props) {
60
68
  * @see PluginMoreMenuItem in @wordpress/editor package.
61
69
  */
62
70
  function PluginMoreMenuItem(props) {
71
+ if (isSiteEditor) {
72
+ return null;
73
+ }
63
74
  deprecateSlot('PluginMoreMenuItem');
64
75
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.PluginMoreMenuItem, {
65
76
  ...props
@@ -70,6 +81,9 @@ function PluginMoreMenuItem(props) {
70
81
  * @see PluginPrePublishPanel in @wordpress/editor package.
71
82
  */
72
83
  function PluginPrePublishPanel(props) {
84
+ if (isSiteEditor) {
85
+ return null;
86
+ }
73
87
  deprecateSlot('PluginPrePublishPanel');
74
88
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.PluginPrePublishPanel, {
75
89
  ...props
@@ -80,6 +94,9 @@ function PluginPrePublishPanel(props) {
80
94
  * @see PluginPostPublishPanel in @wordpress/editor package.
81
95
  */
82
96
  function PluginPostPublishPanel(props) {
97
+ if (isSiteEditor) {
98
+ return null;
99
+ }
83
100
  deprecateSlot('PluginPostPublishPanel');
84
101
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.PluginPostPublishPanel, {
85
102
  ...props
@@ -90,6 +107,9 @@ function PluginPostPublishPanel(props) {
90
107
  * @see PluginPostStatusInfo in @wordpress/editor package.
91
108
  */
92
109
  function PluginPostStatusInfo(props) {
110
+ if (isSiteEditor) {
111
+ return null;
112
+ }
93
113
  deprecateSlot('PluginPostStatusInfo');
94
114
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.PluginPostStatusInfo, {
95
115
  ...props
@@ -100,6 +120,9 @@ function PluginPostStatusInfo(props) {
100
120
  * @see PluginSidebar in @wordpress/editor package.
101
121
  */
102
122
  function PluginSidebar(props) {
123
+ if (isSiteEditor) {
124
+ return null;
125
+ }
103
126
  deprecateSlot('PluginSidebar');
104
127
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.PluginSidebar, {
105
128
  ...props
@@ -110,6 +133,9 @@ function PluginSidebar(props) {
110
133
  * @see PluginSidebarMoreMenuItem in @wordpress/editor package.
111
134
  */
112
135
  function PluginSidebarMoreMenuItem(props) {
136
+ if (isSiteEditor) {
137
+ return null;
138
+ }
113
139
  deprecateSlot('PluginSidebarMoreMenuItem');
114
140
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.PluginSidebarMoreMenuItem, {
115
141
  ...props
@@ -120,6 +146,9 @@ function PluginSidebarMoreMenuItem(props) {
120
146
  * @see PluginPostExcerpt in @wordpress/editor package.
121
147
  */
122
148
  function __experimentalPluginPostExcerpt() {
149
+ if (isSiteEditor) {
150
+ return null;
151
+ }
123
152
  (0, _deprecated.default)('wp.editPost.__experimentalPluginPostExcerpt', {
124
153
  since: '6.6',
125
154
  hint: 'Core and custom panels can be access programmatically using their panel name.',
@@ -1 +1 @@
1
- {"version":3,"names":["_editor","require","_deprecated","_interopRequireDefault","_lockUnlock","_jsxRuntime","PluginPostExcerpt","unlock","editorPrivateApis","deprecateSlot","name","deprecated","since","alternative","PluginBlockSettingsMenuItem","props","jsx","PluginDocumentSettingPanel","PluginMoreMenuItem","PluginPrePublishPanel","PluginPostPublishPanel","PluginPostStatusInfo","PluginSidebar","PluginSidebarMoreMenuItem","__experimentalPluginPostExcerpt","hint","link"],"sources":["@wordpress/edit-post/src/deprecated.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport {\n\tprivateApis as editorPrivateApis,\n\tPluginBlockSettingsMenuItem as EditorPluginBlockSettingsMenuItem,\n\tPluginDocumentSettingPanel as EditorPluginDocumentSettingPanel,\n\tPluginMoreMenuItem as EditorPluginMoreMenuItem,\n\tPluginPrePublishPanel as EditorPluginPrePublishPanel,\n\tPluginPostPublishPanel as EditorPluginPostPublishPanel,\n\tPluginPostStatusInfo as EditorPluginPostStatusInfo,\n\tPluginSidebar as EditorPluginSidebar,\n\tPluginSidebarMoreMenuItem as EditorPluginSidebarMoreMenuItem,\n} from '@wordpress/editor';\nimport deprecated from '@wordpress/deprecated';\n\n/**\n * Internal dependencies\n */\nimport { unlock } from './lock-unlock';\nconst { PluginPostExcerpt } = unlock( editorPrivateApis );\n\nconst deprecateSlot = ( name ) => {\n\tdeprecated( `wp.editPost.${ name }`, {\n\t\tsince: '6.6',\n\t\talternative: `wp.editor.${ name }`,\n\t} );\n};\n\n/* eslint-disable jsdoc/require-param */\n/**\n * @see PluginBlockSettingsMenuItem in @wordpress/editor package.\n */\nexport function PluginBlockSettingsMenuItem( props ) {\n\tdeprecateSlot( 'PluginBlockSettingsMenuItem' );\n\treturn <EditorPluginBlockSettingsMenuItem { ...props } />;\n}\n\n/**\n * @see PluginDocumentSettingPanel in @wordpress/editor package.\n */\nexport function PluginDocumentSettingPanel( props ) {\n\tdeprecateSlot( 'PluginDocumentSettingPanel' );\n\treturn <EditorPluginDocumentSettingPanel { ...props } />;\n}\n\n/**\n * @see PluginMoreMenuItem in @wordpress/editor package.\n */\nexport function PluginMoreMenuItem( props ) {\n\tdeprecateSlot( 'PluginMoreMenuItem' );\n\treturn <EditorPluginMoreMenuItem { ...props } />;\n}\n\n/**\n * @see PluginPrePublishPanel in @wordpress/editor package.\n */\nexport function PluginPrePublishPanel( props ) {\n\tdeprecateSlot( 'PluginPrePublishPanel' );\n\treturn <EditorPluginPrePublishPanel { ...props } />;\n}\n\n/**\n * @see PluginPostPublishPanel in @wordpress/editor package.\n */\nexport function PluginPostPublishPanel( props ) {\n\tdeprecateSlot( 'PluginPostPublishPanel' );\n\treturn <EditorPluginPostPublishPanel { ...props } />;\n}\n\n/**\n * @see PluginPostStatusInfo in @wordpress/editor package.\n */\nexport function PluginPostStatusInfo( props ) {\n\tdeprecateSlot( 'PluginPostStatusInfo' );\n\treturn <EditorPluginPostStatusInfo { ...props } />;\n}\n\n/**\n * @see PluginSidebar in @wordpress/editor package.\n */\nexport function PluginSidebar( props ) {\n\tdeprecateSlot( 'PluginSidebar' );\n\treturn <EditorPluginSidebar { ...props } />;\n}\n\n/**\n * @see PluginSidebarMoreMenuItem in @wordpress/editor package.\n */\nexport function PluginSidebarMoreMenuItem( props ) {\n\tdeprecateSlot( 'PluginSidebarMoreMenuItem' );\n\treturn <EditorPluginSidebarMoreMenuItem { ...props } />;\n}\n\n/**\n * @see PluginPostExcerpt in @wordpress/editor package.\n */\nexport function __experimentalPluginPostExcerpt() {\n\tdeprecated( 'wp.editPost.__experimentalPluginPostExcerpt', {\n\t\tsince: '6.6',\n\t\thint: 'Core and custom panels can be access programmatically using their panel name.',\n\t\tlink: 'https://developer.wordpress.org/block-editor/reference-guides/slotfills/plugin-document-setting-panel/#accessing-a-panel-programmatically',\n\t} );\n\treturn PluginPostExcerpt;\n}\n\n/* eslint-enable jsdoc/require-param */\n"],"mappings":";;;;;;;;;;;;;;;AAGA,IAAAA,OAAA,GAAAC,OAAA;AAWA,IAAAC,WAAA,GAAAC,sBAAA,CAAAF,OAAA;AAKA,IAAAG,WAAA,GAAAH,OAAA;AAAuC,IAAAI,WAAA,GAAAJ,OAAA;AAnBvC;AACA;AACA;;AAcA;AACA;AACA;;AAEA,MAAM;EAAEK;AAAkB,CAAC,GAAG,IAAAC,kBAAM,EAAEC,mBAAkB,CAAC;AAEzD,MAAMC,aAAa,GAAKC,IAAI,IAAM;EACjC,IAAAC,mBAAU,EAAG,eAAeD,IAAM,EAAC,EAAE;IACpCE,KAAK,EAAE,KAAK;IACZC,WAAW,EAAG,aAAaH,IAAM;EAClC,CAAE,CAAC;AACJ,CAAC;;AAED;AACA;AACA;AACA;AACO,SAASI,2BAA2BA,CAAEC,KAAK,EAAG;EACpDN,aAAa,CAAE,6BAA8B,CAAC;EAC9C,oBAAO,IAAAJ,WAAA,CAAAW,GAAA,EAAChB,OAAA,CAAAc,2BAAiC;IAAA,GAAMC;EAAK,CAAI,CAAC;AAC1D;;AAEA;AACA;AACA;AACO,SAASE,0BAA0BA,CAAEF,KAAK,EAAG;EACnDN,aAAa,CAAE,4BAA6B,CAAC;EAC7C,oBAAO,IAAAJ,WAAA,CAAAW,GAAA,EAAChB,OAAA,CAAAiB,0BAAgC;IAAA,GAAMF;EAAK,CAAI,CAAC;AACzD;;AAEA;AACA;AACA;AACO,SAASG,kBAAkBA,CAAEH,KAAK,EAAG;EAC3CN,aAAa,CAAE,oBAAqB,CAAC;EACrC,oBAAO,IAAAJ,WAAA,CAAAW,GAAA,EAAChB,OAAA,CAAAkB,kBAAwB;IAAA,GAAMH;EAAK,CAAI,CAAC;AACjD;;AAEA;AACA;AACA;AACO,SAASI,qBAAqBA,CAAEJ,KAAK,EAAG;EAC9CN,aAAa,CAAE,uBAAwB,CAAC;EACxC,oBAAO,IAAAJ,WAAA,CAAAW,GAAA,EAAChB,OAAA,CAAAmB,qBAA2B;IAAA,GAAMJ;EAAK,CAAI,CAAC;AACpD;;AAEA;AACA;AACA;AACO,SAASK,sBAAsBA,CAAEL,KAAK,EAAG;EAC/CN,aAAa,CAAE,wBAAyB,CAAC;EACzC,oBAAO,IAAAJ,WAAA,CAAAW,GAAA,EAAChB,OAAA,CAAAoB,sBAA4B;IAAA,GAAML;EAAK,CAAI,CAAC;AACrD;;AAEA;AACA;AACA;AACO,SAASM,oBAAoBA,CAAEN,KAAK,EAAG;EAC7CN,aAAa,CAAE,sBAAuB,CAAC;EACvC,oBAAO,IAAAJ,WAAA,CAAAW,GAAA,EAAChB,OAAA,CAAAqB,oBAA0B;IAAA,GAAMN;EAAK,CAAI,CAAC;AACnD;;AAEA;AACA;AACA;AACO,SAASO,aAAaA,CAAEP,KAAK,EAAG;EACtCN,aAAa,CAAE,eAAgB,CAAC;EAChC,oBAAO,IAAAJ,WAAA,CAAAW,GAAA,EAAChB,OAAA,CAAAsB,aAAmB;IAAA,GAAMP;EAAK,CAAI,CAAC;AAC5C;;AAEA;AACA;AACA;AACO,SAASQ,yBAAyBA,CAAER,KAAK,EAAG;EAClDN,aAAa,CAAE,2BAA4B,CAAC;EAC5C,oBAAO,IAAAJ,WAAA,CAAAW,GAAA,EAAChB,OAAA,CAAAuB,yBAA+B;IAAA,GAAMR;EAAK,CAAI,CAAC;AACxD;;AAEA;AACA;AACA;AACO,SAASS,+BAA+BA,CAAA,EAAG;EACjD,IAAAb,mBAAU,EAAE,6CAA6C,EAAE;IAC1DC,KAAK,EAAE,KAAK;IACZa,IAAI,EAAE,+EAA+E;IACrFC,IAAI,EAAE;EACP,CAAE,CAAC;EACH,OAAOpB,iBAAiB;AACzB;;AAEA","ignoreList":[]}
1
+ {"version":3,"names":["_editor","require","_url","_deprecated","_interopRequireDefault","_lockUnlock","_jsxRuntime","PluginPostExcerpt","unlock","editorPrivateApis","isSiteEditor","getPath","window","location","href","includes","deprecateSlot","name","deprecated","since","alternative","PluginBlockSettingsMenuItem","props","jsx","PluginDocumentSettingPanel","PluginMoreMenuItem","PluginPrePublishPanel","PluginPostPublishPanel","PluginPostStatusInfo","PluginSidebar","PluginSidebarMoreMenuItem","__experimentalPluginPostExcerpt","hint","link"],"sources":["@wordpress/edit-post/src/deprecated.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport {\n\tprivateApis as editorPrivateApis,\n\tPluginBlockSettingsMenuItem as EditorPluginBlockSettingsMenuItem,\n\tPluginDocumentSettingPanel as EditorPluginDocumentSettingPanel,\n\tPluginMoreMenuItem as EditorPluginMoreMenuItem,\n\tPluginPrePublishPanel as EditorPluginPrePublishPanel,\n\tPluginPostPublishPanel as EditorPluginPostPublishPanel,\n\tPluginPostStatusInfo as EditorPluginPostStatusInfo,\n\tPluginSidebar as EditorPluginSidebar,\n\tPluginSidebarMoreMenuItem as EditorPluginSidebarMoreMenuItem,\n} from '@wordpress/editor';\nimport { getPath } from '@wordpress/url';\nimport deprecated from '@wordpress/deprecated';\n\n/**\n * Internal dependencies\n */\nimport { unlock } from './lock-unlock';\nconst { PluginPostExcerpt } = unlock( editorPrivateApis );\n\nconst isSiteEditor = getPath( window.location.href )?.includes(\n\t'site-editor.php'\n);\n\nconst deprecateSlot = ( name ) => {\n\tdeprecated( `wp.editPost.${ name }`, {\n\t\tsince: '6.6',\n\t\talternative: `wp.editor.${ name }`,\n\t} );\n};\n\n/* eslint-disable jsdoc/require-param */\n/**\n * @see PluginBlockSettingsMenuItem in @wordpress/editor package.\n */\nexport function PluginBlockSettingsMenuItem( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginBlockSettingsMenuItem' );\n\treturn <EditorPluginBlockSettingsMenuItem { ...props } />;\n}\n\n/**\n * @see PluginDocumentSettingPanel in @wordpress/editor package.\n */\nexport function PluginDocumentSettingPanel( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginDocumentSettingPanel' );\n\treturn <EditorPluginDocumentSettingPanel { ...props } />;\n}\n\n/**\n * @see PluginMoreMenuItem in @wordpress/editor package.\n */\nexport function PluginMoreMenuItem( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginMoreMenuItem' );\n\treturn <EditorPluginMoreMenuItem { ...props } />;\n}\n\n/**\n * @see PluginPrePublishPanel in @wordpress/editor package.\n */\nexport function PluginPrePublishPanel( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginPrePublishPanel' );\n\treturn <EditorPluginPrePublishPanel { ...props } />;\n}\n\n/**\n * @see PluginPostPublishPanel in @wordpress/editor package.\n */\nexport function PluginPostPublishPanel( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginPostPublishPanel' );\n\treturn <EditorPluginPostPublishPanel { ...props } />;\n}\n\n/**\n * @see PluginPostStatusInfo in @wordpress/editor package.\n */\nexport function PluginPostStatusInfo( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginPostStatusInfo' );\n\treturn <EditorPluginPostStatusInfo { ...props } />;\n}\n\n/**\n * @see PluginSidebar in @wordpress/editor package.\n */\nexport function PluginSidebar( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginSidebar' );\n\treturn <EditorPluginSidebar { ...props } />;\n}\n\n/**\n * @see PluginSidebarMoreMenuItem in @wordpress/editor package.\n */\nexport function PluginSidebarMoreMenuItem( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginSidebarMoreMenuItem' );\n\treturn <EditorPluginSidebarMoreMenuItem { ...props } />;\n}\n\n/**\n * @see PluginPostExcerpt in @wordpress/editor package.\n */\nexport function __experimentalPluginPostExcerpt() {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecated( 'wp.editPost.__experimentalPluginPostExcerpt', {\n\t\tsince: '6.6',\n\t\thint: 'Core and custom panels can be access programmatically using their panel name.',\n\t\tlink: 'https://developer.wordpress.org/block-editor/reference-guides/slotfills/plugin-document-setting-panel/#accessing-a-panel-programmatically',\n\t} );\n\treturn PluginPostExcerpt;\n}\n\n/* eslint-enable jsdoc/require-param */\n"],"mappings":"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","ignoreList":[]}
@@ -12,7 +12,7 @@ var _privateApis = require("@wordpress/private-apis");
12
12
  const {
13
13
  lock,
14
14
  unlock
15
- } = (0, _privateApis.__dangerousOptInToUnstableAPIsOnlyForCoreModules)('I know using unstable features means my theme or plugin will inevitably break in the next version of WordPress.', '@wordpress/edit-post');
15
+ } = (0, _privateApis.__dangerousOptInToUnstableAPIsOnlyForCoreModules)('I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.', '@wordpress/edit-post');
16
16
  exports.unlock = unlock;
17
17
  exports.lock = lock;
18
18
  //# sourceMappingURL=lock-unlock.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_privateApis","require","lock","unlock","__dangerousOptInToUnstableAPIsOnlyForCoreModules","exports"],"sources":["@wordpress/edit-post/src/lock-unlock.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { __dangerousOptInToUnstableAPIsOnlyForCoreModules } from '@wordpress/private-apis';\n\nexport const { lock, unlock } =\n\t__dangerousOptInToUnstableAPIsOnlyForCoreModules(\n\t\t'I know using unstable features means my theme or plugin will inevitably break in the next version of WordPress.',\n\t\t'@wordpress/edit-post'\n\t);\n"],"mappings":";;;;;;AAGA,IAAAA,YAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGO,MAAM;EAAEC,IAAI;EAAEC;AAAO,CAAC,GAC5B,IAAAC,6DAAgD,EAC/C,iHAAiH,EACjH,sBACD,CAAC;AAACC,OAAA,CAAAF,MAAA,GAAAA,MAAA;AAAAE,OAAA,CAAAH,IAAA,GAAAA,IAAA","ignoreList":[]}
1
+ {"version":3,"names":["_privateApis","require","lock","unlock","__dangerousOptInToUnstableAPIsOnlyForCoreModules","exports"],"sources":["@wordpress/edit-post/src/lock-unlock.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { __dangerousOptInToUnstableAPIsOnlyForCoreModules } from '@wordpress/private-apis';\n\nexport const { lock, unlock } =\n\t__dangerousOptInToUnstableAPIsOnlyForCoreModules(\n\t\t'I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.',\n\t\t'@wordpress/edit-post'\n\t);\n"],"mappings":";;;;;;AAGA,IAAAA,YAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGO,MAAM;EAAEC,IAAI;EAAEC;AAAO,CAAC,GAC5B,IAAAC,6DAAgD,EAC/C,+HAA+H,EAC/H,sBACD,CAAC;AAACC,OAAA,CAAAF,MAAA,GAAAA,MAAA;AAAAE,OAAA,CAAAH,IAAA,GAAAA,IAAA","ignoreList":[]}
@@ -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":[]}
@@ -2,6 +2,7 @@
2
2
  * WordPress dependencies
3
3
  */
4
4
  import { privateApis as editorPrivateApis, PluginBlockSettingsMenuItem as EditorPluginBlockSettingsMenuItem, PluginDocumentSettingPanel as EditorPluginDocumentSettingPanel, PluginMoreMenuItem as EditorPluginMoreMenuItem, PluginPrePublishPanel as EditorPluginPrePublishPanel, PluginPostPublishPanel as EditorPluginPostPublishPanel, PluginPostStatusInfo as EditorPluginPostStatusInfo, PluginSidebar as EditorPluginSidebar, PluginSidebarMoreMenuItem as EditorPluginSidebarMoreMenuItem } from '@wordpress/editor';
5
+ import { getPath } from '@wordpress/url';
5
6
  import deprecated from '@wordpress/deprecated';
6
7
 
7
8
  /**
@@ -12,6 +13,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
12
13
  const {
13
14
  PluginPostExcerpt
14
15
  } = unlock(editorPrivateApis);
16
+ const isSiteEditor = getPath(window.location.href)?.includes('site-editor.php');
15
17
  const deprecateSlot = name => {
16
18
  deprecated(`wp.editPost.${name}`, {
17
19
  since: '6.6',
@@ -24,6 +26,9 @@ const deprecateSlot = name => {
24
26
  * @see PluginBlockSettingsMenuItem in @wordpress/editor package.
25
27
  */
26
28
  export function PluginBlockSettingsMenuItem(props) {
29
+ if (isSiteEditor) {
30
+ return null;
31
+ }
27
32
  deprecateSlot('PluginBlockSettingsMenuItem');
28
33
  return /*#__PURE__*/_jsx(EditorPluginBlockSettingsMenuItem, {
29
34
  ...props
@@ -34,6 +39,9 @@ export function PluginBlockSettingsMenuItem(props) {
34
39
  * @see PluginDocumentSettingPanel in @wordpress/editor package.
35
40
  */
36
41
  export function PluginDocumentSettingPanel(props) {
42
+ if (isSiteEditor) {
43
+ return null;
44
+ }
37
45
  deprecateSlot('PluginDocumentSettingPanel');
38
46
  return /*#__PURE__*/_jsx(EditorPluginDocumentSettingPanel, {
39
47
  ...props
@@ -44,6 +52,9 @@ export function PluginDocumentSettingPanel(props) {
44
52
  * @see PluginMoreMenuItem in @wordpress/editor package.
45
53
  */
46
54
  export function PluginMoreMenuItem(props) {
55
+ if (isSiteEditor) {
56
+ return null;
57
+ }
47
58
  deprecateSlot('PluginMoreMenuItem');
48
59
  return /*#__PURE__*/_jsx(EditorPluginMoreMenuItem, {
49
60
  ...props
@@ -54,6 +65,9 @@ export function PluginMoreMenuItem(props) {
54
65
  * @see PluginPrePublishPanel in @wordpress/editor package.
55
66
  */
56
67
  export function PluginPrePublishPanel(props) {
68
+ if (isSiteEditor) {
69
+ return null;
70
+ }
57
71
  deprecateSlot('PluginPrePublishPanel');
58
72
  return /*#__PURE__*/_jsx(EditorPluginPrePublishPanel, {
59
73
  ...props
@@ -64,6 +78,9 @@ export function PluginPrePublishPanel(props) {
64
78
  * @see PluginPostPublishPanel in @wordpress/editor package.
65
79
  */
66
80
  export function PluginPostPublishPanel(props) {
81
+ if (isSiteEditor) {
82
+ return null;
83
+ }
67
84
  deprecateSlot('PluginPostPublishPanel');
68
85
  return /*#__PURE__*/_jsx(EditorPluginPostPublishPanel, {
69
86
  ...props
@@ -74,6 +91,9 @@ export function PluginPostPublishPanel(props) {
74
91
  * @see PluginPostStatusInfo in @wordpress/editor package.
75
92
  */
76
93
  export function PluginPostStatusInfo(props) {
94
+ if (isSiteEditor) {
95
+ return null;
96
+ }
77
97
  deprecateSlot('PluginPostStatusInfo');
78
98
  return /*#__PURE__*/_jsx(EditorPluginPostStatusInfo, {
79
99
  ...props
@@ -84,6 +104,9 @@ export function PluginPostStatusInfo(props) {
84
104
  * @see PluginSidebar in @wordpress/editor package.
85
105
  */
86
106
  export function PluginSidebar(props) {
107
+ if (isSiteEditor) {
108
+ return null;
109
+ }
87
110
  deprecateSlot('PluginSidebar');
88
111
  return /*#__PURE__*/_jsx(EditorPluginSidebar, {
89
112
  ...props
@@ -94,6 +117,9 @@ export function PluginSidebar(props) {
94
117
  * @see PluginSidebarMoreMenuItem in @wordpress/editor package.
95
118
  */
96
119
  export function PluginSidebarMoreMenuItem(props) {
120
+ if (isSiteEditor) {
121
+ return null;
122
+ }
97
123
  deprecateSlot('PluginSidebarMoreMenuItem');
98
124
  return /*#__PURE__*/_jsx(EditorPluginSidebarMoreMenuItem, {
99
125
  ...props
@@ -104,6 +130,9 @@ export function PluginSidebarMoreMenuItem(props) {
104
130
  * @see PluginPostExcerpt in @wordpress/editor package.
105
131
  */
106
132
  export function __experimentalPluginPostExcerpt() {
133
+ if (isSiteEditor) {
134
+ return null;
135
+ }
107
136
  deprecated('wp.editPost.__experimentalPluginPostExcerpt', {
108
137
  since: '6.6',
109
138
  hint: 'Core and custom panels can be access programmatically using their panel name.',
@@ -1 +1 @@
1
- {"version":3,"names":["privateApis","editorPrivateApis","PluginBlockSettingsMenuItem","EditorPluginBlockSettingsMenuItem","PluginDocumentSettingPanel","EditorPluginDocumentSettingPanel","PluginMoreMenuItem","EditorPluginMoreMenuItem","PluginPrePublishPanel","EditorPluginPrePublishPanel","PluginPostPublishPanel","EditorPluginPostPublishPanel","PluginPostStatusInfo","EditorPluginPostStatusInfo","PluginSidebar","EditorPluginSidebar","PluginSidebarMoreMenuItem","EditorPluginSidebarMoreMenuItem","deprecated","unlock","jsx","_jsx","PluginPostExcerpt","deprecateSlot","name","since","alternative","props","__experimentalPluginPostExcerpt","hint","link"],"sources":["@wordpress/edit-post/src/deprecated.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport {\n\tprivateApis as editorPrivateApis,\n\tPluginBlockSettingsMenuItem as EditorPluginBlockSettingsMenuItem,\n\tPluginDocumentSettingPanel as EditorPluginDocumentSettingPanel,\n\tPluginMoreMenuItem as EditorPluginMoreMenuItem,\n\tPluginPrePublishPanel as EditorPluginPrePublishPanel,\n\tPluginPostPublishPanel as EditorPluginPostPublishPanel,\n\tPluginPostStatusInfo as EditorPluginPostStatusInfo,\n\tPluginSidebar as EditorPluginSidebar,\n\tPluginSidebarMoreMenuItem as EditorPluginSidebarMoreMenuItem,\n} from '@wordpress/editor';\nimport deprecated from '@wordpress/deprecated';\n\n/**\n * Internal dependencies\n */\nimport { unlock } from './lock-unlock';\nconst { PluginPostExcerpt } = unlock( editorPrivateApis );\n\nconst deprecateSlot = ( name ) => {\n\tdeprecated( `wp.editPost.${ name }`, {\n\t\tsince: '6.6',\n\t\talternative: `wp.editor.${ name }`,\n\t} );\n};\n\n/* eslint-disable jsdoc/require-param */\n/**\n * @see PluginBlockSettingsMenuItem in @wordpress/editor package.\n */\nexport function PluginBlockSettingsMenuItem( props ) {\n\tdeprecateSlot( 'PluginBlockSettingsMenuItem' );\n\treturn <EditorPluginBlockSettingsMenuItem { ...props } />;\n}\n\n/**\n * @see PluginDocumentSettingPanel in @wordpress/editor package.\n */\nexport function PluginDocumentSettingPanel( props ) {\n\tdeprecateSlot( 'PluginDocumentSettingPanel' );\n\treturn <EditorPluginDocumentSettingPanel { ...props } />;\n}\n\n/**\n * @see PluginMoreMenuItem in @wordpress/editor package.\n */\nexport function PluginMoreMenuItem( props ) {\n\tdeprecateSlot( 'PluginMoreMenuItem' );\n\treturn <EditorPluginMoreMenuItem { ...props } />;\n}\n\n/**\n * @see PluginPrePublishPanel in @wordpress/editor package.\n */\nexport function PluginPrePublishPanel( props ) {\n\tdeprecateSlot( 'PluginPrePublishPanel' );\n\treturn <EditorPluginPrePublishPanel { ...props } />;\n}\n\n/**\n * @see PluginPostPublishPanel in @wordpress/editor package.\n */\nexport function PluginPostPublishPanel( props ) {\n\tdeprecateSlot( 'PluginPostPublishPanel' );\n\treturn <EditorPluginPostPublishPanel { ...props } />;\n}\n\n/**\n * @see PluginPostStatusInfo in @wordpress/editor package.\n */\nexport function PluginPostStatusInfo( props ) {\n\tdeprecateSlot( 'PluginPostStatusInfo' );\n\treturn <EditorPluginPostStatusInfo { ...props } />;\n}\n\n/**\n * @see PluginSidebar in @wordpress/editor package.\n */\nexport function PluginSidebar( props ) {\n\tdeprecateSlot( 'PluginSidebar' );\n\treturn <EditorPluginSidebar { ...props } />;\n}\n\n/**\n * @see PluginSidebarMoreMenuItem in @wordpress/editor package.\n */\nexport function PluginSidebarMoreMenuItem( props ) {\n\tdeprecateSlot( 'PluginSidebarMoreMenuItem' );\n\treturn <EditorPluginSidebarMoreMenuItem { ...props } />;\n}\n\n/**\n * @see PluginPostExcerpt in @wordpress/editor package.\n */\nexport function __experimentalPluginPostExcerpt() {\n\tdeprecated( 'wp.editPost.__experimentalPluginPostExcerpt', {\n\t\tsince: '6.6',\n\t\thint: 'Core and custom panels can be access programmatically using their panel name.',\n\t\tlink: 'https://developer.wordpress.org/block-editor/reference-guides/slotfills/plugin-document-setting-panel/#accessing-a-panel-programmatically',\n\t} );\n\treturn PluginPostExcerpt;\n}\n\n/* eslint-enable jsdoc/require-param */\n"],"mappings":"AAAA;AACA;AACA;AACA,SACCA,WAAW,IAAIC,iBAAiB,EAChCC,2BAA2B,IAAIC,iCAAiC,EAChEC,0BAA0B,IAAIC,gCAAgC,EAC9DC,kBAAkB,IAAIC,wBAAwB,EAC9CC,qBAAqB,IAAIC,2BAA2B,EACpDC,sBAAsB,IAAIC,4BAA4B,EACtDC,oBAAoB,IAAIC,0BAA0B,EAClDC,aAAa,IAAIC,mBAAmB,EACpCC,yBAAyB,IAAIC,+BAA+B,QACtD,mBAAmB;AAC1B,OAAOC,UAAU,MAAM,uBAAuB;;AAE9C;AACA;AACA;AACA,SAASC,MAAM,QAAQ,eAAe;AAAC,SAAAC,GAAA,IAAAC,IAAA;AACvC,MAAM;EAAEC;AAAkB,CAAC,GAAGH,MAAM,CAAElB,iBAAkB,CAAC;AAEzD,MAAMsB,aAAa,GAAKC,IAAI,IAAM;EACjCN,UAAU,CAAG,eAAeM,IAAM,EAAC,EAAE;IACpCC,KAAK,EAAE,KAAK;IACZC,WAAW,EAAG,aAAaF,IAAM;EAClC,CAAE,CAAC;AACJ,CAAC;;AAED;AACA;AACA;AACA;AACA,OAAO,SAAStB,2BAA2BA,CAAEyB,KAAK,EAAG;EACpDJ,aAAa,CAAE,6BAA8B,CAAC;EAC9C,oBAAOF,IAAA,CAAClB,iCAAiC;IAAA,GAAMwB;EAAK,CAAI,CAAC;AAC1D;;AAEA;AACA;AACA;AACA,OAAO,SAASvB,0BAA0BA,CAAEuB,KAAK,EAAG;EACnDJ,aAAa,CAAE,4BAA6B,CAAC;EAC7C,oBAAOF,IAAA,CAAChB,gCAAgC;IAAA,GAAMsB;EAAK,CAAI,CAAC;AACzD;;AAEA;AACA;AACA;AACA,OAAO,SAASrB,kBAAkBA,CAAEqB,KAAK,EAAG;EAC3CJ,aAAa,CAAE,oBAAqB,CAAC;EACrC,oBAAOF,IAAA,CAACd,wBAAwB;IAAA,GAAMoB;EAAK,CAAI,CAAC;AACjD;;AAEA;AACA;AACA;AACA,OAAO,SAASnB,qBAAqBA,CAAEmB,KAAK,EAAG;EAC9CJ,aAAa,CAAE,uBAAwB,CAAC;EACxC,oBAAOF,IAAA,CAACZ,2BAA2B;IAAA,GAAMkB;EAAK,CAAI,CAAC;AACpD;;AAEA;AACA;AACA;AACA,OAAO,SAASjB,sBAAsBA,CAAEiB,KAAK,EAAG;EAC/CJ,aAAa,CAAE,wBAAyB,CAAC;EACzC,oBAAOF,IAAA,CAACV,4BAA4B;IAAA,GAAMgB;EAAK,CAAI,CAAC;AACrD;;AAEA;AACA;AACA;AACA,OAAO,SAASf,oBAAoBA,CAAEe,KAAK,EAAG;EAC7CJ,aAAa,CAAE,sBAAuB,CAAC;EACvC,oBAAOF,IAAA,CAACR,0BAA0B;IAAA,GAAMc;EAAK,CAAI,CAAC;AACnD;;AAEA;AACA;AACA;AACA,OAAO,SAASb,aAAaA,CAAEa,KAAK,EAAG;EACtCJ,aAAa,CAAE,eAAgB,CAAC;EAChC,oBAAOF,IAAA,CAACN,mBAAmB;IAAA,GAAMY;EAAK,CAAI,CAAC;AAC5C;;AAEA;AACA;AACA;AACA,OAAO,SAASX,yBAAyBA,CAAEW,KAAK,EAAG;EAClDJ,aAAa,CAAE,2BAA4B,CAAC;EAC5C,oBAAOF,IAAA,CAACJ,+BAA+B;IAAA,GAAMU;EAAK,CAAI,CAAC;AACxD;;AAEA;AACA;AACA;AACA,OAAO,SAASC,+BAA+BA,CAAA,EAAG;EACjDV,UAAU,CAAE,6CAA6C,EAAE;IAC1DO,KAAK,EAAE,KAAK;IACZI,IAAI,EAAE,+EAA+E;IACrFC,IAAI,EAAE;EACP,CAAE,CAAC;EACH,OAAOR,iBAAiB;AACzB;;AAEA","ignoreList":[]}
1
+ {"version":3,"names":["privateApis","editorPrivateApis","PluginBlockSettingsMenuItem","EditorPluginBlockSettingsMenuItem","PluginDocumentSettingPanel","EditorPluginDocumentSettingPanel","PluginMoreMenuItem","EditorPluginMoreMenuItem","PluginPrePublishPanel","EditorPluginPrePublishPanel","PluginPostPublishPanel","EditorPluginPostPublishPanel","PluginPostStatusInfo","EditorPluginPostStatusInfo","PluginSidebar","EditorPluginSidebar","PluginSidebarMoreMenuItem","EditorPluginSidebarMoreMenuItem","getPath","deprecated","unlock","jsx","_jsx","PluginPostExcerpt","isSiteEditor","window","location","href","includes","deprecateSlot","name","since","alternative","props","__experimentalPluginPostExcerpt","hint","link"],"sources":["@wordpress/edit-post/src/deprecated.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport {\n\tprivateApis as editorPrivateApis,\n\tPluginBlockSettingsMenuItem as EditorPluginBlockSettingsMenuItem,\n\tPluginDocumentSettingPanel as EditorPluginDocumentSettingPanel,\n\tPluginMoreMenuItem as EditorPluginMoreMenuItem,\n\tPluginPrePublishPanel as EditorPluginPrePublishPanel,\n\tPluginPostPublishPanel as EditorPluginPostPublishPanel,\n\tPluginPostStatusInfo as EditorPluginPostStatusInfo,\n\tPluginSidebar as EditorPluginSidebar,\n\tPluginSidebarMoreMenuItem as EditorPluginSidebarMoreMenuItem,\n} from '@wordpress/editor';\nimport { getPath } from '@wordpress/url';\nimport deprecated from '@wordpress/deprecated';\n\n/**\n * Internal dependencies\n */\nimport { unlock } from './lock-unlock';\nconst { PluginPostExcerpt } = unlock( editorPrivateApis );\n\nconst isSiteEditor = getPath( window.location.href )?.includes(\n\t'site-editor.php'\n);\n\nconst deprecateSlot = ( name ) => {\n\tdeprecated( `wp.editPost.${ name }`, {\n\t\tsince: '6.6',\n\t\talternative: `wp.editor.${ name }`,\n\t} );\n};\n\n/* eslint-disable jsdoc/require-param */\n/**\n * @see PluginBlockSettingsMenuItem in @wordpress/editor package.\n */\nexport function PluginBlockSettingsMenuItem( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginBlockSettingsMenuItem' );\n\treturn <EditorPluginBlockSettingsMenuItem { ...props } />;\n}\n\n/**\n * @see PluginDocumentSettingPanel in @wordpress/editor package.\n */\nexport function PluginDocumentSettingPanel( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginDocumentSettingPanel' );\n\treturn <EditorPluginDocumentSettingPanel { ...props } />;\n}\n\n/**\n * @see PluginMoreMenuItem in @wordpress/editor package.\n */\nexport function PluginMoreMenuItem( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginMoreMenuItem' );\n\treturn <EditorPluginMoreMenuItem { ...props } />;\n}\n\n/**\n * @see PluginPrePublishPanel in @wordpress/editor package.\n */\nexport function PluginPrePublishPanel( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginPrePublishPanel' );\n\treturn <EditorPluginPrePublishPanel { ...props } />;\n}\n\n/**\n * @see PluginPostPublishPanel in @wordpress/editor package.\n */\nexport function PluginPostPublishPanel( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginPostPublishPanel' );\n\treturn <EditorPluginPostPublishPanel { ...props } />;\n}\n\n/**\n * @see PluginPostStatusInfo in @wordpress/editor package.\n */\nexport function PluginPostStatusInfo( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginPostStatusInfo' );\n\treturn <EditorPluginPostStatusInfo { ...props } />;\n}\n\n/**\n * @see PluginSidebar in @wordpress/editor package.\n */\nexport function PluginSidebar( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginSidebar' );\n\treturn <EditorPluginSidebar { ...props } />;\n}\n\n/**\n * @see PluginSidebarMoreMenuItem in @wordpress/editor package.\n */\nexport function PluginSidebarMoreMenuItem( props ) {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecateSlot( 'PluginSidebarMoreMenuItem' );\n\treturn <EditorPluginSidebarMoreMenuItem { ...props } />;\n}\n\n/**\n * @see PluginPostExcerpt in @wordpress/editor package.\n */\nexport function __experimentalPluginPostExcerpt() {\n\tif ( isSiteEditor ) {\n\t\treturn null;\n\t}\n\tdeprecated( 'wp.editPost.__experimentalPluginPostExcerpt', {\n\t\tsince: '6.6',\n\t\thint: 'Core and custom panels can be access programmatically using their panel name.',\n\t\tlink: 'https://developer.wordpress.org/block-editor/reference-guides/slotfills/plugin-document-setting-panel/#accessing-a-panel-programmatically',\n\t} );\n\treturn PluginPostExcerpt;\n}\n\n/* eslint-enable jsdoc/require-param */\n"],"mappings":"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","ignoreList":[]}
@@ -5,5 +5,5 @@ import { __dangerousOptInToUnstableAPIsOnlyForCoreModules } from '@wordpress/pri
5
5
  export const {
6
6
  lock,
7
7
  unlock
8
- } = __dangerousOptInToUnstableAPIsOnlyForCoreModules('I know using unstable features means my theme or plugin will inevitably break in the next version of WordPress.', '@wordpress/edit-post');
8
+ } = __dangerousOptInToUnstableAPIsOnlyForCoreModules('I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.', '@wordpress/edit-post');
9
9
  //# sourceMappingURL=lock-unlock.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["__dangerousOptInToUnstableAPIsOnlyForCoreModules","lock","unlock"],"sources":["@wordpress/edit-post/src/lock-unlock.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { __dangerousOptInToUnstableAPIsOnlyForCoreModules } from '@wordpress/private-apis';\n\nexport const { lock, unlock } =\n\t__dangerousOptInToUnstableAPIsOnlyForCoreModules(\n\t\t'I know using unstable features means my theme or plugin will inevitably break in the next version of WordPress.',\n\t\t'@wordpress/edit-post'\n\t);\n"],"mappings":"AAAA;AACA;AACA;AACA,SAASA,gDAAgD,QAAQ,yBAAyB;AAE1F,OAAO,MAAM;EAAEC,IAAI;EAAEC;AAAO,CAAC,GAC5BF,gDAAgD,CAC/C,iHAAiH,EACjH,sBACD,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["__dangerousOptInToUnstableAPIsOnlyForCoreModules","lock","unlock"],"sources":["@wordpress/edit-post/src/lock-unlock.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { __dangerousOptInToUnstableAPIsOnlyForCoreModules } from '@wordpress/private-apis';\n\nexport const { lock, unlock } =\n\t__dangerousOptInToUnstableAPIsOnlyForCoreModules(\n\t\t'I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.',\n\t\t'@wordpress/edit-post'\n\t);\n"],"mappings":"AAAA;AACA;AACA;AACA,SAASA,gDAAgD,QAAQ,yBAAyB;AAE1F,OAAO,MAAM;EAAEC,IAAI;EAAEC;AAAO,CAAC,GAC5BF,gDAAgD,CAC/C,+HAA+H,EAC/H,sBACD,CAAC","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":"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","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.1.0",
3
+ "version": "8.2.0",
4
4
  "description": "Edit Post module for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -28,35 +28,35 @@
28
28
  "react-native": "src/index",
29
29
  "dependencies": {
30
30
  "@babel/runtime": "^7.16.0",
31
- "@wordpress/a11y": "^4.1.0",
32
- "@wordpress/api-fetch": "^7.1.0",
33
- "@wordpress/block-editor": "^13.1.0",
34
- "@wordpress/block-library": "^9.1.0",
35
- "@wordpress/blocks": "^13.1.0",
36
- "@wordpress/commands": "^1.1.0",
37
- "@wordpress/components": "^28.1.0",
38
- "@wordpress/compose": "^7.1.0",
39
- "@wordpress/core-commands": "^1.1.0",
40
- "@wordpress/core-data": "^7.1.0",
41
- "@wordpress/data": "^10.1.0",
42
- "@wordpress/deprecated": "^4.1.0",
43
- "@wordpress/dom": "^4.1.0",
44
- "@wordpress/editor": "^14.1.0",
45
- "@wordpress/element": "^6.1.0",
46
- "@wordpress/hooks": "^4.1.0",
47
- "@wordpress/html-entities": "^4.1.0",
48
- "@wordpress/i18n": "^5.1.0",
49
- "@wordpress/icons": "^10.1.0",
50
- "@wordpress/keyboard-shortcuts": "^5.1.0",
51
- "@wordpress/keycodes": "^4.1.0",
52
- "@wordpress/notices": "^5.1.0",
53
- "@wordpress/plugins": "^7.1.0",
54
- "@wordpress/preferences": "^4.1.0",
55
- "@wordpress/private-apis": "^1.1.0",
56
- "@wordpress/url": "^4.1.0",
57
- "@wordpress/viewport": "^6.1.0",
58
- "@wordpress/warning": "^3.1.0",
59
- "@wordpress/widgets": "^4.1.0",
31
+ "@wordpress/a11y": "^4.2.0",
32
+ "@wordpress/api-fetch": "^7.2.0",
33
+ "@wordpress/block-editor": "^13.2.0",
34
+ "@wordpress/block-library": "^9.2.0",
35
+ "@wordpress/blocks": "^13.2.0",
36
+ "@wordpress/commands": "^1.2.0",
37
+ "@wordpress/components": "^28.2.0",
38
+ "@wordpress/compose": "^7.2.0",
39
+ "@wordpress/core-commands": "^1.2.0",
40
+ "@wordpress/core-data": "^7.2.0",
41
+ "@wordpress/data": "^10.2.0",
42
+ "@wordpress/deprecated": "^4.2.0",
43
+ "@wordpress/dom": "^4.2.0",
44
+ "@wordpress/editor": "^14.2.0",
45
+ "@wordpress/element": "^6.2.0",
46
+ "@wordpress/hooks": "^4.2.0",
47
+ "@wordpress/html-entities": "^4.2.0",
48
+ "@wordpress/i18n": "^5.2.0",
49
+ "@wordpress/icons": "^10.2.0",
50
+ "@wordpress/keyboard-shortcuts": "^5.2.0",
51
+ "@wordpress/keycodes": "^4.2.0",
52
+ "@wordpress/notices": "^5.2.0",
53
+ "@wordpress/plugins": "^7.2.0",
54
+ "@wordpress/preferences": "^4.2.0",
55
+ "@wordpress/private-apis": "^1.2.0",
56
+ "@wordpress/url": "^4.2.0",
57
+ "@wordpress/viewport": "^6.2.0",
58
+ "@wordpress/warning": "^3.2.0",
59
+ "@wordpress/widgets": "^4.2.0",
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": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
70
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
71
71
  }
package/src/deprecated.js CHANGED
@@ -12,6 +12,7 @@ import {
12
12
  PluginSidebar as EditorPluginSidebar,
13
13
  PluginSidebarMoreMenuItem as EditorPluginSidebarMoreMenuItem,
14
14
  } from '@wordpress/editor';
15
+ import { getPath } from '@wordpress/url';
15
16
  import deprecated from '@wordpress/deprecated';
16
17
 
17
18
  /**
@@ -20,6 +21,10 @@ import deprecated from '@wordpress/deprecated';
20
21
  import { unlock } from './lock-unlock';
21
22
  const { PluginPostExcerpt } = unlock( editorPrivateApis );
22
23
 
24
+ const isSiteEditor = getPath( window.location.href )?.includes(
25
+ 'site-editor.php'
26
+ );
27
+
23
28
  const deprecateSlot = ( name ) => {
24
29
  deprecated( `wp.editPost.${ name }`, {
25
30
  since: '6.6',
@@ -32,6 +37,9 @@ const deprecateSlot = ( name ) => {
32
37
  * @see PluginBlockSettingsMenuItem in @wordpress/editor package.
33
38
  */
34
39
  export function PluginBlockSettingsMenuItem( props ) {
40
+ if ( isSiteEditor ) {
41
+ return null;
42
+ }
35
43
  deprecateSlot( 'PluginBlockSettingsMenuItem' );
36
44
  return <EditorPluginBlockSettingsMenuItem { ...props } />;
37
45
  }
@@ -40,6 +48,9 @@ export function PluginBlockSettingsMenuItem( props ) {
40
48
  * @see PluginDocumentSettingPanel in @wordpress/editor package.
41
49
  */
42
50
  export function PluginDocumentSettingPanel( props ) {
51
+ if ( isSiteEditor ) {
52
+ return null;
53
+ }
43
54
  deprecateSlot( 'PluginDocumentSettingPanel' );
44
55
  return <EditorPluginDocumentSettingPanel { ...props } />;
45
56
  }
@@ -48,6 +59,9 @@ export function PluginDocumentSettingPanel( props ) {
48
59
  * @see PluginMoreMenuItem in @wordpress/editor package.
49
60
  */
50
61
  export function PluginMoreMenuItem( props ) {
62
+ if ( isSiteEditor ) {
63
+ return null;
64
+ }
51
65
  deprecateSlot( 'PluginMoreMenuItem' );
52
66
  return <EditorPluginMoreMenuItem { ...props } />;
53
67
  }
@@ -56,6 +70,9 @@ export function PluginMoreMenuItem( props ) {
56
70
  * @see PluginPrePublishPanel in @wordpress/editor package.
57
71
  */
58
72
  export function PluginPrePublishPanel( props ) {
73
+ if ( isSiteEditor ) {
74
+ return null;
75
+ }
59
76
  deprecateSlot( 'PluginPrePublishPanel' );
60
77
  return <EditorPluginPrePublishPanel { ...props } />;
61
78
  }
@@ -64,6 +81,9 @@ export function PluginPrePublishPanel( props ) {
64
81
  * @see PluginPostPublishPanel in @wordpress/editor package.
65
82
  */
66
83
  export function PluginPostPublishPanel( props ) {
84
+ if ( isSiteEditor ) {
85
+ return null;
86
+ }
67
87
  deprecateSlot( 'PluginPostPublishPanel' );
68
88
  return <EditorPluginPostPublishPanel { ...props } />;
69
89
  }
@@ -72,6 +92,9 @@ export function PluginPostPublishPanel( props ) {
72
92
  * @see PluginPostStatusInfo in @wordpress/editor package.
73
93
  */
74
94
  export function PluginPostStatusInfo( props ) {
95
+ if ( isSiteEditor ) {
96
+ return null;
97
+ }
75
98
  deprecateSlot( 'PluginPostStatusInfo' );
76
99
  return <EditorPluginPostStatusInfo { ...props } />;
77
100
  }
@@ -80,6 +103,9 @@ export function PluginPostStatusInfo( props ) {
80
103
  * @see PluginSidebar in @wordpress/editor package.
81
104
  */
82
105
  export function PluginSidebar( props ) {
106
+ if ( isSiteEditor ) {
107
+ return null;
108
+ }
83
109
  deprecateSlot( 'PluginSidebar' );
84
110
  return <EditorPluginSidebar { ...props } />;
85
111
  }
@@ -88,6 +114,9 @@ export function PluginSidebar( props ) {
88
114
  * @see PluginSidebarMoreMenuItem in @wordpress/editor package.
89
115
  */
90
116
  export function PluginSidebarMoreMenuItem( props ) {
117
+ if ( isSiteEditor ) {
118
+ return null;
119
+ }
91
120
  deprecateSlot( 'PluginSidebarMoreMenuItem' );
92
121
  return <EditorPluginSidebarMoreMenuItem { ...props } />;
93
122
  }
@@ -96,6 +125,9 @@ export function PluginSidebarMoreMenuItem( props ) {
96
125
  * @see PluginPostExcerpt in @wordpress/editor package.
97
126
  */
98
127
  export function __experimentalPluginPostExcerpt() {
128
+ if ( isSiteEditor ) {
129
+ return null;
130
+ }
99
131
  deprecated( 'wp.editPost.__experimentalPluginPostExcerpt', {
100
132
  since: '6.6',
101
133
  hint: 'Core and custom panels can be access programmatically using their panel name.',
@@ -5,6 +5,6 @@ import { __dangerousOptInToUnstableAPIsOnlyForCoreModules } from '@wordpress/pri
5
5
 
6
6
  export const { lock, unlock } =
7
7
  __dangerousOptInToUnstableAPIsOnlyForCoreModules(
8
- 'I know using unstable features means my theme or plugin will inevitably break in the next version of WordPress.',
8
+ 'I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.',
9
9
  '@wordpress/edit-post'
10
10
  );
@@ -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,