@wordpress/edit-post 6.2.0 → 6.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/build/components/sidebar/post-link/index.js +1 -1
- package/build/components/sidebar/post-link/index.js.map +1 -1
- package/build/components/visual-editor/index.js +3 -3
- package/build/components/visual-editor/index.js.map +1 -1
- package/build/editor.js +3 -2
- package/build/editor.js.map +1 -1
- package/build/index.js +3 -0
- package/build/index.js.map +1 -1
- package/build/index.native.js +3 -0
- package/build/index.native.js.map +1 -1
- package/build/store/actions.js +76 -49
- package/build/store/actions.js.map +1 -1
- package/build/store/index.js +7 -10
- package/build/store/index.js.map +1 -1
- package/build/store/reducer.js +0 -80
- package/build/store/reducer.js.map +1 -1
- package/build/store/selectors.js +86 -25
- package/build/store/selectors.js.map +1 -1
- package/build-module/components/sidebar/post-link/index.js +1 -1
- package/build-module/components/sidebar/post-link/index.js.map +1 -1
- package/build-module/components/visual-editor/index.js +3 -3
- package/build-module/components/visual-editor/index.js.map +1 -1
- package/build-module/editor.js +2 -2
- package/build-module/editor.js.map +1 -1
- package/build-module/index.js +3 -0
- package/build-module/index.js.map +1 -1
- package/build-module/index.native.js +3 -0
- package/build-module/index.native.js.map +1 -1
- package/build-module/store/actions.js +71 -45
- package/build-module/store/actions.js.map +1 -1
- package/build-module/store/index.js +7 -10
- package/build-module/store/index.js.map +1 -1
- package/build-module/store/reducer.js +1 -77
- package/build-module/store/reducer.js.map +1 -1
- package/build-module/store/selectors.js +82 -23
- package/build-module/store/selectors.js.map +1 -1
- package/build-style/style-rtl.css +0 -3
- package/build-style/style.css +0 -3
- package/package.json +27 -26
- package/src/components/sidebar/post-link/index.js +1 -1
- package/src/components/visual-editor/index.js +5 -3
- package/src/editor.js +3 -2
- package/src/index.js +3 -0
- package/src/index.native.js +3 -0
- package/src/store/actions.js +47 -15
- package/src/store/index.js +7 -11
- package/src/store/reducer.js +1 -74
- package/src/store/selectors.js +121 -51
- package/src/store/test/actions.js +30 -33
- package/src/store/test/reducer.js +0 -126
- package/src/store/test/selectors.js +0 -155
- package/src/style.scss +0 -4
- package/build/store/defaults.js +0 -15
- package/build/store/defaults.js.map +0 -1
- package/build-module/store/defaults.js +0 -8
- package/build-module/store/defaults.js.map +0 -1
- package/src/store/defaults.js +0 -7
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* External dependencies
|
|
3
3
|
*/
|
|
4
4
|
import createSelector from 'rememo';
|
|
5
|
-
import {
|
|
5
|
+
import { includes, some, flatten, values } from 'lodash';
|
|
6
6
|
/**
|
|
7
7
|
* WordPress dependencies
|
|
8
8
|
*/
|
|
@@ -12,7 +12,9 @@ import { store as interfaceStore } from '@wordpress/interface';
|
|
|
12
12
|
import { store as preferencesStore } from '@wordpress/preferences';
|
|
13
13
|
import { store as coreStore } from '@wordpress/core-data';
|
|
14
14
|
import { store as editorStore } from '@wordpress/editor';
|
|
15
|
+
import deprecated from '@wordpress/deprecated';
|
|
15
16
|
const EMPTY_ARRAY = [];
|
|
17
|
+
const EMPTY_OBJECT = {};
|
|
16
18
|
/**
|
|
17
19
|
* Returns the current editing mode.
|
|
18
20
|
*
|
|
@@ -67,10 +69,53 @@ export const isPluginSidebarOpened = createRegistrySelector(select => () => {
|
|
|
67
69
|
|
|
68
70
|
export const getActiveGeneralSidebarName = createRegistrySelector(select => () => {
|
|
69
71
|
return select(interfaceStore).getActiveComplementaryArea('core/edit-post');
|
|
70
|
-
});
|
|
71
|
-
|
|
72
|
+
});
|
|
73
|
+
/**
|
|
74
|
+
* Converts panels from the new preferences store format to the old format
|
|
75
|
+
* that the post editor previously used.
|
|
76
|
+
*
|
|
77
|
+
* The resultant converted data should look like this:
|
|
78
|
+
* {
|
|
79
|
+
* panelName: {
|
|
80
|
+
* enabled: false,
|
|
81
|
+
* opened: true,
|
|
82
|
+
* },
|
|
83
|
+
* anotherPanelName: {
|
|
84
|
+
* opened: true
|
|
85
|
+
* },
|
|
86
|
+
* }
|
|
87
|
+
*
|
|
88
|
+
* @param {string[] | undefined} inactivePanels An array of inactive panel names.
|
|
89
|
+
* @param {string[] | undefined} openPanels An array of open panel names.
|
|
90
|
+
*
|
|
91
|
+
* @return {Object} The converted panel data.
|
|
92
|
+
*/
|
|
93
|
+
|
|
94
|
+
function convertPanelsToOldFormat(inactivePanels, openPanels) {
|
|
95
|
+
var _ref;
|
|
96
|
+
|
|
97
|
+
// First reduce the inactive panels.
|
|
98
|
+
const panelsWithEnabledState = inactivePanels === null || inactivePanels === void 0 ? void 0 : inactivePanels.reduce((accumulatedPanels, panelName) => ({ ...accumulatedPanels,
|
|
99
|
+
[panelName]: {
|
|
100
|
+
enabled: false
|
|
101
|
+
}
|
|
102
|
+
}), {}); // Then reduce the open panels, passing in the result of the previous
|
|
103
|
+
// reduction as the initial value so that both open and inactive
|
|
104
|
+
// panel state is combined.
|
|
105
|
+
|
|
106
|
+
const panels = openPanels === null || openPanels === void 0 ? void 0 : openPanels.reduce((accumulatedPanels, panelName) => {
|
|
107
|
+
const currentPanelState = accumulatedPanels === null || accumulatedPanels === void 0 ? void 0 : accumulatedPanels[panelName];
|
|
108
|
+
return { ...accumulatedPanels,
|
|
109
|
+
[panelName]: { ...currentPanelState,
|
|
110
|
+
opened: true
|
|
111
|
+
}
|
|
112
|
+
};
|
|
113
|
+
}, panelsWithEnabledState !== null && panelsWithEnabledState !== void 0 ? panelsWithEnabledState : {}); // The panels variable will only be set if openPanels wasn't `undefined`.
|
|
114
|
+
// If it isn't set just return `panelsWithEnabledState`, and if that isn't
|
|
115
|
+
// set return an empty object.
|
|
72
116
|
|
|
73
|
-
|
|
117
|
+
return (_ref = panels !== null && panels !== void 0 ? panels : panelsWithEnabledState) !== null && _ref !== void 0 ? _ref : EMPTY_OBJECT;
|
|
118
|
+
}
|
|
74
119
|
/**
|
|
75
120
|
* Returns the preferences (these preferences are persisted locally).
|
|
76
121
|
*
|
|
@@ -79,19 +124,30 @@ const MIGRATED_KEYS = ['hiddenBlockTypes', 'editorMode', 'preferredStyleVariatio
|
|
|
79
124
|
* @return {Object} Preferences Object.
|
|
80
125
|
*/
|
|
81
126
|
|
|
82
|
-
|
|
83
|
-
|
|
127
|
+
|
|
128
|
+
export const getPreferences = createRegistrySelector(select => () => {
|
|
129
|
+
deprecated(`wp.data.select( 'core/edit-post' ).getPreferences`, {
|
|
130
|
+
since: '6.0',
|
|
131
|
+
alternative: `wp.data.select( 'core/preferences' ).get`
|
|
132
|
+
}); // These preferences now exist in the preferences store.
|
|
84
133
|
// Fetch them so that they can be merged into the post
|
|
85
134
|
// editor preferences.
|
|
86
135
|
|
|
87
|
-
const
|
|
136
|
+
const preferences = ['hiddenBlockTypes', 'editorMode', 'preferredStyleVariations'].reduce((accumulatedPrefs, preferenceKey) => {
|
|
88
137
|
const value = select(preferencesStore).get('core/edit-post', preferenceKey);
|
|
89
138
|
return { ...accumulatedPrefs,
|
|
90
139
|
[preferenceKey]: value
|
|
91
140
|
};
|
|
92
|
-
}, {});
|
|
93
|
-
|
|
94
|
-
|
|
141
|
+
}, {}); // Panels were a preference, but the data structure changed when the state
|
|
142
|
+
// was migrated to the preferences store. They need to be converted from
|
|
143
|
+
// the new preferences store format to old format to ensure no breaking
|
|
144
|
+
// changes for plugins.
|
|
145
|
+
|
|
146
|
+
const inactivePanels = select(preferencesStore).get('core/edit-post', 'inactivePanels');
|
|
147
|
+
const openPanels = select(preferencesStore).get('core/edit-post', 'openPanels');
|
|
148
|
+
const panels = convertPanelsToOldFormat(inactivePanels, openPanels);
|
|
149
|
+
return { ...preferences,
|
|
150
|
+
panels
|
|
95
151
|
};
|
|
96
152
|
});
|
|
97
153
|
/**
|
|
@@ -104,9 +160,12 @@ export const getPreferences = createRegistrySelector(select => state => {
|
|
|
104
160
|
*/
|
|
105
161
|
|
|
106
162
|
export function getPreference(state, preferenceKey, defaultValue) {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
163
|
+
deprecated(`wp.data.select( 'core/edit-post' ).getPreference`, {
|
|
164
|
+
since: '6.0',
|
|
165
|
+
alternative: `wp.data.select( 'core/preferences' ).get`
|
|
166
|
+
}); // Avoid using the `getPreferences` registry selector where possible.
|
|
167
|
+
|
|
168
|
+
const preferences = getPreferences(state);
|
|
110
169
|
const value = preferences[preferenceKey];
|
|
111
170
|
return value === undefined ? defaultValue : value;
|
|
112
171
|
}
|
|
@@ -155,10 +214,10 @@ export function isEditorPanelRemoved(state, panelName) {
|
|
|
155
214
|
* @return {boolean} Whether or not the panel is enabled.
|
|
156
215
|
*/
|
|
157
216
|
|
|
158
|
-
export
|
|
159
|
-
const
|
|
160
|
-
return !isEditorPanelRemoved(state, panelName) &&
|
|
161
|
-
}
|
|
217
|
+
export const isEditorPanelEnabled = createRegistrySelector(select => (state, panelName) => {
|
|
218
|
+
const inactivePanels = select(preferencesStore).get('core/edit-post', 'inactivePanels');
|
|
219
|
+
return !isEditorPanelRemoved(state, panelName) && !(inactivePanels !== null && inactivePanels !== void 0 && inactivePanels.includes(panelName));
|
|
220
|
+
});
|
|
162
221
|
/**
|
|
163
222
|
* Returns true if the given panel is open, or false otherwise. Panels are
|
|
164
223
|
* closed by default.
|
|
@@ -169,10 +228,10 @@ export function isEditorPanelEnabled(state, panelName) {
|
|
|
169
228
|
* @return {boolean} Whether or not the panel is open.
|
|
170
229
|
*/
|
|
171
230
|
|
|
172
|
-
export
|
|
173
|
-
const
|
|
174
|
-
return
|
|
175
|
-
}
|
|
231
|
+
export const isEditorPanelOpened = createRegistrySelector(select => (state, panelName) => {
|
|
232
|
+
const openPanels = select(preferencesStore).get('core/edit-post', 'openPanels');
|
|
233
|
+
return !!(openPanels !== null && openPanels !== void 0 && openPanels.includes(panelName));
|
|
234
|
+
});
|
|
176
235
|
/**
|
|
177
236
|
* Returns true if a modal is active, or false otherwise.
|
|
178
237
|
*
|
|
@@ -231,10 +290,10 @@ export const getActiveMetaBoxLocations = createSelector(state => {
|
|
|
231
290
|
*/
|
|
232
291
|
|
|
233
292
|
export function isMetaBoxLocationVisible(state, location) {
|
|
234
|
-
return isMetaBoxLocationActive(state, location) && some(getMetaBoxesPerLocation(state, location),
|
|
293
|
+
return isMetaBoxLocationActive(state, location) && some(getMetaBoxesPerLocation(state, location), _ref2 => {
|
|
235
294
|
let {
|
|
236
295
|
id
|
|
237
|
-
} =
|
|
296
|
+
} = _ref2;
|
|
238
297
|
return isEditorPanelEnabled(state, `meta-box-${id}`);
|
|
239
298
|
});
|
|
240
299
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["@wordpress/edit-post/src/store/selectors.js"],"names":["createSelector","get","includes","some","flatten","values","createRegistrySelector","store","interfaceStore","preferencesStore","coreStore","editorStore","EMPTY_ARRAY","getEditorMode","select","isEditorSidebarOpened","activeGeneralSidebar","getActiveComplementaryArea","isPluginSidebarOpened","getActiveGeneralSidebarName","MIGRATED_KEYS","getPreferences","state","editPostPreferences","preferences","preferenceStorePreferences","reduce","accumulatedPrefs","preferenceKey","value","getPreference","defaultValue","isMigratedKey","undefined","getHiddenBlockTypes","isPublishSidebarOpened","publishSidebarActive","isEditorPanelRemoved","panelName","removedPanels","isEditorPanelEnabled","panels","isEditorPanelOpened","isModalActive","modalName","activeModal","isFeatureActive","feature","isPluginItemPinned","pluginName","isItemPinned","getActiveMetaBoxLocations","Object","keys","metaBoxes","locations","filter","location","isMetaBoxLocationActive","isMetaBoxLocationVisible","getMetaBoxesPerLocation","id","length","getAllMetaBoxes","hasMetaBoxes","isSavingMetaBoxes","isSaving","__experimentalGetPreviewDeviceType","deviceType","isInserterOpened","blockInserterPanel","__experimentalGetInsertionPoint","rootClientId","insertionIndex","filterValue","isListViewOpened","listViewPanel","isEditingTemplate","areMetaBoxesInitialized","initialized","getEditedPostTemplate","currentTemplate","getEditedPostAttribute","templateWithSameSlug","getEntityRecords","per_page","find","template","slug","getEditedEntityRecord","post","getCurrentPost","link","__experimentalGetTemplateForLink"],"mappings":"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","sourcesContent":["/**\n * External dependencies\n */\nimport createSelector from 'rememo';\nimport { get, includes, some, flatten, values } from 'lodash';\n\n/**\n * WordPress dependencies\n */\nimport { createRegistrySelector } from '@wordpress/data';\nimport { store as interfaceStore } from '@wordpress/interface';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { store as editorStore } from '@wordpress/editor';\n\nconst EMPTY_ARRAY = [];\n\n/**\n * Returns the current editing mode.\n *\n * @param {Object} state Global application state.\n *\n * @return {string} Editing mode.\n */\nexport const getEditorMode = createRegistrySelector( ( select ) => () =>\n\tselect( preferencesStore ).get( 'core/edit-post', 'editorMode' ) ?? 'visual'\n);\n\n/**\n * Returns true if the editor sidebar is opened.\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether the editor sidebar is opened.\n */\nexport const isEditorSidebarOpened = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst activeGeneralSidebar = select(\n\t\t\tinterfaceStore\n\t\t).getActiveComplementaryArea( 'core/edit-post' );\n\t\treturn includes(\n\t\t\t[ 'edit-post/document', 'edit-post/block' ],\n\t\t\tactiveGeneralSidebar\n\t\t);\n\t}\n);\n\n/**\n * Returns true if the plugin sidebar is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the plugin sidebar is opened.\n */\nexport const isPluginSidebarOpened = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst activeGeneralSidebar = select(\n\t\t\tinterfaceStore\n\t\t).getActiveComplementaryArea( 'core/edit-post' );\n\t\treturn (\n\t\t\t!! activeGeneralSidebar &&\n\t\t\t! includes(\n\t\t\t\t[ 'edit-post/document', 'edit-post/block' ],\n\t\t\t\tactiveGeneralSidebar\n\t\t\t)\n\t\t);\n\t}\n);\n\n/**\n * Returns the current active general sidebar name, or null if there is no\n * general sidebar active. The active general sidebar is a unique name to\n * identify either an editor or plugin sidebar.\n *\n * Examples:\n *\n * - `edit-post/document`\n * - `my-plugin/insert-image-sidebar`\n *\n * @param {Object} state Global application state.\n *\n * @return {?string} Active general sidebar name.\n */\nexport const getActiveGeneralSidebarName = createRegistrySelector(\n\t( select ) => () => {\n\t\treturn select( interfaceStore ).getActiveComplementaryArea(\n\t\t\t'core/edit-post'\n\t\t);\n\t}\n);\n\n// The current list of preference keys that have been migrated to the\n// preferences package.\nconst MIGRATED_KEYS = [\n\t'hiddenBlockTypes',\n\t'editorMode',\n\t'preferredStyleVariations',\n];\n\n/**\n * Returns the preferences (these preferences are persisted locally).\n *\n * @param {Object} state Global application state.\n *\n * @return {Object} Preferences Object.\n */\nexport const getPreferences = createRegistrySelector(\n\t( select ) => ( state ) => {\n\t\tconst editPostPreferences = state.preferences;\n\n\t\t// Some preferences now exist in the preferences store.\n\t\t// Fetch them so that they can be merged into the post\n\t\t// editor preferences.\n\t\tconst preferenceStorePreferences = MIGRATED_KEYS.reduce(\n\t\t\t( accumulatedPrefs, preferenceKey ) => {\n\t\t\t\tconst value = select( preferencesStore ).get(\n\t\t\t\t\t'core/edit-post',\n\t\t\t\t\tpreferenceKey\n\t\t\t\t);\n\n\t\t\t\treturn {\n\t\t\t\t\t...accumulatedPrefs,\n\t\t\t\t\t[ preferenceKey ]: value,\n\t\t\t\t};\n\t\t\t},\n\t\t\t{}\n\t\t);\n\n\t\treturn {\n\t\t\t...editPostPreferences,\n\t\t\t...preferenceStorePreferences,\n\t\t};\n\t}\n);\n\n/**\n *\n * @param {Object} state Global application state.\n * @param {string} preferenceKey Preference Key.\n * @param {*} defaultValue Default Value.\n *\n * @return {*} Preference Value.\n */\nexport function getPreference( state, preferenceKey, defaultValue ) {\n\t// Avoid using the `getPreferences` registry selector where possible.\n\tconst isMigratedKey = MIGRATED_KEYS.includes( preferenceKey );\n\tconst preferences = isMigratedKey\n\t\t? getPreferences( state )\n\t\t: state.preferences;\n\tconst value = preferences[ preferenceKey ];\n\treturn value === undefined ? defaultValue : value;\n}\n\n/**\n * Returns an array of blocks that are hidden.\n *\n * @return {Array} A list of the hidden block types\n */\nexport const getHiddenBlockTypes = createRegistrySelector( ( select ) => () => {\n\treturn (\n\t\tselect( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\t'hiddenBlockTypes'\n\t\t) ?? EMPTY_ARRAY\n\t);\n} );\n\n/**\n * Returns true if the publish sidebar is opened.\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether the publish sidebar is open.\n */\nexport function isPublishSidebarOpened( state ) {\n\treturn state.publishSidebarActive;\n}\n\n/**\n * Returns true if the given panel was programmatically removed, or false otherwise.\n * All panels are not removed by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is removed.\n */\nexport function isEditorPanelRemoved( state, panelName ) {\n\treturn includes( state.removedPanels, panelName );\n}\n\n/**\n * Returns true if the given panel is enabled, or false otherwise. Panels are\n * enabled by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is enabled.\n */\nexport function isEditorPanelEnabled( state, panelName ) {\n\tconst panels = getPreference( state, 'panels' );\n\n\treturn (\n\t\t! isEditorPanelRemoved( state, panelName ) &&\n\t\tget( panels, [ panelName, 'enabled' ], true )\n\t);\n}\n\n/**\n * Returns true if the given panel is open, or false otherwise. Panels are\n * closed by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is open.\n */\nexport function isEditorPanelOpened( state, panelName ) {\n\tconst panels = getPreference( state, 'panels' );\n\treturn (\n\t\tget( panels, [ panelName ] ) === true ||\n\t\tget( panels, [ panelName, 'opened' ] ) === true\n\t);\n}\n\n/**\n * Returns true if a modal is active, or false otherwise.\n *\n * @param {Object} state Global application state.\n * @param {string} modalName A string that uniquely identifies the modal.\n *\n * @return {boolean} Whether the modal is active.\n */\nexport function isModalActive( state, modalName ) {\n\treturn state.activeModal === modalName;\n}\n\n/**\n * Returns whether the given feature is enabled or not.\n *\n * @param {Object} state Global application state.\n * @param {string} feature Feature slug.\n *\n * @return {boolean} Is active.\n */\nexport const isFeatureActive = createRegistrySelector(\n\t( select ) => ( state, feature ) => {\n\t\treturn !! select( preferencesStore ).get( 'core/edit-post', feature );\n\t}\n);\n\n/**\n * Returns true if the plugin item is pinned to the header.\n * When the value is not set it defaults to true.\n *\n * @param {Object} state Global application state.\n * @param {string} pluginName Plugin item name.\n *\n * @return {boolean} Whether the plugin item is pinned.\n */\nexport const isPluginItemPinned = createRegistrySelector(\n\t( select ) => ( state, pluginName ) => {\n\t\treturn select( interfaceStore ).isItemPinned(\n\t\t\t'core/edit-post',\n\t\t\tpluginName\n\t\t);\n\t}\n);\n\n/**\n * Returns an array of active meta box locations.\n *\n * @param {Object} state Post editor state.\n *\n * @return {string[]} Active meta box locations.\n */\nexport const getActiveMetaBoxLocations = createSelector(\n\t( state ) => {\n\t\treturn Object.keys( state.metaBoxes.locations ).filter( ( location ) =>\n\t\t\tisMetaBoxLocationActive( state, location )\n\t\t);\n\t},\n\t( state ) => [ state.metaBoxes.locations ]\n);\n\n/**\n * Returns true if a metabox location is active and visible\n *\n * @param {Object} state Post editor state.\n * @param {string} location Meta box location to test.\n *\n * @return {boolean} Whether the meta box location is active and visible.\n */\nexport function isMetaBoxLocationVisible( state, location ) {\n\treturn (\n\t\tisMetaBoxLocationActive( state, location ) &&\n\t\tsome( getMetaBoxesPerLocation( state, location ), ( { id } ) => {\n\t\t\treturn isEditorPanelEnabled( state, `meta-box-${ id }` );\n\t\t} )\n\t);\n}\n\n/**\n * Returns true if there is an active meta box in the given location, or false\n * otherwise.\n *\n * @param {Object} state Post editor state.\n * @param {string} location Meta box location to test.\n *\n * @return {boolean} Whether the meta box location is active.\n */\nexport function isMetaBoxLocationActive( state, location ) {\n\tconst metaBoxes = getMetaBoxesPerLocation( state, location );\n\treturn !! metaBoxes && metaBoxes.length !== 0;\n}\n\n/**\n * Returns the list of all the available meta boxes for a given location.\n *\n * @param {Object} state Global application state.\n * @param {string} location Meta box location to test.\n *\n * @return {?Array} List of meta boxes.\n */\nexport function getMetaBoxesPerLocation( state, location ) {\n\treturn state.metaBoxes.locations[ location ];\n}\n\n/**\n * Returns the list of all the available meta boxes.\n *\n * @param {Object} state Global application state.\n *\n * @return {Array} List of meta boxes.\n */\nexport const getAllMetaBoxes = createSelector(\n\t( state ) => {\n\t\treturn flatten( values( state.metaBoxes.locations ) );\n\t},\n\t( state ) => [ state.metaBoxes.locations ]\n);\n\n/**\n * Returns true if the post is using Meta Boxes\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether there are metaboxes or not.\n */\nexport function hasMetaBoxes( state ) {\n\treturn getActiveMetaBoxLocations( state ).length > 0;\n}\n\n/**\n * Returns true if the Meta Boxes are being saved.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the metaboxes are being saved.\n */\nexport function isSavingMetaBoxes( state ) {\n\treturn state.metaBoxes.isSaving;\n}\n\n/**\n * Returns the current editing canvas device type.\n *\n * @param {Object} state Global application state.\n *\n * @return {string} Device type.\n */\nexport function __experimentalGetPreviewDeviceType( state ) {\n\treturn state.deviceType;\n}\n\n/**\n * Returns true if the inserter is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the inserter is opened.\n */\nexport function isInserterOpened( state ) {\n\treturn !! state.blockInserterPanel;\n}\n\n/**\n * Get the insertion point for the inserter.\n *\n * @param {Object} state Global application state.\n *\n * @return {Object} The root client ID, index to insert at and starting filter value.\n */\nexport function __experimentalGetInsertionPoint( state ) {\n\tconst {\n\t\trootClientId,\n\t\tinsertionIndex,\n\t\tfilterValue,\n\t} = state.blockInserterPanel;\n\treturn { rootClientId, insertionIndex, filterValue };\n}\n\n/**\n * Returns true if the list view is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the list view is opened.\n */\nexport function isListViewOpened( state ) {\n\treturn state.listViewPanel;\n}\n\n/**\n * Returns true if the template editing mode is enabled.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether we're editing the template.\n */\nexport function isEditingTemplate( state ) {\n\treturn state.isEditingTemplate;\n}\n\n/**\n * Returns true if meta boxes are initialized.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether meta boxes are initialized.\n */\nexport function areMetaBoxesInitialized( state ) {\n\treturn state.metaBoxes.initialized;\n}\n\n/**\n * Retrieves the template of the currently edited post.\n *\n * @return {Object?} Post Template.\n */\nexport const getEditedPostTemplate = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst currentTemplate = select( editorStore ).getEditedPostAttribute(\n\t\t\t'template'\n\t\t);\n\t\tif ( currentTemplate ) {\n\t\t\tconst templateWithSameSlug = select( coreStore )\n\t\t\t\t.getEntityRecords( 'postType', 'wp_template', { per_page: -1 } )\n\t\t\t\t?.find( ( template ) => template.slug === currentTemplate );\n\t\t\tif ( ! templateWithSameSlug ) {\n\t\t\t\treturn templateWithSameSlug;\n\t\t\t}\n\t\t\treturn select( coreStore ).getEditedEntityRecord(\n\t\t\t\t'postType',\n\t\t\t\t'wp_template',\n\t\t\t\ttemplateWithSameSlug.id\n\t\t\t);\n\t\t}\n\n\t\tconst post = select( editorStore ).getCurrentPost();\n\t\tif ( post.link ) {\n\t\t\treturn select( coreStore ).__experimentalGetTemplateForLink(\n\t\t\t\tpost.link\n\t\t\t);\n\t\t}\n\n\t\treturn null;\n\t}\n);\n"]}
|
|
1
|
+
{"version":3,"sources":["@wordpress/edit-post/src/store/selectors.js"],"names":["createSelector","includes","some","flatten","values","createRegistrySelector","store","interfaceStore","preferencesStore","coreStore","editorStore","deprecated","EMPTY_ARRAY","EMPTY_OBJECT","getEditorMode","select","get","isEditorSidebarOpened","activeGeneralSidebar","getActiveComplementaryArea","isPluginSidebarOpened","getActiveGeneralSidebarName","convertPanelsToOldFormat","inactivePanels","openPanels","panelsWithEnabledState","reduce","accumulatedPanels","panelName","enabled","panels","currentPanelState","opened","getPreferences","since","alternative","preferences","accumulatedPrefs","preferenceKey","value","getPreference","state","defaultValue","undefined","getHiddenBlockTypes","isPublishSidebarOpened","publishSidebarActive","isEditorPanelRemoved","removedPanels","isEditorPanelEnabled","isEditorPanelOpened","isModalActive","modalName","activeModal","isFeatureActive","feature","isPluginItemPinned","pluginName","isItemPinned","getActiveMetaBoxLocations","Object","keys","metaBoxes","locations","filter","location","isMetaBoxLocationActive","isMetaBoxLocationVisible","getMetaBoxesPerLocation","id","length","getAllMetaBoxes","hasMetaBoxes","isSavingMetaBoxes","isSaving","__experimentalGetPreviewDeviceType","deviceType","isInserterOpened","blockInserterPanel","__experimentalGetInsertionPoint","rootClientId","insertionIndex","filterValue","isListViewOpened","listViewPanel","isEditingTemplate","areMetaBoxesInitialized","initialized","getEditedPostTemplate","currentTemplate","getEditedPostAttribute","templateWithSameSlug","getEntityRecords","per_page","find","template","slug","getEditedEntityRecord","post","getCurrentPost","link","__experimentalGetTemplateForLink"],"mappings":"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","sourcesContent":["/**\n * External dependencies\n */\nimport createSelector from 'rememo';\nimport { includes, some, flatten, values } from 'lodash';\n\n/**\n * WordPress dependencies\n */\nimport { createRegistrySelector } from '@wordpress/data';\nimport { store as interfaceStore } from '@wordpress/interface';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { store as editorStore } from '@wordpress/editor';\nimport deprecated from '@wordpress/deprecated';\n\nconst EMPTY_ARRAY = [];\nconst EMPTY_OBJECT = {};\n\n/**\n * Returns the current editing mode.\n *\n * @param {Object} state Global application state.\n *\n * @return {string} Editing mode.\n */\nexport const getEditorMode = createRegistrySelector( ( select ) => () =>\n\tselect( preferencesStore ).get( 'core/edit-post', 'editorMode' ) ?? 'visual'\n);\n\n/**\n * Returns true if the editor sidebar is opened.\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether the editor sidebar is opened.\n */\nexport const isEditorSidebarOpened = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst activeGeneralSidebar = select(\n\t\t\tinterfaceStore\n\t\t).getActiveComplementaryArea( 'core/edit-post' );\n\t\treturn includes(\n\t\t\t[ 'edit-post/document', 'edit-post/block' ],\n\t\t\tactiveGeneralSidebar\n\t\t);\n\t}\n);\n\n/**\n * Returns true if the plugin sidebar is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the plugin sidebar is opened.\n */\nexport const isPluginSidebarOpened = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst activeGeneralSidebar = select(\n\t\t\tinterfaceStore\n\t\t).getActiveComplementaryArea( 'core/edit-post' );\n\t\treturn (\n\t\t\t!! activeGeneralSidebar &&\n\t\t\t! includes(\n\t\t\t\t[ 'edit-post/document', 'edit-post/block' ],\n\t\t\t\tactiveGeneralSidebar\n\t\t\t)\n\t\t);\n\t}\n);\n\n/**\n * Returns the current active general sidebar name, or null if there is no\n * general sidebar active. The active general sidebar is a unique name to\n * identify either an editor or plugin sidebar.\n *\n * Examples:\n *\n * - `edit-post/document`\n * - `my-plugin/insert-image-sidebar`\n *\n * @param {Object} state Global application state.\n *\n * @return {?string} Active general sidebar name.\n */\nexport const getActiveGeneralSidebarName = createRegistrySelector(\n\t( select ) => () => {\n\t\treturn select( interfaceStore ).getActiveComplementaryArea(\n\t\t\t'core/edit-post'\n\t\t);\n\t}\n);\n\n/**\n * Converts panels from the new preferences store format to the old format\n * that the post editor previously used.\n *\n * The resultant converted data should look like this:\n * {\n * panelName: {\n * enabled: false,\n * opened: true,\n * },\n * anotherPanelName: {\n * opened: true\n * },\n * }\n *\n * @param {string[] | undefined} inactivePanels An array of inactive panel names.\n * @param {string[] | undefined} openPanels An array of open panel names.\n *\n * @return {Object} The converted panel data.\n */\nfunction convertPanelsToOldFormat( inactivePanels, openPanels ) {\n\t// First reduce the inactive panels.\n\tconst panelsWithEnabledState = inactivePanels?.reduce(\n\t\t( accumulatedPanels, panelName ) => ( {\n\t\t\t...accumulatedPanels,\n\t\t\t[ panelName ]: {\n\t\t\t\tenabled: false,\n\t\t\t},\n\t\t} ),\n\t\t{}\n\t);\n\n\t// Then reduce the open panels, passing in the result of the previous\n\t// reduction as the initial value so that both open and inactive\n\t// panel state is combined.\n\tconst panels = openPanels?.reduce( ( accumulatedPanels, panelName ) => {\n\t\tconst currentPanelState = accumulatedPanels?.[ panelName ];\n\t\treturn {\n\t\t\t...accumulatedPanels,\n\t\t\t[ panelName ]: {\n\t\t\t\t...currentPanelState,\n\t\t\t\topened: true,\n\t\t\t},\n\t\t};\n\t}, panelsWithEnabledState ?? {} );\n\n\t// The panels variable will only be set if openPanels wasn't `undefined`.\n\t// If it isn't set just return `panelsWithEnabledState`, and if that isn't\n\t// set return an empty object.\n\treturn panels ?? panelsWithEnabledState ?? EMPTY_OBJECT;\n}\n\n/**\n * Returns the preferences (these preferences are persisted locally).\n *\n * @param {Object} state Global application state.\n *\n * @return {Object} Preferences Object.\n */\nexport const getPreferences = createRegistrySelector( ( select ) => () => {\n\tdeprecated( `wp.data.select( 'core/edit-post' ).getPreferences`, {\n\t\tsince: '6.0',\n\t\talternative: `wp.data.select( 'core/preferences' ).get`,\n\t} );\n\n\t// These preferences now exist in the preferences store.\n\t// Fetch them so that they can be merged into the post\n\t// editor preferences.\n\tconst preferences = [\n\t\t'hiddenBlockTypes',\n\t\t'editorMode',\n\t\t'preferredStyleVariations',\n\t].reduce( ( accumulatedPrefs, preferenceKey ) => {\n\t\tconst value = select( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\tpreferenceKey\n\t\t);\n\n\t\treturn {\n\t\t\t...accumulatedPrefs,\n\t\t\t[ preferenceKey ]: value,\n\t\t};\n\t}, {} );\n\n\t// Panels were a preference, but the data structure changed when the state\n\t// was migrated to the preferences store. They need to be converted from\n\t// the new preferences store format to old format to ensure no breaking\n\t// changes for plugins.\n\tconst inactivePanels = select( preferencesStore ).get(\n\t\t'core/edit-post',\n\t\t'inactivePanels'\n\t);\n\tconst openPanels = select( preferencesStore ).get(\n\t\t'core/edit-post',\n\t\t'openPanels'\n\t);\n\tconst panels = convertPanelsToOldFormat( inactivePanels, openPanels );\n\n\treturn {\n\t\t...preferences,\n\t\tpanels,\n\t};\n} );\n\n/**\n *\n * @param {Object} state Global application state.\n * @param {string} preferenceKey Preference Key.\n * @param {*} defaultValue Default Value.\n *\n * @return {*} Preference Value.\n */\nexport function getPreference( state, preferenceKey, defaultValue ) {\n\tdeprecated( `wp.data.select( 'core/edit-post' ).getPreference`, {\n\t\tsince: '6.0',\n\t\talternative: `wp.data.select( 'core/preferences' ).get`,\n\t} );\n\n\t// Avoid using the `getPreferences` registry selector where possible.\n\tconst preferences = getPreferences( state );\n\tconst value = preferences[ preferenceKey ];\n\treturn value === undefined ? defaultValue : value;\n}\n\n/**\n * Returns an array of blocks that are hidden.\n *\n * @return {Array} A list of the hidden block types\n */\nexport const getHiddenBlockTypes = createRegistrySelector( ( select ) => () => {\n\treturn (\n\t\tselect( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\t'hiddenBlockTypes'\n\t\t) ?? EMPTY_ARRAY\n\t);\n} );\n\n/**\n * Returns true if the publish sidebar is opened.\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether the publish sidebar is open.\n */\nexport function isPublishSidebarOpened( state ) {\n\treturn state.publishSidebarActive;\n}\n\n/**\n * Returns true if the given panel was programmatically removed, or false otherwise.\n * All panels are not removed by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is removed.\n */\nexport function isEditorPanelRemoved( state, panelName ) {\n\treturn includes( state.removedPanels, panelName );\n}\n\n/**\n * Returns true if the given panel is enabled, or false otherwise. Panels are\n * enabled by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is enabled.\n */\nexport const isEditorPanelEnabled = createRegistrySelector(\n\t( select ) => ( state, panelName ) => {\n\t\tconst inactivePanels = select( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\t'inactivePanels'\n\t\t);\n\t\treturn (\n\t\t\t! isEditorPanelRemoved( state, panelName ) &&\n\t\t\t! inactivePanels?.includes( panelName )\n\t\t);\n\t}\n);\n\n/**\n * Returns true if the given panel is open, or false otherwise. Panels are\n * closed by default.\n *\n * @param {Object} state Global application state.\n * @param {string} panelName A string that identifies the panel.\n *\n * @return {boolean} Whether or not the panel is open.\n */\nexport const isEditorPanelOpened = createRegistrySelector(\n\t( select ) => ( state, panelName ) => {\n\t\tconst openPanels = select( preferencesStore ).get(\n\t\t\t'core/edit-post',\n\t\t\t'openPanels'\n\t\t);\n\t\treturn !! openPanels?.includes( panelName );\n\t}\n);\n\n/**\n * Returns true if a modal is active, or false otherwise.\n *\n * @param {Object} state Global application state.\n * @param {string} modalName A string that uniquely identifies the modal.\n *\n * @return {boolean} Whether the modal is active.\n */\nexport function isModalActive( state, modalName ) {\n\treturn state.activeModal === modalName;\n}\n\n/**\n * Returns whether the given feature is enabled or not.\n *\n * @param {Object} state Global application state.\n * @param {string} feature Feature slug.\n *\n * @return {boolean} Is active.\n */\nexport const isFeatureActive = createRegistrySelector(\n\t( select ) => ( state, feature ) => {\n\t\treturn !! select( preferencesStore ).get( 'core/edit-post', feature );\n\t}\n);\n\n/**\n * Returns true if the plugin item is pinned to the header.\n * When the value is not set it defaults to true.\n *\n * @param {Object} state Global application state.\n * @param {string} pluginName Plugin item name.\n *\n * @return {boolean} Whether the plugin item is pinned.\n */\nexport const isPluginItemPinned = createRegistrySelector(\n\t( select ) => ( state, pluginName ) => {\n\t\treturn select( interfaceStore ).isItemPinned(\n\t\t\t'core/edit-post',\n\t\t\tpluginName\n\t\t);\n\t}\n);\n\n/**\n * Returns an array of active meta box locations.\n *\n * @param {Object} state Post editor state.\n *\n * @return {string[]} Active meta box locations.\n */\nexport const getActiveMetaBoxLocations = createSelector(\n\t( state ) => {\n\t\treturn Object.keys( state.metaBoxes.locations ).filter( ( location ) =>\n\t\t\tisMetaBoxLocationActive( state, location )\n\t\t);\n\t},\n\t( state ) => [ state.metaBoxes.locations ]\n);\n\n/**\n * Returns true if a metabox location is active and visible\n *\n * @param {Object} state Post editor state.\n * @param {string} location Meta box location to test.\n *\n * @return {boolean} Whether the meta box location is active and visible.\n */\nexport function isMetaBoxLocationVisible( state, location ) {\n\treturn (\n\t\tisMetaBoxLocationActive( state, location ) &&\n\t\tsome( getMetaBoxesPerLocation( state, location ), ( { id } ) => {\n\t\t\treturn isEditorPanelEnabled( state, `meta-box-${ id }` );\n\t\t} )\n\t);\n}\n\n/**\n * Returns true if there is an active meta box in the given location, or false\n * otherwise.\n *\n * @param {Object} state Post editor state.\n * @param {string} location Meta box location to test.\n *\n * @return {boolean} Whether the meta box location is active.\n */\nexport function isMetaBoxLocationActive( state, location ) {\n\tconst metaBoxes = getMetaBoxesPerLocation( state, location );\n\treturn !! metaBoxes && metaBoxes.length !== 0;\n}\n\n/**\n * Returns the list of all the available meta boxes for a given location.\n *\n * @param {Object} state Global application state.\n * @param {string} location Meta box location to test.\n *\n * @return {?Array} List of meta boxes.\n */\nexport function getMetaBoxesPerLocation( state, location ) {\n\treturn state.metaBoxes.locations[ location ];\n}\n\n/**\n * Returns the list of all the available meta boxes.\n *\n * @param {Object} state Global application state.\n *\n * @return {Array} List of meta boxes.\n */\nexport const getAllMetaBoxes = createSelector(\n\t( state ) => {\n\t\treturn flatten( values( state.metaBoxes.locations ) );\n\t},\n\t( state ) => [ state.metaBoxes.locations ]\n);\n\n/**\n * Returns true if the post is using Meta Boxes\n *\n * @param {Object} state Global application state\n *\n * @return {boolean} Whether there are metaboxes or not.\n */\nexport function hasMetaBoxes( state ) {\n\treturn getActiveMetaBoxLocations( state ).length > 0;\n}\n\n/**\n * Returns true if the Meta Boxes are being saved.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the metaboxes are being saved.\n */\nexport function isSavingMetaBoxes( state ) {\n\treturn state.metaBoxes.isSaving;\n}\n\n/**\n * Returns the current editing canvas device type.\n *\n * @param {Object} state Global application state.\n *\n * @return {string} Device type.\n */\nexport function __experimentalGetPreviewDeviceType( state ) {\n\treturn state.deviceType;\n}\n\n/**\n * Returns true if the inserter is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the inserter is opened.\n */\nexport function isInserterOpened( state ) {\n\treturn !! state.blockInserterPanel;\n}\n\n/**\n * Get the insertion point for the inserter.\n *\n * @param {Object} state Global application state.\n *\n * @return {Object} The root client ID, index to insert at and starting filter value.\n */\nexport function __experimentalGetInsertionPoint( state ) {\n\tconst {\n\t\trootClientId,\n\t\tinsertionIndex,\n\t\tfilterValue,\n\t} = state.blockInserterPanel;\n\treturn { rootClientId, insertionIndex, filterValue };\n}\n\n/**\n * Returns true if the list view is opened.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether the list view is opened.\n */\nexport function isListViewOpened( state ) {\n\treturn state.listViewPanel;\n}\n\n/**\n * Returns true if the template editing mode is enabled.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether we're editing the template.\n */\nexport function isEditingTemplate( state ) {\n\treturn state.isEditingTemplate;\n}\n\n/**\n * Returns true if meta boxes are initialized.\n *\n * @param {Object} state Global application state.\n *\n * @return {boolean} Whether meta boxes are initialized.\n */\nexport function areMetaBoxesInitialized( state ) {\n\treturn state.metaBoxes.initialized;\n}\n\n/**\n * Retrieves the template of the currently edited post.\n *\n * @return {Object?} Post Template.\n */\nexport const getEditedPostTemplate = createRegistrySelector(\n\t( select ) => () => {\n\t\tconst currentTemplate = select( editorStore ).getEditedPostAttribute(\n\t\t\t'template'\n\t\t);\n\t\tif ( currentTemplate ) {\n\t\t\tconst templateWithSameSlug = select( coreStore )\n\t\t\t\t.getEntityRecords( 'postType', 'wp_template', { per_page: -1 } )\n\t\t\t\t?.find( ( template ) => template.slug === currentTemplate );\n\t\t\tif ( ! templateWithSameSlug ) {\n\t\t\t\treturn templateWithSameSlug;\n\t\t\t}\n\t\t\treturn select( coreStore ).getEditedEntityRecord(\n\t\t\t\t'postType',\n\t\t\t\t'wp_template',\n\t\t\t\ttemplateWithSameSlug.id\n\t\t\t);\n\t\t}\n\n\t\tconst post = select( editorStore ).getCurrentPost();\n\t\tif ( post.link ) {\n\t\t\treturn select( coreStore ).__experimentalGetTemplateForLink(\n\t\t\t\tpost.link\n\t\t\t);\n\t\t}\n\n\t\treturn null;\n\t}\n);\n"]}
|
|
@@ -1891,9 +1891,6 @@ body.block-editor-page .media-frame select.attachment-filters:last-of-type {
|
|
|
1891
1891
|
max-width: 100%;
|
|
1892
1892
|
height: auto;
|
|
1893
1893
|
}
|
|
1894
|
-
.block-editor__container iframe {
|
|
1895
|
-
width: 100%;
|
|
1896
|
-
}
|
|
1897
1894
|
|
|
1898
1895
|
body.admin-color-light {
|
|
1899
1896
|
--wp-admin-theme-color: #0085ba;
|
package/build-style/style.css
CHANGED
|
@@ -1895,9 +1895,6 @@ body.block-editor-page .media-frame select.attachment-filters:last-of-type {
|
|
|
1895
1895
|
max-width: 100%;
|
|
1896
1896
|
height: auto;
|
|
1897
1897
|
}
|
|
1898
|
-
.block-editor__container iframe {
|
|
1899
|
-
width: 100%;
|
|
1900
|
-
}
|
|
1901
1898
|
|
|
1902
1899
|
body.admin-color-light {
|
|
1903
1900
|
--wp-admin-theme-color: #0085ba;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/edit-post",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0",
|
|
4
4
|
"description": "Edit Post module for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -27,30 +27,31 @@
|
|
|
27
27
|
"react-native": "src/index",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@babel/runtime": "^7.16.0",
|
|
30
|
-
"@wordpress/a11y": "^3.
|
|
31
|
-
"@wordpress/api-fetch": "^6.
|
|
32
|
-
"@wordpress/block-editor": "^8.
|
|
33
|
-
"@wordpress/block-library": "^7.
|
|
34
|
-
"@wordpress/blocks": "^11.
|
|
35
|
-
"@wordpress/components": "^19.
|
|
36
|
-
"@wordpress/compose": "^5.
|
|
37
|
-
"@wordpress/core-data": "^4.
|
|
38
|
-
"@wordpress/data": "^6.
|
|
39
|
-
"@wordpress/
|
|
40
|
-
"@wordpress/
|
|
41
|
-
"@wordpress/
|
|
42
|
-
"@wordpress/
|
|
43
|
-
"@wordpress/
|
|
44
|
-
"@wordpress/
|
|
45
|
-
"@wordpress/
|
|
46
|
-
"@wordpress/
|
|
47
|
-
"@wordpress/
|
|
48
|
-
"@wordpress/
|
|
49
|
-
"@wordpress/
|
|
50
|
-
"@wordpress/
|
|
51
|
-
"@wordpress/
|
|
52
|
-
"@wordpress/
|
|
53
|
-
"@wordpress/
|
|
30
|
+
"@wordpress/a11y": "^3.6.0",
|
|
31
|
+
"@wordpress/api-fetch": "^6.3.0",
|
|
32
|
+
"@wordpress/block-editor": "^8.5.0",
|
|
33
|
+
"@wordpress/block-library": "^7.3.0",
|
|
34
|
+
"@wordpress/blocks": "^11.5.0",
|
|
35
|
+
"@wordpress/components": "^19.8.0",
|
|
36
|
+
"@wordpress/compose": "^5.4.0",
|
|
37
|
+
"@wordpress/core-data": "^4.4.0",
|
|
38
|
+
"@wordpress/data": "^6.6.0",
|
|
39
|
+
"@wordpress/deprecated": "^3.6.0",
|
|
40
|
+
"@wordpress/editor": "^12.5.0",
|
|
41
|
+
"@wordpress/element": "^4.4.0",
|
|
42
|
+
"@wordpress/hooks": "^3.6.0",
|
|
43
|
+
"@wordpress/i18n": "^4.6.0",
|
|
44
|
+
"@wordpress/icons": "^8.2.0",
|
|
45
|
+
"@wordpress/interface": "^4.5.0",
|
|
46
|
+
"@wordpress/keyboard-shortcuts": "^3.4.0",
|
|
47
|
+
"@wordpress/keycodes": "^3.6.0",
|
|
48
|
+
"@wordpress/media-utils": "^3.4.0",
|
|
49
|
+
"@wordpress/notices": "^3.6.0",
|
|
50
|
+
"@wordpress/plugins": "^4.4.0",
|
|
51
|
+
"@wordpress/preferences": "^1.2.0",
|
|
52
|
+
"@wordpress/url": "^3.7.0",
|
|
53
|
+
"@wordpress/viewport": "^4.4.0",
|
|
54
|
+
"@wordpress/warning": "^2.6.0",
|
|
54
55
|
"classnames": "^2.3.1",
|
|
55
56
|
"lodash": "^4.17.21",
|
|
56
57
|
"memize": "^1.1.0",
|
|
@@ -63,5 +64,5 @@
|
|
|
63
64
|
"publishConfig": {
|
|
64
65
|
"access": "public"
|
|
65
66
|
},
|
|
66
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "11eb1241e63c9240018323551c6753f8a5fa96f9"
|
|
67
68
|
}
|
|
@@ -97,7 +97,7 @@ function PostLink( {
|
|
|
97
97
|
{ __( 'The last part of the URL.' ) }{ ' ' }
|
|
98
98
|
<ExternalLink
|
|
99
99
|
href={ __(
|
|
100
|
-
'https://wordpress.org/support/article/
|
|
100
|
+
'https://wordpress.org/support/article/settings-sidebar/#permalink'
|
|
101
101
|
) }
|
|
102
102
|
>
|
|
103
103
|
{ __( 'Read about permalinks' ) }
|
|
@@ -124,8 +124,7 @@ export default function VisualEditor( { styles } ) {
|
|
|
124
124
|
const { clearSelectedBlock } = useDispatch( blockEditorStore );
|
|
125
125
|
const { setIsEditingTemplate } = useDispatch( editPostStore );
|
|
126
126
|
const desktopCanvasStyles = {
|
|
127
|
-
|
|
128
|
-
// If a percentage height is present, older browsers such as Safari 13 apply that, but do so incorrectly as the inheritance is buggy.
|
|
127
|
+
height: '100%',
|
|
129
128
|
width: '100%',
|
|
130
129
|
margin: 0,
|
|
131
130
|
display: 'flex',
|
|
@@ -237,7 +236,10 @@ export default function VisualEditor( { styles } ) {
|
|
|
237
236
|
/>
|
|
238
237
|
) }
|
|
239
238
|
{ ! isTemplateMode && (
|
|
240
|
-
<div
|
|
239
|
+
<div
|
|
240
|
+
className="edit-post-visual-editor__post-title-wrapper"
|
|
241
|
+
contentEditable={ false }
|
|
242
|
+
>
|
|
241
243
|
<PostTitle />
|
|
242
244
|
</div>
|
|
243
245
|
) }
|
package/src/editor.js
CHANGED
|
@@ -18,6 +18,7 @@ import { StrictMode, useMemo } from '@wordpress/element';
|
|
|
18
18
|
import { SlotFillProvider } from '@wordpress/components';
|
|
19
19
|
import { store as coreStore } from '@wordpress/core-data';
|
|
20
20
|
import { ShortcutProvider } from '@wordpress/keyboard-shortcuts';
|
|
21
|
+
import { store as preferencesStore } from '@wordpress/preferences';
|
|
21
22
|
|
|
22
23
|
/**
|
|
23
24
|
* Internal dependencies
|
|
@@ -50,7 +51,6 @@ function Editor( {
|
|
|
50
51
|
( select ) => {
|
|
51
52
|
const {
|
|
52
53
|
isFeatureActive,
|
|
53
|
-
getPreference,
|
|
54
54
|
__experimentalGetPreviewDeviceType,
|
|
55
55
|
isEditingTemplate,
|
|
56
56
|
getEditedPostTemplate,
|
|
@@ -86,7 +86,8 @@ function Editor( {
|
|
|
86
86
|
focusMode: isFeatureActive( 'focusMode' ),
|
|
87
87
|
hasReducedUI: isFeatureActive( 'reducedUI' ),
|
|
88
88
|
hasThemeStyles: isFeatureActive( 'themeStyles' ),
|
|
89
|
-
preferredStyleVariations:
|
|
89
|
+
preferredStyleVariations: select( preferencesStore ).get(
|
|
90
|
+
'core/edit-post',
|
|
90
91
|
'preferredStyleVariations'
|
|
91
92
|
),
|
|
92
93
|
hiddenBlockTypes: getHiddenBlockTypes(),
|
package/src/index.js
CHANGED
|
@@ -111,6 +111,9 @@ export function initializeEditor(
|
|
|
111
111
|
fixedToolbar: false,
|
|
112
112
|
fullscreenMode: true,
|
|
113
113
|
hiddenBlockTypes: [],
|
|
114
|
+
inactivePanels: [],
|
|
115
|
+
isPublishSidebarEnabled: true,
|
|
116
|
+
openPanels: [ 'post-status' ],
|
|
114
117
|
preferredStyleVariations: {},
|
|
115
118
|
showBlockBreadcrumbs: true,
|
|
116
119
|
showIconLabels: false,
|
package/src/index.native.js
CHANGED
|
@@ -26,6 +26,9 @@ export function initializeEditor( id, postType, postId ) {
|
|
|
26
26
|
fixedToolbar: false,
|
|
27
27
|
fullscreenMode: true,
|
|
28
28
|
hiddenBlockTypes: [],
|
|
29
|
+
inactivePanels: [],
|
|
30
|
+
isPublishSidebarEnabled: true,
|
|
31
|
+
openPanels: [ 'post-status' ],
|
|
29
32
|
preferredStyleVariations: {},
|
|
30
33
|
welcomeGuide: true,
|
|
31
34
|
} );
|
package/src/store/actions.js
CHANGED
|
@@ -107,26 +107,58 @@ export function togglePublishSidebar() {
|
|
|
107
107
|
*
|
|
108
108
|
* @return {Object} Action object.
|
|
109
109
|
*/
|
|
110
|
-
export
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
110
|
+
export const toggleEditorPanelEnabled = ( panelName ) => ( { registry } ) => {
|
|
111
|
+
const inactivePanels =
|
|
112
|
+
registry
|
|
113
|
+
.select( preferencesStore )
|
|
114
|
+
.get( 'core/edit-post', 'inactivePanels' ) ?? [];
|
|
115
|
+
|
|
116
|
+
const isPanelInactive = !! inactivePanels?.includes( panelName );
|
|
117
|
+
|
|
118
|
+
// If the panel is inactive, remove it to enable it, else add it to
|
|
119
|
+
// make it inactive.
|
|
120
|
+
let updatedInactivePanels;
|
|
121
|
+
if ( isPanelInactive ) {
|
|
122
|
+
updatedInactivePanels = inactivePanels.filter(
|
|
123
|
+
( invactivePanelName ) => invactivePanelName !== panelName
|
|
124
|
+
);
|
|
125
|
+
} else {
|
|
126
|
+
updatedInactivePanels = [ ...inactivePanels, panelName ];
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
registry
|
|
130
|
+
.dispatch( preferencesStore )
|
|
131
|
+
.set( 'core/edit-post', 'inactivePanels', updatedInactivePanels );
|
|
132
|
+
};
|
|
116
133
|
|
|
117
134
|
/**
|
|
118
|
-
*
|
|
135
|
+
* Opens a closed panel and closes an open panel.
|
|
119
136
|
*
|
|
120
137
|
* @param {string} panelName A string that identifies the panel to open or close.
|
|
121
|
-
*
|
|
122
|
-
* @return {Object} Action object.
|
|
123
138
|
*/
|
|
124
|
-
export
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
139
|
+
export const toggleEditorPanelOpened = ( panelName ) => ( { registry } ) => {
|
|
140
|
+
const openPanels =
|
|
141
|
+
registry
|
|
142
|
+
.select( preferencesStore )
|
|
143
|
+
.get( 'core/edit-post', 'openPanels' ) ?? [];
|
|
144
|
+
|
|
145
|
+
const isPanelOpen = !! openPanels?.includes( panelName );
|
|
146
|
+
|
|
147
|
+
// If the panel is open, remove it to close it, else add it to
|
|
148
|
+
// make it open.
|
|
149
|
+
let updatedOpenPanels;
|
|
150
|
+
if ( isPanelOpen ) {
|
|
151
|
+
updatedOpenPanels = openPanels.filter(
|
|
152
|
+
( openPanelName ) => openPanelName !== panelName
|
|
153
|
+
);
|
|
154
|
+
} else {
|
|
155
|
+
updatedOpenPanels = [ ...openPanels, panelName ];
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
registry
|
|
159
|
+
.dispatch( preferencesStore )
|
|
160
|
+
.set( 'core/edit-post', 'openPanels', updatedOpenPanels );
|
|
161
|
+
};
|
|
130
162
|
|
|
131
163
|
/**
|
|
132
164
|
* Returns an action object used to remove a panel from the editor.
|
package/src/store/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* WordPress dependencies
|
|
3
3
|
*/
|
|
4
|
-
import { createReduxStore,
|
|
4
|
+
import { createReduxStore, register } from '@wordpress/data';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Internal dependencies
|
|
@@ -11,13 +11,6 @@ import * as actions from './actions';
|
|
|
11
11
|
import * as selectors from './selectors';
|
|
12
12
|
import { STORE_NAME } from './constants';
|
|
13
13
|
|
|
14
|
-
const storeConfig = {
|
|
15
|
-
reducer,
|
|
16
|
-
actions,
|
|
17
|
-
selectors,
|
|
18
|
-
persist: [ 'preferences' ],
|
|
19
|
-
};
|
|
20
|
-
|
|
21
14
|
/**
|
|
22
15
|
* Store definition for the edit post namespace.
|
|
23
16
|
*
|
|
@@ -25,7 +18,10 @@ const storeConfig = {
|
|
|
25
18
|
*
|
|
26
19
|
* @type {Object}
|
|
27
20
|
*/
|
|
28
|
-
export const store = createReduxStore( STORE_NAME,
|
|
21
|
+
export const store = createReduxStore( STORE_NAME, {
|
|
22
|
+
reducer,
|
|
23
|
+
actions,
|
|
24
|
+
selectors,
|
|
25
|
+
} );
|
|
29
26
|
|
|
30
|
-
|
|
31
|
-
registerStore( STORE_NAME, storeConfig );
|
|
27
|
+
register( store );
|