@wordpress/edit-post 8.0.0 → 8.1.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 +6 -0
- package/build/components/back-button/index.js +3 -1
- package/build/components/back-button/index.js.map +1 -1
- package/build/components/init-pattern-modal/index.js +1 -1
- package/build/components/init-pattern-modal/index.js.map +1 -1
- package/build/components/layout/index.js +93 -61
- package/build/components/layout/index.js.map +1 -1
- package/build/components/preferences-modal/enable-custom-fields.js +1 -0
- package/build/components/preferences-modal/enable-custom-fields.js.map +1 -1
- package/build/components/welcome-guide/index.js +5 -7
- package/build/components/welcome-guide/index.js.map +1 -1
- package/build/index.js +8 -6
- package/build/index.js.map +1 -1
- package/build/store/index.js +3 -0
- package/build/store/index.js.map +1 -1
- package/build/store/private-selectors.js +56 -0
- package/build/store/private-selectors.js.map +1 -0
- package/build/store/selectors.js +6 -43
- package/build/store/selectors.js.map +1 -1
- package/build-module/components/back-button/index.js +3 -1
- package/build-module/components/back-button/index.js.map +1 -1
- package/build-module/components/init-pattern-modal/index.js +1 -1
- package/build-module/components/init-pattern-modal/index.js.map +1 -1
- package/build-module/components/layout/index.js +95 -64
- package/build-module/components/layout/index.js.map +1 -1
- package/build-module/components/preferences-modal/enable-custom-fields.js +1 -0
- package/build-module/components/preferences-modal/enable-custom-fields.js.map +1 -1
- package/build-module/components/welcome-guide/index.js +5 -7
- package/build-module/components/welcome-guide/index.js.map +1 -1
- package/build-module/index.js +9 -7
- package/build-module/index.js.map +1 -1
- package/build-module/store/index.js +3 -0
- package/build-module/store/index.js.map +1 -1
- package/build-module/store/private-selectors.js +49 -0
- package/build-module/store/private-selectors.js.map +1 -0
- package/build-module/store/selectors.js +6 -43
- package/build-module/store/selectors.js.map +1 -1
- package/package.json +31 -30
- package/src/components/back-button/index.js +13 -6
- package/src/components/init-pattern-modal/index.js +1 -4
- package/src/components/layout/index.js +138 -79
- package/src/components/preferences-modal/enable-custom-fields.js +1 -0
- package/src/components/welcome-guide/index.js +15 -15
- package/src/index.js +10 -8
- package/src/store/index.js +3 -1
- package/src/store/private-selectors.js +52 -0
- package/src/store/selectors.js +10 -61
- package/src/test/__snapshots__/editor.native.js.snap +12 -0
- package/src/test/editor.native.js +34 -0
- package/build/editor.js +0 -100
- package/build/editor.js.map +0 -1
- package/build-module/editor.js +0 -93
- package/build-module/editor.js.map +0 -1
- package/src/editor.js +0 -118
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 8.1.0 (2024-06-15)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Add ´@wordpress/html-entities´ package to the list of dependencies in package.json. ([#62313](https://github.com/WordPress/gutenberg/pull/62313))
|
|
10
|
+
|
|
5
11
|
## 8.0.0 (2024-05-31)
|
|
6
12
|
|
|
7
13
|
### Breaking Changes
|
|
@@ -40,7 +40,9 @@ function BackButton({
|
|
|
40
40
|
initialPost
|
|
41
41
|
}) {
|
|
42
42
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(BackButtonFill, {
|
|
43
|
-
children:
|
|
43
|
+
children: ({
|
|
44
|
+
length
|
|
45
|
+
}) => length <= 1 && /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.__unstableMotion.div, {
|
|
44
46
|
variants: slideX,
|
|
45
47
|
transition: {
|
|
46
48
|
type: 'tween',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_editor","require","_components","_fullscreenModeClose","_interopRequireDefault","_lockUnlock","_jsxRuntime","BackButton","BackButtonFill","unlock","editorPrivateApis","slideX","hidden","x","distractionFreeInactive","hover","transition","type","delay","initialPost","jsx","children","__unstableMotion","div","variants","default","showTooltip","_default","exports"],"sources":["@wordpress/edit-post/src/components/back-button/index.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { privateApis as editorPrivateApis } from '@wordpress/editor';\nimport { __unstableMotion as motion } from '@wordpress/components';\n\n/**\n * Internal dependencies\n */\nimport FullscreenModeClose from './fullscreen-mode-close';\nimport { unlock } from '../../lock-unlock';\n\nconst { BackButton: BackButtonFill } = unlock( editorPrivateApis );\n\nconst slideX = {\n\thidden: { x: '-100%' },\n\tdistractionFreeInactive: { x: 0 },\n\thover: { x: 0, transition: { type: 'tween', delay: 0.2 } },\n};\n\nfunction BackButton( { initialPost } ) {\n\treturn (\n\t\t<BackButtonFill>\n\t\t\t<motion.div\n\t\t\t\tvariants={ slideX }\n\t\t\t\ttransition={ { type: 'tween', delay: 0.8 } }\n\t\t\t>\n\t\t\t\t<FullscreenModeClose
|
|
1
|
+
{"version":3,"names":["_editor","require","_components","_fullscreenModeClose","_interopRequireDefault","_lockUnlock","_jsxRuntime","BackButton","BackButtonFill","unlock","editorPrivateApis","slideX","hidden","x","distractionFreeInactive","hover","transition","type","delay","initialPost","jsx","children","length","__unstableMotion","div","variants","default","showTooltip","_default","exports"],"sources":["@wordpress/edit-post/src/components/back-button/index.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { privateApis as editorPrivateApis } from '@wordpress/editor';\nimport { __unstableMotion as motion } from '@wordpress/components';\n\n/**\n * Internal dependencies\n */\nimport FullscreenModeClose from './fullscreen-mode-close';\nimport { unlock } from '../../lock-unlock';\n\nconst { BackButton: BackButtonFill } = unlock( editorPrivateApis );\n\nconst slideX = {\n\thidden: { x: '-100%' },\n\tdistractionFreeInactive: { x: 0 },\n\thover: { x: 0, transition: { type: 'tween', delay: 0.2 } },\n};\n\nfunction BackButton( { initialPost } ) {\n\treturn (\n\t\t<BackButtonFill>\n\t\t\t{ ( { length } ) =>\n\t\t\t\tlength <= 1 && (\n\t\t\t\t\t<motion.div\n\t\t\t\t\t\tvariants={ slideX }\n\t\t\t\t\t\ttransition={ { type: 'tween', delay: 0.8 } }\n\t\t\t\t\t>\n\t\t\t\t\t\t<FullscreenModeClose\n\t\t\t\t\t\t\tshowTooltip\n\t\t\t\t\t\t\tinitialPost={ initialPost }\n\t\t\t\t\t\t/>\n\t\t\t\t\t</motion.div>\n\t\t\t\t)\n\t\t\t}\n\t\t</BackButtonFill>\n\t);\n}\n\nexport default BackButton;\n"],"mappings":";;;;;;;AAGA,IAAAA,OAAA,GAAAC,OAAA;AACA,IAAAC,WAAA,GAAAD,OAAA;AAKA,IAAAE,oBAAA,GAAAC,sBAAA,CAAAH,OAAA;AACA,IAAAI,WAAA,GAAAJ,OAAA;AAA2C,IAAAK,WAAA,GAAAL,OAAA;AAV3C;AACA;AACA;;AAIA;AACA;AACA;;AAIA,MAAM;EAAEM,UAAU,EAAEC;AAAe,CAAC,GAAG,IAAAC,kBAAM,EAAEC,mBAAkB,CAAC;AAElE,MAAMC,MAAM,GAAG;EACdC,MAAM,EAAE;IAAEC,CAAC,EAAE;EAAQ,CAAC;EACtBC,uBAAuB,EAAE;IAAED,CAAC,EAAE;EAAE,CAAC;EACjCE,KAAK,EAAE;IAAEF,CAAC,EAAE,CAAC;IAAEG,UAAU,EAAE;MAAEC,IAAI,EAAE,OAAO;MAAEC,KAAK,EAAE;IAAI;EAAE;AAC1D,CAAC;AAED,SAASX,UAAUA,CAAE;EAAEY;AAAY,CAAC,EAAG;EACtC,oBACC,IAAAb,WAAA,CAAAc,GAAA,EAACZ,cAAc;IAAAa,QAAA,EACZA,CAAE;MAAEC;IAAO,CAAC,KACbA,MAAM,IAAI,CAAC,iBACV,IAAAhB,WAAA,CAAAc,GAAA,EAAClB,WAAA,CAAAqB,gBAAM,CAACC,GAAG;MACVC,QAAQ,EAAGd,MAAQ;MACnBK,UAAU,EAAG;QAAEC,IAAI,EAAE,OAAO;QAAEC,KAAK,EAAE;MAAI,CAAG;MAAAG,QAAA,eAE5C,IAAAf,WAAA,CAAAc,GAAA,EAACjB,oBAAA,CAAAuB,OAAmB;QACnBC,WAAW;QACXR,WAAW,EAAGA;MAAa,CAC3B;IAAC,CACS;EACZ,CAEa,CAAC;AAEnB;AAAC,IAAAS,QAAA,GAAAC,OAAA,CAAAH,OAAA,GAEcnB,UAAU","ignoreList":[]}
|
|
@@ -82,7 +82,7 @@ function InitPatternModal() {
|
|
|
82
82
|
__nextHasNoMarginBottom: true,
|
|
83
83
|
__next40pxDefaultSize: true
|
|
84
84
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(ReusableBlocksRenameHint, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.ToggleControl, {
|
|
85
|
-
label: (0, _i18n._x)('Synced', '
|
|
85
|
+
label: (0, _i18n._x)('Synced', 'pattern (singular)'),
|
|
86
86
|
help: (0, _i18n.__)('Sync this pattern across multiple locations.'),
|
|
87
87
|
checked: !syncType,
|
|
88
88
|
onChange: () => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_data","require","_i18n","_components","_element","_editor","_blockEditor","_lockUnlock","_jsxRuntime","ReusableBlocksRenameHint","unlock","blockEditorPrivateApis","InitPatternModal","editPost","useDispatch","editorStore","isModalOpen","setIsModalOpen","useState","syncType","setSyncType","undefined","title","setTitle","postType","isNewPost","useSelect","select","getEditedPostAttribute","isCleanNewPost","useEffect","jsx","Fragment","children","Modal","__","onRequestClose","overlayClassName","onSubmit","event","preventDefault","meta","wp_pattern_sync_status","jsxs","__experimentalVStack","spacing","TextControl","label","value","onChange","placeholder","className","__nextHasNoMarginBottom","__next40pxDefaultSize","ToggleControl","_x","help","checked","__experimentalHStack","justify","Button","variant","type","disabled","__experimentalIsFocusable"],"sources":["@wordpress/edit-post/src/components/init-pattern-modal/index.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport { __, _x } from '@wordpress/i18n';\nimport {\n\tModal,\n\tButton,\n\t__experimentalHStack as HStack,\n\t__experimentalVStack as VStack,\n\tToggleControl,\n\tTextControl,\n} from '@wordpress/components';\nimport { useEffect, useState } from '@wordpress/element';\nimport { store as editorStore } from '@wordpress/editor';\nimport { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor';\n\n/**\n * Internal dependencies\n */\n\nimport { unlock } from '../../lock-unlock';\n\nconst { ReusableBlocksRenameHint } = unlock( blockEditorPrivateApis );\n\nexport default function InitPatternModal() {\n\tconst { editPost } = useDispatch( editorStore );\n\tconst [ isModalOpen, setIsModalOpen ] = useState( false );\n\tconst [ syncType, setSyncType ] = useState( undefined );\n\tconst [ title, setTitle ] = useState( '' );\n\n\tconst { postType, isNewPost } = useSelect( ( select ) => {\n\t\tconst { getEditedPostAttribute, isCleanNewPost } =\n\t\t\tselect( editorStore );\n\t\treturn {\n\t\t\tpostType: getEditedPostAttribute( 'type' ),\n\t\t\tisNewPost: isCleanNewPost(),\n\t\t};\n\t}, [] );\n\n\tuseEffect( () => {\n\t\tif ( isNewPost && postType === 'wp_block' ) {\n\t\t\tsetIsModalOpen( true );\n\t\t}\n\t\t// We only want the modal to open when the page is first loaded.\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps\n\t}, [] );\n\n\tif ( postType !== 'wp_block' || ! isNewPost ) {\n\t\treturn null;\n\t}\n\n\treturn (\n\t\t<>\n\t\t\t{ isModalOpen && (\n\t\t\t\t<Modal\n\t\t\t\t\ttitle={ __( 'Create pattern' ) }\n\t\t\t\t\tonRequestClose={ () => {\n\t\t\t\t\t\tsetIsModalOpen( false );\n\t\t\t\t\t} }\n\t\t\t\t\toverlayClassName=\"reusable-blocks-menu-items__convert-modal\"\n\t\t\t\t>\n\t\t\t\t\t<form\n\t\t\t\t\t\tonSubmit={ ( event ) => {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tsetIsModalOpen( false );\n\t\t\t\t\t\t\teditPost( {\n\t\t\t\t\t\t\t\ttitle,\n\t\t\t\t\t\t\t\tmeta: {\n\t\t\t\t\t\t\t\t\twp_pattern_sync_status: syncType,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} }\n\t\t\t\t\t>\n\t\t\t\t\t\t<VStack spacing=\"5\">\n\t\t\t\t\t\t\t<TextControl\n\t\t\t\t\t\t\t\tlabel={ __( 'Name' ) }\n\t\t\t\t\t\t\t\tvalue={ title }\n\t\t\t\t\t\t\t\tonChange={ setTitle }\n\t\t\t\t\t\t\t\tplaceholder={ __( 'My pattern' ) }\n\t\t\t\t\t\t\t\tclassName=\"patterns-create-modal__name-input\"\n\t\t\t\t\t\t\t\t__nextHasNoMarginBottom\n\t\t\t\t\t\t\t\t__next40pxDefaultSize\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t<ReusableBlocksRenameHint />\n\t\t\t\t\t\t\t<ToggleControl\n\t\t\t\t\t\t\t\tlabel={ _x(
|
|
1
|
+
{"version":3,"names":["_data","require","_i18n","_components","_element","_editor","_blockEditor","_lockUnlock","_jsxRuntime","ReusableBlocksRenameHint","unlock","blockEditorPrivateApis","InitPatternModal","editPost","useDispatch","editorStore","isModalOpen","setIsModalOpen","useState","syncType","setSyncType","undefined","title","setTitle","postType","isNewPost","useSelect","select","getEditedPostAttribute","isCleanNewPost","useEffect","jsx","Fragment","children","Modal","__","onRequestClose","overlayClassName","onSubmit","event","preventDefault","meta","wp_pattern_sync_status","jsxs","__experimentalVStack","spacing","TextControl","label","value","onChange","placeholder","className","__nextHasNoMarginBottom","__next40pxDefaultSize","ToggleControl","_x","help","checked","__experimentalHStack","justify","Button","variant","type","disabled","__experimentalIsFocusable"],"sources":["@wordpress/edit-post/src/components/init-pattern-modal/index.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport { __, _x } from '@wordpress/i18n';\nimport {\n\tModal,\n\tButton,\n\t__experimentalHStack as HStack,\n\t__experimentalVStack as VStack,\n\tToggleControl,\n\tTextControl,\n} from '@wordpress/components';\nimport { useEffect, useState } from '@wordpress/element';\nimport { store as editorStore } from '@wordpress/editor';\nimport { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor';\n\n/**\n * Internal dependencies\n */\n\nimport { unlock } from '../../lock-unlock';\n\nconst { ReusableBlocksRenameHint } = unlock( blockEditorPrivateApis );\n\nexport default function InitPatternModal() {\n\tconst { editPost } = useDispatch( editorStore );\n\tconst [ isModalOpen, setIsModalOpen ] = useState( false );\n\tconst [ syncType, setSyncType ] = useState( undefined );\n\tconst [ title, setTitle ] = useState( '' );\n\n\tconst { postType, isNewPost } = useSelect( ( select ) => {\n\t\tconst { getEditedPostAttribute, isCleanNewPost } =\n\t\t\tselect( editorStore );\n\t\treturn {\n\t\t\tpostType: getEditedPostAttribute( 'type' ),\n\t\t\tisNewPost: isCleanNewPost(),\n\t\t};\n\t}, [] );\n\n\tuseEffect( () => {\n\t\tif ( isNewPost && postType === 'wp_block' ) {\n\t\t\tsetIsModalOpen( true );\n\t\t}\n\t\t// We only want the modal to open when the page is first loaded.\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps\n\t}, [] );\n\n\tif ( postType !== 'wp_block' || ! isNewPost ) {\n\t\treturn null;\n\t}\n\n\treturn (\n\t\t<>\n\t\t\t{ isModalOpen && (\n\t\t\t\t<Modal\n\t\t\t\t\ttitle={ __( 'Create pattern' ) }\n\t\t\t\t\tonRequestClose={ () => {\n\t\t\t\t\t\tsetIsModalOpen( false );\n\t\t\t\t\t} }\n\t\t\t\t\toverlayClassName=\"reusable-blocks-menu-items__convert-modal\"\n\t\t\t\t>\n\t\t\t\t\t<form\n\t\t\t\t\t\tonSubmit={ ( event ) => {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tsetIsModalOpen( false );\n\t\t\t\t\t\t\teditPost( {\n\t\t\t\t\t\t\t\ttitle,\n\t\t\t\t\t\t\t\tmeta: {\n\t\t\t\t\t\t\t\t\twp_pattern_sync_status: syncType,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} }\n\t\t\t\t\t>\n\t\t\t\t\t\t<VStack spacing=\"5\">\n\t\t\t\t\t\t\t<TextControl\n\t\t\t\t\t\t\t\tlabel={ __( 'Name' ) }\n\t\t\t\t\t\t\t\tvalue={ title }\n\t\t\t\t\t\t\t\tonChange={ setTitle }\n\t\t\t\t\t\t\t\tplaceholder={ __( 'My pattern' ) }\n\t\t\t\t\t\t\t\tclassName=\"patterns-create-modal__name-input\"\n\t\t\t\t\t\t\t\t__nextHasNoMarginBottom\n\t\t\t\t\t\t\t\t__next40pxDefaultSize\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t<ReusableBlocksRenameHint />\n\t\t\t\t\t\t\t<ToggleControl\n\t\t\t\t\t\t\t\tlabel={ _x( 'Synced', 'pattern (singular)' ) }\n\t\t\t\t\t\t\t\thelp={ __(\n\t\t\t\t\t\t\t\t\t'Sync this pattern across multiple locations.'\n\t\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t\t\tchecked={ ! syncType }\n\t\t\t\t\t\t\t\tonChange={ () => {\n\t\t\t\t\t\t\t\t\tsetSyncType(\n\t\t\t\t\t\t\t\t\t\t! syncType ? 'unsynced' : undefined\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t} }\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t<HStack justify=\"right\">\n\t\t\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\t\t\tvariant=\"primary\"\n\t\t\t\t\t\t\t\t\ttype=\"submit\"\n\t\t\t\t\t\t\t\t\tdisabled={ ! title }\n\t\t\t\t\t\t\t\t\t__experimentalIsFocusable\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{ __( 'Create' ) }\n\t\t\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t\t</HStack>\n\t\t\t\t\t\t</VStack>\n\t\t\t\t\t</form>\n\t\t\t\t</Modal>\n\t\t\t) }\n\t\t</>\n\t);\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -9,7 +9,6 @@ var _clsx = _interopRequireDefault(require("clsx"));
|
|
|
9
9
|
var _editor = require("@wordpress/editor");
|
|
10
10
|
var _data = require("@wordpress/data");
|
|
11
11
|
var _blockEditor = require("@wordpress/block-editor");
|
|
12
|
-
var _compose = require("@wordpress/compose");
|
|
13
12
|
var _plugins = require("@wordpress/plugins");
|
|
14
13
|
var _i18n = require("@wordpress/i18n");
|
|
15
14
|
var _element = require("@wordpress/element");
|
|
@@ -19,7 +18,11 @@ var _commands = require("@wordpress/commands");
|
|
|
19
18
|
var _coreCommands = require("@wordpress/core-commands");
|
|
20
19
|
var _blockLibrary = require("@wordpress/block-library");
|
|
21
20
|
var _url = require("@wordpress/url");
|
|
21
|
+
var _htmlEntities = require("@wordpress/html-entities");
|
|
22
|
+
var _coreData = require("@wordpress/core-data");
|
|
23
|
+
var _components = require("@wordpress/components");
|
|
22
24
|
var _backButton = _interopRequireDefault(require("../back-button"));
|
|
25
|
+
var _editorInitialization = _interopRequireDefault(require("../editor-initialization"));
|
|
23
26
|
var _keyboardShortcuts = _interopRequireDefault(require("../keyboard-shortcuts"));
|
|
24
27
|
var _initPatternModal = _interopRequireDefault(require("../init-pattern-modal"));
|
|
25
28
|
var _browserUrl = _interopRequireDefault(require("../browser-url"));
|
|
@@ -31,6 +34,7 @@ var _lockUnlock = require("../../lock-unlock");
|
|
|
31
34
|
var _useCommands = _interopRequireDefault(require("../../commands/use-commands"));
|
|
32
35
|
var _usePaddingAppender = require("./use-padding-appender");
|
|
33
36
|
var _useShouldIframe = require("./use-should-iframe");
|
|
37
|
+
var _useNavigateToEntityRecord = _interopRequireDefault(require("../../hooks/use-navigate-to-entity-record"));
|
|
34
38
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
35
39
|
/**
|
|
36
40
|
* External dependencies
|
|
@@ -54,9 +58,8 @@ const {
|
|
|
54
58
|
useCommandContext
|
|
55
59
|
} = (0, _lockUnlock.unlock)(_commands.privateApis);
|
|
56
60
|
const {
|
|
57
|
-
|
|
58
|
-
FullscreenMode
|
|
59
|
-
Sidebar
|
|
61
|
+
Editor,
|
|
62
|
+
FullscreenMode
|
|
60
63
|
} = (0, _lockUnlock.unlock)(_editor.privateApis);
|
|
61
64
|
const {
|
|
62
65
|
BlockKeyboardShortcuts
|
|
@@ -91,9 +94,9 @@ function useEditorStyles() {
|
|
|
91
94
|
|
|
92
95
|
// Compute the default styles.
|
|
93
96
|
return (0, _element.useMemo)(() => {
|
|
94
|
-
var _editorSettings$style, _editorSettings$style2, _editorSettings$style3;
|
|
97
|
+
var _editorSettings$style, _editorSettings$defau, _editorSettings$style2, _editorSettings$style3;
|
|
95
98
|
const presetStyles = (_editorSettings$style = editorSettings.styles?.filter(style => style.__unstableType && style.__unstableType !== 'theme')) !== null && _editorSettings$style !== void 0 ? _editorSettings$style : [];
|
|
96
|
-
const defaultEditorStyles = [...editorSettings
|
|
99
|
+
const defaultEditorStyles = [...((_editorSettings$defau = editorSettings?.defaultEditorStyles) !== null && _editorSettings$defau !== void 0 ? _editorSettings$defau : []), ...presetStyles];
|
|
97
100
|
|
|
98
101
|
// Has theme styles if the theme supports them and if some styles were not preset styles (in which case they're theme styles).
|
|
99
102
|
const hasThemeStyles = hasThemeStyleSupport && presetStyles.length !== ((_editorSettings$style2 = editorSettings.styles?.length) !== null && _editorSettings$style2 !== void 0 ? _editorSettings$style2 : 0);
|
|
@@ -113,50 +116,62 @@ function useEditorStyles() {
|
|
|
113
116
|
}
|
|
114
117
|
const baseStyles = hasThemeStyles ? (_editorSettings$style3 = editorSettings.styles) !== null && _editorSettings$style3 !== void 0 ? _editorSettings$style3 : [] : defaultEditorStyles;
|
|
115
118
|
|
|
116
|
-
// Add a constant padding for the
|
|
119
|
+
// Add a constant padding for the typewriter effect. When typing at the
|
|
117
120
|
// bottom, there needs to be room to scroll up.
|
|
118
121
|
if (!isZoomedOutView && !hasMetaBoxes && renderingMode === 'post-only' && !DESIGN_POST_TYPES.includes(postType)) {
|
|
119
|
-
baseStyles
|
|
122
|
+
return [...baseStyles, {
|
|
120
123
|
css: 'body{padding-bottom: 40vh}'
|
|
121
|
-
}
|
|
124
|
+
}];
|
|
122
125
|
}
|
|
123
126
|
return baseStyles;
|
|
124
|
-
}, [editorSettings.defaultEditorStyles, editorSettings.disableLayoutStyles, editorSettings.styles, hasThemeStyleSupport]);
|
|
127
|
+
}, [editorSettings.defaultEditorStyles, editorSettings.disableLayoutStyles, editorSettings.styles, hasThemeStyleSupport, postType]);
|
|
125
128
|
}
|
|
126
129
|
function Layout({
|
|
127
|
-
|
|
130
|
+
postId: initialPostId,
|
|
131
|
+
postType: initialPostType,
|
|
132
|
+
settings,
|
|
133
|
+
initialEdits
|
|
128
134
|
}) {
|
|
129
135
|
useCommands();
|
|
130
136
|
(0, _useCommands.default)();
|
|
131
|
-
const isWideViewport = (0, _compose.useViewportMatch)('large');
|
|
132
137
|
const paddingAppenderRef = (0, _usePaddingAppender.usePaddingAppender)();
|
|
133
138
|
const shouldIframe = (0, _useShouldIframe.useShouldIframe)();
|
|
134
139
|
const {
|
|
135
140
|
createErrorNotice
|
|
136
141
|
} = (0, _data.useDispatch)(_notices.store);
|
|
142
|
+
const {
|
|
143
|
+
currentPost,
|
|
144
|
+
onNavigateToEntityRecord,
|
|
145
|
+
onNavigateToPreviousEntityRecord
|
|
146
|
+
} = (0, _useNavigateToEntityRecord.default)(initialPostId, initialPostType, 'post-only');
|
|
137
147
|
const {
|
|
138
148
|
mode,
|
|
139
149
|
isFullscreenActive,
|
|
140
|
-
sidebarIsOpened,
|
|
141
150
|
hasActiveMetaboxes,
|
|
142
151
|
hasBlockSelected,
|
|
143
152
|
showIconLabels,
|
|
144
153
|
isDistractionFree,
|
|
145
|
-
showBlockBreadcrumbs,
|
|
146
154
|
showMetaBoxes,
|
|
147
155
|
hasHistory,
|
|
148
156
|
isEditingTemplate,
|
|
149
|
-
isWelcomeGuideVisible
|
|
157
|
+
isWelcomeGuideVisible,
|
|
158
|
+
templateId
|
|
150
159
|
} = (0, _data.useSelect)(select => {
|
|
160
|
+
var _getPostType$viewable;
|
|
151
161
|
const {
|
|
152
162
|
get
|
|
153
163
|
} = select(_preferences.store);
|
|
154
164
|
const {
|
|
155
|
-
|
|
156
|
-
|
|
165
|
+
isFeatureActive,
|
|
166
|
+
getEditedPostTemplateId
|
|
167
|
+
} = (0, _lockUnlock.unlock)(select(_store.store));
|
|
157
168
|
const {
|
|
158
|
-
|
|
159
|
-
|
|
169
|
+
canUser,
|
|
170
|
+
getPostType
|
|
171
|
+
} = select(_coreData.store);
|
|
172
|
+
const supportsTemplateMode = settings.supportsTemplateMode;
|
|
173
|
+
const isViewable = (_getPostType$viewable = getPostType(currentPost.postType)?.viewable) !== null && _getPostType$viewable !== void 0 ? _getPostType$viewable : false;
|
|
174
|
+
const canViewTemplate = canUser('read', 'templates');
|
|
160
175
|
return {
|
|
161
176
|
mode: select(_editor.store).getEditorMode(),
|
|
162
177
|
isFullscreenActive: select(_store.store).isFeatureActive('fullscreenMode'),
|
|
@@ -164,17 +179,22 @@ function Layout({
|
|
|
164
179
|
hasBlockSelected: !!select(_blockEditor.store).getBlockSelectionStart(),
|
|
165
180
|
showIconLabels: get('core', 'showIconLabels'),
|
|
166
181
|
isDistractionFree: get('core', 'distractionFree'),
|
|
167
|
-
showBlockBreadcrumbs: get('core', 'showBlockBreadcrumbs'),
|
|
168
182
|
showMetaBoxes: select(_editor.store).getRenderingMode() === 'post-only',
|
|
169
|
-
hasHistory: !!getEditorSettings().onNavigateToPreviousEntityRecord,
|
|
170
183
|
isEditingTemplate: select(_editor.store).getCurrentPostType() === 'wp_template',
|
|
171
|
-
isWelcomeGuideVisible: isFeatureActive('welcomeGuide')
|
|
184
|
+
isWelcomeGuideVisible: isFeatureActive('welcomeGuide'),
|
|
185
|
+
templateId: supportsTemplateMode && isViewable && canViewTemplate && currentPost.postType !== 'wp_template' ? getEditedPostTemplateId() : null
|
|
172
186
|
};
|
|
173
|
-
}, []);
|
|
187
|
+
}, [settings.supportsTemplateMode, currentPost.postType]);
|
|
174
188
|
|
|
175
189
|
// Set the right context for the command palette
|
|
176
190
|
const commandContext = hasBlockSelected ? 'block-selection-edit' : 'entity-edit';
|
|
177
191
|
useCommandContext(commandContext);
|
|
192
|
+
const editorSettings = (0, _element.useMemo)(() => ({
|
|
193
|
+
...settings,
|
|
194
|
+
onNavigateToEntityRecord,
|
|
195
|
+
onNavigateToPreviousEntityRecord,
|
|
196
|
+
defaultRenderingMode: 'post-only'
|
|
197
|
+
}), [settings, onNavigateToEntityRecord, onNavigateToPreviousEntityRecord]);
|
|
178
198
|
const styles = useEditorStyles();
|
|
179
199
|
|
|
180
200
|
// We need to add the show-icon-labels class to the body element so it is applied to modals.
|
|
@@ -184,10 +204,7 @@ function Layout({
|
|
|
184
204
|
document.body.classList.remove('show-icon-labels');
|
|
185
205
|
}
|
|
186
206
|
const className = (0, _clsx.default)('edit-post-layout', 'is-mode-' + mode, {
|
|
187
|
-
'
|
|
188
|
-
'has-metaboxes': hasActiveMetaboxes,
|
|
189
|
-
'is-distraction-free': isDistractionFree && isWideViewport,
|
|
190
|
-
'has-block-breadcrumbs': showBlockBreadcrumbs && !isDistractionFree && isWideViewport
|
|
207
|
+
'has-metaboxes': hasActiveMetaboxes
|
|
191
208
|
});
|
|
192
209
|
function onPluginAreaError(name) {
|
|
193
210
|
createErrorNotice((0, _i18n.sprintf)( /* translators: %s: plugin name */
|
|
@@ -213,7 +230,7 @@ function Layout({
|
|
|
213
230
|
const title = typeof newItem.title === 'string' ? newItem.title : newItem.title?.rendered;
|
|
214
231
|
createSuccessNotice((0, _i18n.sprintf)(
|
|
215
232
|
// translators: %s: Title of the created post e.g: "Post 1".
|
|
216
|
-
(0, _i18n.__)('"%s" successfully created.'), title), {
|
|
233
|
+
(0, _i18n.__)('"%s" successfully created.'), (0, _htmlEntities.decodeEntities)(title)), {
|
|
217
234
|
type: 'snackbar',
|
|
218
235
|
id: 'duplicate-post-action',
|
|
219
236
|
actions: [{
|
|
@@ -231,39 +248,54 @@ function Layout({
|
|
|
231
248
|
break;
|
|
232
249
|
}
|
|
233
250
|
}, [createSuccessNotice]);
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
location: "
|
|
262
|
-
}),
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
251
|
+
const initialPost = (0, _element.useMemo)(() => {
|
|
252
|
+
return {
|
|
253
|
+
type: initialPostType,
|
|
254
|
+
id: initialPostId
|
|
255
|
+
};
|
|
256
|
+
}, [initialPostType, initialPostId]);
|
|
257
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.SlotFillProvider, {
|
|
258
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_editor.ErrorBoundary, {
|
|
259
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_commands.CommandMenu, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_welcomeGuide.default, {
|
|
260
|
+
postType: currentPost.postType
|
|
261
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(Editor, {
|
|
262
|
+
settings: editorSettings,
|
|
263
|
+
initialEdits: initialEdits,
|
|
264
|
+
postType: currentPost.postType,
|
|
265
|
+
postId: currentPost.postId,
|
|
266
|
+
templateId: templateId,
|
|
267
|
+
className: className,
|
|
268
|
+
styles: styles,
|
|
269
|
+
forceIsDirty: hasActiveMetaboxes,
|
|
270
|
+
contentRef: paddingAppenderRef,
|
|
271
|
+
disableIframe: !shouldIframe
|
|
272
|
+
// We should auto-focus the canvas (title) on load.
|
|
273
|
+
// eslint-disable-next-line jsx-a11y/no-autofocus
|
|
274
|
+
,
|
|
275
|
+
autoFocus: !isWelcomeGuideVisible,
|
|
276
|
+
onActionPerformed: onActionPerformed,
|
|
277
|
+
extraSidebarPanels: !isEditingTemplate && /*#__PURE__*/(0, _jsxRuntime.jsx)(_metaBoxes.default, {
|
|
278
|
+
location: "side"
|
|
279
|
+
}),
|
|
280
|
+
extraContent: !isDistractionFree && showMetaBoxes && /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
281
|
+
className: "edit-post-layout__metaboxes",
|
|
282
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_metaBoxes.default, {
|
|
283
|
+
location: "normal"
|
|
284
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_metaBoxes.default, {
|
|
285
|
+
location: "advanced"
|
|
286
|
+
})]
|
|
287
|
+
}),
|
|
288
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.PostLockedModal, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_editorInitialization.default, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(FullscreenMode, {
|
|
289
|
+
isActive: isFullscreenActive
|
|
290
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_browserUrl.default, {
|
|
291
|
+
hasHistory: hasHistory
|
|
292
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.UnsavedChangesWarning, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.AutosaveMonitor, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.LocalAutosaveMonitor, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_keyboardShortcuts.default, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.EditorKeyboardShortcutsRegister, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(BlockKeyboardShortcuts, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_initPatternModal.default, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_plugins.PluginArea, {
|
|
293
|
+
onError: onPluginAreaError
|
|
294
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_moreMenu.default, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_backButton.default, {
|
|
295
|
+
initialPost: initialPost
|
|
296
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_editor.EditorSnackbars, {})]
|
|
297
|
+
})]
|
|
298
|
+
})
|
|
267
299
|
});
|
|
268
300
|
}
|
|
269
301
|
var _default = exports.default = Layout;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_clsx","_interopRequireDefault","require","_editor","_data","_blockEditor","_compose","_plugins","_i18n","_element","_notices","_preferences","_commands","_coreCommands","_blockLibrary","_url","_backButton","_keyboardShortcuts","_initPatternModal","_browserUrl","_metaBoxes","_moreMenu","_welcomeGuide","_store","_lockUnlock","_useCommands","_usePaddingAppender","_useShouldIframe","_jsxRuntime","getLayoutStyles","unlock","blockEditorPrivateApis","useCommands","coreCommandsPrivateApis","useCommandContext","commandsPrivateApis","EditorInterface","FullscreenMode","Sidebar","editorPrivateApis","BlockKeyboardShortcuts","blockLibraryPrivateApis","DESIGN_POST_TYPES","useEditorStyles","hasThemeStyleSupport","editorSettings","isZoomedOutView","hasMetaBoxes","renderingMode","postType","useSelect","select","__unstableGetEditorMode","blockEditorStore","getCurrentPostType","getRenderingMode","editorStore","_postType","editPostStore","isFeatureActive","getEditorSettings","useMemo","_editorSettings$style","_editorSettings$style2","_editorSettings$style3","presetStyles","styles","filter","style","__unstableType","defaultEditorStyles","hasThemeStyles","length","disableLayoutStyles","push","css","selector","hasBlockGapSupport","hasFallbackGapSupport","fallbackGapValue","baseStyles","includes","Layout","initialPost","useEditPostCommands","isWideViewport","useViewportMatch","paddingAppenderRef","usePaddingAppender","shouldIframe","useShouldIframe","createErrorNotice","useDispatch","noticesStore","mode","isFullscreenActive","sidebarIsOpened","hasActiveMetaboxes","hasBlockSelected","showIconLabels","isDistractionFree","showBlockBreadcrumbs","showMetaBoxes","hasHistory","isEditingTemplate","isWelcomeGuideVisible","get","preferencesStore","getEditorMode","getBlockSelectionStart","onNavigateToPreviousEntityRecord","commandContext","document","body","classList","add","remove","className","clsx","onPluginAreaError","name","sprintf","__","createSuccessNotice","onActionPerformed","useCallback","actionId","items","location","href","addQueryArgs","trashed","post_type","type","ids","id","newItem","title","rendered","actions","label","onClick","postId","post","action","jsxs","Fragment","children","jsx","isActive","default","UnsavedChangesWarning","AutosaveMonitor","LocalAutosaveMonitor","EditorKeyboardShortcutsRegister","PluginArea","onError","extraPanels","EditorSnackbars","forceIsDirty","contentRef","disableIframe","autoFocus","_default","exports"],"sources":["@wordpress/edit-post/src/components/layout/index.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport clsx from 'clsx';\n\n/**\n * WordPress dependencies\n */\nimport {\n\tAutosaveMonitor,\n\tLocalAutosaveMonitor,\n\tUnsavedChangesWarning,\n\tEditorKeyboardShortcutsRegister,\n\tEditorSnackbars,\n\tstore as editorStore,\n\tprivateApis as editorPrivateApis,\n} from '@wordpress/editor';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport {\n\tprivateApis as blockEditorPrivateApis,\n\tstore as blockEditorStore,\n} from '@wordpress/block-editor';\nimport { useViewportMatch } from '@wordpress/compose';\nimport { PluginArea } from '@wordpress/plugins';\nimport { __, sprintf } from '@wordpress/i18n';\nimport { useCallback, useMemo } from '@wordpress/element';\nimport { store as noticesStore } from '@wordpress/notices';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport { privateApis as commandsPrivateApis } from '@wordpress/commands';\nimport { privateApis as coreCommandsPrivateApis } from '@wordpress/core-commands';\nimport { privateApis as blockLibraryPrivateApis } from '@wordpress/block-library';\nimport { addQueryArgs } from '@wordpress/url';\n\n/**\n * Internal dependencies\n */\nimport BackButton from '../back-button';\nimport EditPostKeyboardShortcuts from '../keyboard-shortcuts';\nimport InitPatternModal from '../init-pattern-modal';\nimport BrowserURL from '../browser-url';\nimport MetaBoxes from '../meta-boxes';\nimport PostEditorMoreMenu from '../more-menu';\nimport WelcomeGuide from '../welcome-guide';\nimport { store as editPostStore } from '../../store';\nimport { unlock } from '../../lock-unlock';\nimport useEditPostCommands from '../../commands/use-commands';\nimport { usePaddingAppender } from './use-padding-appender';\nimport { useShouldIframe } from './use-should-iframe';\n\nconst { getLayoutStyles } = unlock( blockEditorPrivateApis );\nconst { useCommands } = unlock( coreCommandsPrivateApis );\nconst { useCommandContext } = unlock( commandsPrivateApis );\nconst { EditorInterface, FullscreenMode, Sidebar } =\n\tunlock( editorPrivateApis );\nconst { BlockKeyboardShortcuts } = unlock( blockLibraryPrivateApis );\nconst DESIGN_POST_TYPES = [\n\t'wp_template',\n\t'wp_template_part',\n\t'wp_block',\n\t'wp_navigation',\n];\n\nfunction useEditorStyles() {\n\tconst {\n\t\thasThemeStyleSupport,\n\t\teditorSettings,\n\t\tisZoomedOutView,\n\t\thasMetaBoxes,\n\t\trenderingMode,\n\t\tpostType,\n\t} = useSelect( ( select ) => {\n\t\tconst { __unstableGetEditorMode } = select( blockEditorStore );\n\t\tconst { getCurrentPostType, getRenderingMode } = select( editorStore );\n\t\tconst _postType = getCurrentPostType();\n\t\treturn {\n\t\t\thasThemeStyleSupport:\n\t\t\t\tselect( editPostStore ).isFeatureActive( 'themeStyles' ),\n\t\t\teditorSettings: select( editorStore ).getEditorSettings(),\n\t\t\tisZoomedOutView: __unstableGetEditorMode() === 'zoom-out',\n\t\t\thasMetaBoxes: select( editPostStore ).hasMetaBoxes(),\n\t\t\trenderingMode: getRenderingMode(),\n\t\t\tpostType: _postType,\n\t\t};\n\t}, [] );\n\n\t// Compute the default styles.\n\treturn useMemo( () => {\n\t\tconst presetStyles =\n\t\t\teditorSettings.styles?.filter(\n\t\t\t\t( style ) =>\n\t\t\t\t\tstyle.__unstableType && style.__unstableType !== 'theme'\n\t\t\t) ?? [];\n\n\t\tconst defaultEditorStyles = [\n\t\t\t...editorSettings.defaultEditorStyles,\n\t\t\t...presetStyles,\n\t\t];\n\n\t\t// Has theme styles if the theme supports them and if some styles were not preset styles (in which case they're theme styles).\n\t\tconst hasThemeStyles =\n\t\t\thasThemeStyleSupport &&\n\t\t\tpresetStyles.length !== ( editorSettings.styles?.length ?? 0 );\n\n\t\t// If theme styles are not present or displayed, ensure that\n\t\t// base layout styles are still present in the editor.\n\t\tif ( ! editorSettings.disableLayoutStyles && ! hasThemeStyles ) {\n\t\t\tdefaultEditorStyles.push( {\n\t\t\t\tcss: getLayoutStyles( {\n\t\t\t\t\tstyle: {},\n\t\t\t\t\tselector: 'body',\n\t\t\t\t\thasBlockGapSupport: false,\n\t\t\t\t\thasFallbackGapSupport: true,\n\t\t\t\t\tfallbackGapValue: '0.5em',\n\t\t\t\t} ),\n\t\t\t} );\n\t\t}\n\n\t\tconst baseStyles = hasThemeStyles\n\t\t\t? editorSettings.styles ?? []\n\t\t\t: defaultEditorStyles;\n\n\t\t// Add a constant padding for the typewritter effect. When typing at the\n\t\t// bottom, there needs to be room to scroll up.\n\t\tif (\n\t\t\t! isZoomedOutView &&\n\t\t\t! hasMetaBoxes &&\n\t\t\trenderingMode === 'post-only' &&\n\t\t\t! DESIGN_POST_TYPES.includes( postType )\n\t\t) {\n\t\t\tbaseStyles.push( {\n\t\t\t\tcss: 'body{padding-bottom: 40vh}',\n\t\t\t} );\n\t\t}\n\n\t\treturn baseStyles;\n\t}, [\n\t\teditorSettings.defaultEditorStyles,\n\t\teditorSettings.disableLayoutStyles,\n\t\teditorSettings.styles,\n\t\thasThemeStyleSupport,\n\t] );\n}\n\nfunction Layout( { initialPost } ) {\n\tuseCommands();\n\tuseEditPostCommands();\n\tconst isWideViewport = useViewportMatch( 'large' );\n\tconst paddingAppenderRef = usePaddingAppender();\n\tconst shouldIframe = useShouldIframe();\n\tconst { createErrorNotice } = useDispatch( noticesStore );\n\tconst {\n\t\tmode,\n\t\tisFullscreenActive,\n\t\tsidebarIsOpened,\n\t\thasActiveMetaboxes,\n\t\thasBlockSelected,\n\t\tshowIconLabels,\n\t\tisDistractionFree,\n\t\tshowBlockBreadcrumbs,\n\t\tshowMetaBoxes,\n\t\thasHistory,\n\t\tisEditingTemplate,\n\t\tisWelcomeGuideVisible,\n\t} = useSelect( ( select ) => {\n\t\tconst { get } = select( preferencesStore );\n\t\tconst { getEditorSettings } = select( editorStore );\n\t\tconst { isFeatureActive } = select( editPostStore );\n\n\t\treturn {\n\t\t\tmode: select( editorStore ).getEditorMode(),\n\t\t\tisFullscreenActive:\n\t\t\t\tselect( editPostStore ).isFeatureActive( 'fullscreenMode' ),\n\t\t\thasActiveMetaboxes: select( editPostStore ).hasMetaBoxes(),\n\t\t\thasBlockSelected:\n\t\t\t\t!! select( blockEditorStore ).getBlockSelectionStart(),\n\t\t\tshowIconLabels: get( 'core', 'showIconLabels' ),\n\t\t\tisDistractionFree: get( 'core', 'distractionFree' ),\n\t\t\tshowBlockBreadcrumbs: get( 'core', 'showBlockBreadcrumbs' ),\n\t\t\tshowMetaBoxes:\n\t\t\t\tselect( editorStore ).getRenderingMode() === 'post-only',\n\t\t\thasHistory: !! getEditorSettings().onNavigateToPreviousEntityRecord,\n\t\t\tisEditingTemplate:\n\t\t\t\tselect( editorStore ).getCurrentPostType() === 'wp_template',\n\t\t\tisWelcomeGuideVisible: isFeatureActive( 'welcomeGuide' ),\n\t\t};\n\t}, [] );\n\n\t// Set the right context for the command palette\n\tconst commandContext = hasBlockSelected\n\t\t? 'block-selection-edit'\n\t\t: 'entity-edit';\n\tuseCommandContext( commandContext );\n\n\tconst styles = useEditorStyles();\n\n\t// We need to add the show-icon-labels class to the body element so it is applied to modals.\n\tif ( showIconLabels ) {\n\t\tdocument.body.classList.add( 'show-icon-labels' );\n\t} else {\n\t\tdocument.body.classList.remove( 'show-icon-labels' );\n\t}\n\n\tconst className = clsx( 'edit-post-layout', 'is-mode-' + mode, {\n\t\t'is-sidebar-opened': sidebarIsOpened,\n\t\t'has-metaboxes': hasActiveMetaboxes,\n\t\t'is-distraction-free': isDistractionFree && isWideViewport,\n\t\t'has-block-breadcrumbs':\n\t\t\tshowBlockBreadcrumbs && ! isDistractionFree && isWideViewport,\n\t} );\n\n\tfunction onPluginAreaError( name ) {\n\t\tcreateErrorNotice(\n\t\t\tsprintf(\n\t\t\t\t/* translators: %s: plugin name */\n\t\t\t\t__(\n\t\t\t\t\t'The \"%s\" plugin has encountered an error and cannot be rendered.'\n\t\t\t\t),\n\t\t\t\tname\n\t\t\t)\n\t\t);\n\t}\n\n\tconst { createSuccessNotice } = useDispatch( noticesStore );\n\n\tconst onActionPerformed = useCallback(\n\t\t( actionId, items ) => {\n\t\t\tswitch ( actionId ) {\n\t\t\t\tcase 'move-to-trash':\n\t\t\t\t\t{\n\t\t\t\t\t\tdocument.location.href = addQueryArgs( 'edit.php', {\n\t\t\t\t\t\t\ttrashed: 1,\n\t\t\t\t\t\t\tpost_type: items[ 0 ].type,\n\t\t\t\t\t\t\tids: items[ 0 ].id,\n\t\t\t\t\t\t} );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'duplicate-post':\n\t\t\t\t\t{\n\t\t\t\t\t\tconst newItem = items[ 0 ];\n\t\t\t\t\t\tconst title =\n\t\t\t\t\t\t\ttypeof newItem.title === 'string'\n\t\t\t\t\t\t\t\t? newItem.title\n\t\t\t\t\t\t\t\t: newItem.title?.rendered;\n\t\t\t\t\t\tcreateSuccessNotice(\n\t\t\t\t\t\t\tsprintf(\n\t\t\t\t\t\t\t\t// translators: %s: Title of the created post e.g: \"Post 1\".\n\t\t\t\t\t\t\t\t__( '\"%s\" successfully created.' ),\n\t\t\t\t\t\t\t\ttitle\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttype: 'snackbar',\n\t\t\t\t\t\t\t\tid: 'duplicate-post-action',\n\t\t\t\t\t\t\t\tactions: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tlabel: __( 'Edit' ),\n\t\t\t\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tconst postId = newItem.id;\n\t\t\t\t\t\t\t\t\t\t\tdocument.location.href =\n\t\t\t\t\t\t\t\t\t\t\t\taddQueryArgs( 'post.php', {\n\t\t\t\t\t\t\t\t\t\t\t\t\tpost: postId,\n\t\t\t\t\t\t\t\t\t\t\t\t\taction: 'edit',\n\t\t\t\t\t\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t},\n\t\t[ createSuccessNotice ]\n\t);\n\n\treturn (\n\t\t<>\n\t\t\t<FullscreenMode isActive={ isFullscreenActive } />\n\t\t\t<BrowserURL hasHistory={ hasHistory } />\n\t\t\t<UnsavedChangesWarning />\n\t\t\t<AutosaveMonitor />\n\t\t\t<LocalAutosaveMonitor />\n\t\t\t<EditPostKeyboardShortcuts />\n\t\t\t<EditorKeyboardShortcutsRegister />\n\t\t\t<BlockKeyboardShortcuts />\n\t\t\t<WelcomeGuide />\n\t\t\t<InitPatternModal />\n\t\t\t<PluginArea onError={ onPluginAreaError } />\n\t\t\t{ ! isDistractionFree && (\n\t\t\t\t<Sidebar\n\t\t\t\t\tonActionPerformed={ onActionPerformed }\n\t\t\t\t\textraPanels={\n\t\t\t\t\t\t! isEditingTemplate && <MetaBoxes location=\"side\" />\n\t\t\t\t\t}\n\t\t\t\t/>\n\t\t\t) }\n\t\t\t<PostEditorMoreMenu />\n\t\t\t<BackButton initialPost={ initialPost } />\n\t\t\t<EditorSnackbars />\n\t\t\t<EditorInterface\n\t\t\t\tclassName={ className }\n\t\t\t\tstyles={ styles }\n\t\t\t\tforceIsDirty={ hasActiveMetaboxes }\n\t\t\t\tcontentRef={ paddingAppenderRef }\n\t\t\t\tdisableIframe={ ! shouldIframe }\n\t\t\t\t// We should auto-focus the canvas (title) on load.\n\t\t\t\t// eslint-disable-next-line jsx-a11y/no-autofocus\n\t\t\t\tautoFocus={ ! isWelcomeGuideVisible }\n\t\t\t>\n\t\t\t\t{ ! isDistractionFree && showMetaBoxes && (\n\t\t\t\t\t<div className=\"edit-post-layout__metaboxes\">\n\t\t\t\t\t\t<MetaBoxes location=\"normal\" />\n\t\t\t\t\t\t<MetaBoxes location=\"advanced\" />\n\t\t\t\t\t</div>\n\t\t\t\t) }\n\t\t\t</EditorInterface>\n\t\t</>\n\t);\n}\n\nexport default Layout;\n"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["_clsx","_interopRequireDefault","require","_editor","_data","_blockEditor","_plugins","_i18n","_element","_notices","_preferences","_commands","_coreCommands","_blockLibrary","_url","_htmlEntities","_coreData","_components","_backButton","_editorInitialization","_keyboardShortcuts","_initPatternModal","_browserUrl","_metaBoxes","_moreMenu","_welcomeGuide","_store","_lockUnlock","_useCommands","_usePaddingAppender","_useShouldIframe","_useNavigateToEntityRecord","_jsxRuntime","getLayoutStyles","unlock","blockEditorPrivateApis","useCommands","coreCommandsPrivateApis","useCommandContext","commandsPrivateApis","Editor","FullscreenMode","editorPrivateApis","BlockKeyboardShortcuts","blockLibraryPrivateApis","DESIGN_POST_TYPES","useEditorStyles","hasThemeStyleSupport","editorSettings","isZoomedOutView","hasMetaBoxes","renderingMode","postType","useSelect","select","__unstableGetEditorMode","blockEditorStore","getCurrentPostType","getRenderingMode","editorStore","_postType","editPostStore","isFeatureActive","getEditorSettings","useMemo","_editorSettings$style","_editorSettings$defau","_editorSettings$style2","_editorSettings$style3","presetStyles","styles","filter","style","__unstableType","defaultEditorStyles","hasThemeStyles","length","disableLayoutStyles","push","css","selector","hasBlockGapSupport","hasFallbackGapSupport","fallbackGapValue","baseStyles","includes","Layout","postId","initialPostId","initialPostType","settings","initialEdits","useEditPostCommands","paddingAppenderRef","usePaddingAppender","shouldIframe","useShouldIframe","createErrorNotice","useDispatch","noticesStore","currentPost","onNavigateToEntityRecord","onNavigateToPreviousEntityRecord","useNavigateToEntityRecord","mode","isFullscreenActive","hasActiveMetaboxes","hasBlockSelected","showIconLabels","isDistractionFree","showMetaBoxes","hasHistory","isEditingTemplate","isWelcomeGuideVisible","templateId","_getPostType$viewable","get","preferencesStore","getEditedPostTemplateId","canUser","getPostType","coreStore","supportsTemplateMode","isViewable","viewable","canViewTemplate","getEditorMode","getBlockSelectionStart","commandContext","defaultRenderingMode","document","body","classList","add","remove","className","clsx","onPluginAreaError","name","sprintf","__","createSuccessNotice","onActionPerformed","useCallback","actionId","items","location","href","addQueryArgs","trashed","post_type","type","ids","id","newItem","title","rendered","decodeEntities","actions","label","onClick","post","action","initialPost","jsx","SlotFillProvider","children","jsxs","ErrorBoundary","CommandMenu","default","forceIsDirty","contentRef","disableIframe","autoFocus","extraSidebarPanels","extraContent","PostLockedModal","isActive","UnsavedChangesWarning","AutosaveMonitor","LocalAutosaveMonitor","EditorKeyboardShortcutsRegister","PluginArea","onError","EditorSnackbars","_default","exports"],"sources":["@wordpress/edit-post/src/components/layout/index.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport clsx from 'clsx';\n\n/**\n * WordPress dependencies\n */\nimport {\n\tAutosaveMonitor,\n\tLocalAutosaveMonitor,\n\tUnsavedChangesWarning,\n\tEditorKeyboardShortcutsRegister,\n\tEditorSnackbars,\n\tErrorBoundary,\n\tPostLockedModal,\n\tstore as editorStore,\n\tprivateApis as editorPrivateApis,\n} from '@wordpress/editor';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport {\n\tprivateApis as blockEditorPrivateApis,\n\tstore as blockEditorStore,\n} from '@wordpress/block-editor';\nimport { PluginArea } from '@wordpress/plugins';\nimport { __, sprintf } from '@wordpress/i18n';\nimport { useCallback, useMemo } from '@wordpress/element';\nimport { store as noticesStore } from '@wordpress/notices';\nimport { store as preferencesStore } from '@wordpress/preferences';\nimport {\n\tCommandMenu,\n\tprivateApis as commandsPrivateApis,\n} from '@wordpress/commands';\nimport { privateApis as coreCommandsPrivateApis } from '@wordpress/core-commands';\nimport { privateApis as blockLibraryPrivateApis } from '@wordpress/block-library';\nimport { addQueryArgs } from '@wordpress/url';\nimport { decodeEntities } from '@wordpress/html-entities';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { SlotFillProvider } from '@wordpress/components';\n\n/**\n * Internal dependencies\n */\nimport BackButton from '../back-button';\nimport EditorInitialization from '../editor-initialization';\nimport EditPostKeyboardShortcuts from '../keyboard-shortcuts';\nimport InitPatternModal from '../init-pattern-modal';\nimport BrowserURL from '../browser-url';\nimport MetaBoxes from '../meta-boxes';\nimport PostEditorMoreMenu from '../more-menu';\nimport WelcomeGuide from '../welcome-guide';\nimport { store as editPostStore } from '../../store';\nimport { unlock } from '../../lock-unlock';\nimport useEditPostCommands from '../../commands/use-commands';\nimport { usePaddingAppender } from './use-padding-appender';\nimport { useShouldIframe } from './use-should-iframe';\nimport useNavigateToEntityRecord from '../../hooks/use-navigate-to-entity-record';\n\nconst { getLayoutStyles } = unlock( blockEditorPrivateApis );\nconst { useCommands } = unlock( coreCommandsPrivateApis );\nconst { useCommandContext } = unlock( commandsPrivateApis );\nconst { Editor, FullscreenMode } = unlock( editorPrivateApis );\nconst { BlockKeyboardShortcuts } = unlock( blockLibraryPrivateApis );\nconst DESIGN_POST_TYPES = [\n\t'wp_template',\n\t'wp_template_part',\n\t'wp_block',\n\t'wp_navigation',\n];\n\nfunction useEditorStyles() {\n\tconst {\n\t\thasThemeStyleSupport,\n\t\teditorSettings,\n\t\tisZoomedOutView,\n\t\thasMetaBoxes,\n\t\trenderingMode,\n\t\tpostType,\n\t} = useSelect( ( select ) => {\n\t\tconst { __unstableGetEditorMode } = select( blockEditorStore );\n\t\tconst { getCurrentPostType, getRenderingMode } = select( editorStore );\n\t\tconst _postType = getCurrentPostType();\n\t\treturn {\n\t\t\thasThemeStyleSupport:\n\t\t\t\tselect( editPostStore ).isFeatureActive( 'themeStyles' ),\n\t\t\teditorSettings: select( editorStore ).getEditorSettings(),\n\t\t\tisZoomedOutView: __unstableGetEditorMode() === 'zoom-out',\n\t\t\thasMetaBoxes: select( editPostStore ).hasMetaBoxes(),\n\t\t\trenderingMode: getRenderingMode(),\n\t\t\tpostType: _postType,\n\t\t};\n\t}, [] );\n\n\t// Compute the default styles.\n\treturn useMemo( () => {\n\t\tconst presetStyles =\n\t\t\teditorSettings.styles?.filter(\n\t\t\t\t( style ) =>\n\t\t\t\t\tstyle.__unstableType && style.__unstableType !== 'theme'\n\t\t\t) ?? [];\n\n\t\tconst defaultEditorStyles = [\n\t\t\t...( editorSettings?.defaultEditorStyles ?? [] ),\n\t\t\t...presetStyles,\n\t\t];\n\n\t\t// Has theme styles if the theme supports them and if some styles were not preset styles (in which case they're theme styles).\n\t\tconst hasThemeStyles =\n\t\t\thasThemeStyleSupport &&\n\t\t\tpresetStyles.length !== ( editorSettings.styles?.length ?? 0 );\n\n\t\t// If theme styles are not present or displayed, ensure that\n\t\t// base layout styles are still present in the editor.\n\t\tif ( ! editorSettings.disableLayoutStyles && ! hasThemeStyles ) {\n\t\t\tdefaultEditorStyles.push( {\n\t\t\t\tcss: getLayoutStyles( {\n\t\t\t\t\tstyle: {},\n\t\t\t\t\tselector: 'body',\n\t\t\t\t\thasBlockGapSupport: false,\n\t\t\t\t\thasFallbackGapSupport: true,\n\t\t\t\t\tfallbackGapValue: '0.5em',\n\t\t\t\t} ),\n\t\t\t} );\n\t\t}\n\n\t\tconst baseStyles = hasThemeStyles\n\t\t\t? editorSettings.styles ?? []\n\t\t\t: defaultEditorStyles;\n\n\t\t// Add a constant padding for the typewriter effect. When typing at the\n\t\t// bottom, there needs to be room to scroll up.\n\t\tif (\n\t\t\t! isZoomedOutView &&\n\t\t\t! hasMetaBoxes &&\n\t\t\trenderingMode === 'post-only' &&\n\t\t\t! DESIGN_POST_TYPES.includes( postType )\n\t\t) {\n\t\t\treturn [\n\t\t\t\t...baseStyles,\n\t\t\t\t{\n\t\t\t\t\tcss: 'body{padding-bottom: 40vh}',\n\t\t\t\t},\n\t\t\t];\n\t\t}\n\n\t\treturn baseStyles;\n\t}, [\n\t\teditorSettings.defaultEditorStyles,\n\t\teditorSettings.disableLayoutStyles,\n\t\teditorSettings.styles,\n\t\thasThemeStyleSupport,\n\t\tpostType,\n\t] );\n}\n\nfunction Layout( {\n\tpostId: initialPostId,\n\tpostType: initialPostType,\n\tsettings,\n\tinitialEdits,\n} ) {\n\tuseCommands();\n\tuseEditPostCommands();\n\tconst paddingAppenderRef = usePaddingAppender();\n\tconst shouldIframe = useShouldIframe();\n\tconst { createErrorNotice } = useDispatch( noticesStore );\n\tconst {\n\t\tcurrentPost,\n\t\tonNavigateToEntityRecord,\n\t\tonNavigateToPreviousEntityRecord,\n\t} = useNavigateToEntityRecord(\n\t\tinitialPostId,\n\t\tinitialPostType,\n\t\t'post-only'\n\t);\n\tconst {\n\t\tmode,\n\t\tisFullscreenActive,\n\t\thasActiveMetaboxes,\n\t\thasBlockSelected,\n\t\tshowIconLabels,\n\t\tisDistractionFree,\n\t\tshowMetaBoxes,\n\t\thasHistory,\n\t\tisEditingTemplate,\n\t\tisWelcomeGuideVisible,\n\t\ttemplateId,\n\t} = useSelect(\n\t\t( select ) => {\n\t\t\tconst { get } = select( preferencesStore );\n\t\t\tconst { isFeatureActive, getEditedPostTemplateId } = unlock(\n\t\t\t\tselect( editPostStore )\n\t\t\t);\n\t\t\tconst { canUser, getPostType } = select( coreStore );\n\n\t\t\tconst supportsTemplateMode = settings.supportsTemplateMode;\n\t\t\tconst isViewable =\n\t\t\t\tgetPostType( currentPost.postType )?.viewable ?? false;\n\t\t\tconst canViewTemplate = canUser( 'read', 'templates' );\n\n\t\t\treturn {\n\t\t\t\tmode: select( editorStore ).getEditorMode(),\n\t\t\t\tisFullscreenActive:\n\t\t\t\t\tselect( editPostStore ).isFeatureActive( 'fullscreenMode' ),\n\t\t\t\thasActiveMetaboxes: select( editPostStore ).hasMetaBoxes(),\n\t\t\t\thasBlockSelected:\n\t\t\t\t\t!! select( blockEditorStore ).getBlockSelectionStart(),\n\t\t\t\tshowIconLabels: get( 'core', 'showIconLabels' ),\n\t\t\t\tisDistractionFree: get( 'core', 'distractionFree' ),\n\t\t\t\tshowMetaBoxes:\n\t\t\t\t\tselect( editorStore ).getRenderingMode() === 'post-only',\n\t\t\t\tisEditingTemplate:\n\t\t\t\t\tselect( editorStore ).getCurrentPostType() ===\n\t\t\t\t\t'wp_template',\n\t\t\t\tisWelcomeGuideVisible: isFeatureActive( 'welcomeGuide' ),\n\t\t\t\ttemplateId:\n\t\t\t\t\tsupportsTemplateMode &&\n\t\t\t\t\tisViewable &&\n\t\t\t\t\tcanViewTemplate &&\n\t\t\t\t\tcurrentPost.postType !== 'wp_template'\n\t\t\t\t\t\t? getEditedPostTemplateId()\n\t\t\t\t\t\t: null,\n\t\t\t};\n\t\t},\n\t\t[ settings.supportsTemplateMode, currentPost.postType ]\n\t);\n\n\t// Set the right context for the command palette\n\tconst commandContext = hasBlockSelected\n\t\t? 'block-selection-edit'\n\t\t: 'entity-edit';\n\tuseCommandContext( commandContext );\n\tconst editorSettings = useMemo(\n\t\t() => ( {\n\t\t\t...settings,\n\t\t\tonNavigateToEntityRecord,\n\t\t\tonNavigateToPreviousEntityRecord,\n\t\t\tdefaultRenderingMode: 'post-only',\n\t\t} ),\n\t\t[ settings, onNavigateToEntityRecord, onNavigateToPreviousEntityRecord ]\n\t);\n\tconst styles = useEditorStyles();\n\n\t// We need to add the show-icon-labels class to the body element so it is applied to modals.\n\tif ( showIconLabels ) {\n\t\tdocument.body.classList.add( 'show-icon-labels' );\n\t} else {\n\t\tdocument.body.classList.remove( 'show-icon-labels' );\n\t}\n\n\tconst className = clsx( 'edit-post-layout', 'is-mode-' + mode, {\n\t\t'has-metaboxes': hasActiveMetaboxes,\n\t} );\n\n\tfunction onPluginAreaError( name ) {\n\t\tcreateErrorNotice(\n\t\t\tsprintf(\n\t\t\t\t/* translators: %s: plugin name */\n\t\t\t\t__(\n\t\t\t\t\t'The \"%s\" plugin has encountered an error and cannot be rendered.'\n\t\t\t\t),\n\t\t\t\tname\n\t\t\t)\n\t\t);\n\t}\n\n\tconst { createSuccessNotice } = useDispatch( noticesStore );\n\n\tconst onActionPerformed = useCallback(\n\t\t( actionId, items ) => {\n\t\t\tswitch ( actionId ) {\n\t\t\t\tcase 'move-to-trash':\n\t\t\t\t\t{\n\t\t\t\t\t\tdocument.location.href = addQueryArgs( 'edit.php', {\n\t\t\t\t\t\t\ttrashed: 1,\n\t\t\t\t\t\t\tpost_type: items[ 0 ].type,\n\t\t\t\t\t\t\tids: items[ 0 ].id,\n\t\t\t\t\t\t} );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'duplicate-post':\n\t\t\t\t\t{\n\t\t\t\t\t\tconst newItem = items[ 0 ];\n\t\t\t\t\t\tconst title =\n\t\t\t\t\t\t\ttypeof newItem.title === 'string'\n\t\t\t\t\t\t\t\t? newItem.title\n\t\t\t\t\t\t\t\t: newItem.title?.rendered;\n\t\t\t\t\t\tcreateSuccessNotice(\n\t\t\t\t\t\t\tsprintf(\n\t\t\t\t\t\t\t\t// translators: %s: Title of the created post e.g: \"Post 1\".\n\t\t\t\t\t\t\t\t__( '\"%s\" successfully created.' ),\n\t\t\t\t\t\t\t\tdecodeEntities( title )\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttype: 'snackbar',\n\t\t\t\t\t\t\t\tid: 'duplicate-post-action',\n\t\t\t\t\t\t\t\tactions: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tlabel: __( 'Edit' ),\n\t\t\t\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tconst postId = newItem.id;\n\t\t\t\t\t\t\t\t\t\t\tdocument.location.href =\n\t\t\t\t\t\t\t\t\t\t\t\taddQueryArgs( 'post.php', {\n\t\t\t\t\t\t\t\t\t\t\t\t\tpost: postId,\n\t\t\t\t\t\t\t\t\t\t\t\t\taction: 'edit',\n\t\t\t\t\t\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t},\n\t\t[ createSuccessNotice ]\n\t);\n\n\tconst initialPost = useMemo( () => {\n\t\treturn {\n\t\t\ttype: initialPostType,\n\t\t\tid: initialPostId,\n\t\t};\n\t}, [ initialPostType, initialPostId ] );\n\treturn (\n\t\t<SlotFillProvider>\n\t\t\t<ErrorBoundary>\n\t\t\t\t<CommandMenu />\n\t\t\t\t<WelcomeGuide postType={ currentPost.postType } />\n\t\t\t\t<Editor\n\t\t\t\t\tsettings={ editorSettings }\n\t\t\t\t\tinitialEdits={ initialEdits }\n\t\t\t\t\tpostType={ currentPost.postType }\n\t\t\t\t\tpostId={ currentPost.postId }\n\t\t\t\t\ttemplateId={ templateId }\n\t\t\t\t\tclassName={ className }\n\t\t\t\t\tstyles={ styles }\n\t\t\t\t\tforceIsDirty={ hasActiveMetaboxes }\n\t\t\t\t\tcontentRef={ paddingAppenderRef }\n\t\t\t\t\tdisableIframe={ ! shouldIframe }\n\t\t\t\t\t// We should auto-focus the canvas (title) on load.\n\t\t\t\t\t// eslint-disable-next-line jsx-a11y/no-autofocus\n\t\t\t\t\tautoFocus={ ! isWelcomeGuideVisible }\n\t\t\t\t\tonActionPerformed={ onActionPerformed }\n\t\t\t\t\textraSidebarPanels={\n\t\t\t\t\t\t! isEditingTemplate && <MetaBoxes location=\"side\" />\n\t\t\t\t\t}\n\t\t\t\t\textraContent={\n\t\t\t\t\t\t! isDistractionFree &&\n\t\t\t\t\t\tshowMetaBoxes && (\n\t\t\t\t\t\t\t<div className=\"edit-post-layout__metaboxes\">\n\t\t\t\t\t\t\t\t<MetaBoxes location=\"normal\" />\n\t\t\t\t\t\t\t\t<MetaBoxes location=\"advanced\" />\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t)\n\t\t\t\t\t}\n\t\t\t\t>\n\t\t\t\t\t<PostLockedModal />\n\t\t\t\t\t<EditorInitialization />\n\t\t\t\t\t<FullscreenMode isActive={ isFullscreenActive } />\n\t\t\t\t\t<BrowserURL hasHistory={ hasHistory } />\n\t\t\t\t\t<UnsavedChangesWarning />\n\t\t\t\t\t<AutosaveMonitor />\n\t\t\t\t\t<LocalAutosaveMonitor />\n\t\t\t\t\t<EditPostKeyboardShortcuts />\n\t\t\t\t\t<EditorKeyboardShortcutsRegister />\n\t\t\t\t\t<BlockKeyboardShortcuts />\n\t\t\t\t\t<InitPatternModal />\n\t\t\t\t\t<PluginArea onError={ onPluginAreaError } />\n\t\t\t\t\t<PostEditorMoreMenu />\n\t\t\t\t\t<BackButton initialPost={ initialPost } />\n\t\t\t\t\t<EditorSnackbars />\n\t\t\t\t</Editor>\n\t\t\t</ErrorBoundary>\n\t\t</SlotFillProvider>\n\t);\n}\n\nexport default Layout;\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -45,6 +45,7 @@ function CustomFieldsConfirmation({
|
|
|
45
45
|
className: "edit-post-preferences-modal__custom-fields-confirmation-button",
|
|
46
46
|
variant: "secondary",
|
|
47
47
|
isBusy: isReloading,
|
|
48
|
+
__experimentalIsFocusable: true,
|
|
48
49
|
disabled: isReloading,
|
|
49
50
|
onClick: () => {
|
|
50
51
|
setIsReloading(true);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_element","require","_i18n","_components","_data","_editor","_preferences","_url","_lockUnlock","_jsxRuntime","PreferenceBaseOption","unlock","preferencesPrivateApis","submitCustomFieldsForm","customFieldsForm","document","getElementById","querySelector","setAttribute","getPathAndQueryString","window","location","href","submit","CustomFieldsConfirmation","willEnable","isReloading","setIsReloading","useState","jsxs","Fragment","children","jsx","className","__","Button","variant","isBusy","disabled","onClick","EnableCustomFieldsOption","label","areCustomFieldsEnabled","isChecked","setIsChecked","onChange","_default","exports","default","withSelect","select","editorStore","getEditorSettings","enableCustomFields"],"sources":["@wordpress/edit-post/src/components/preferences-modal/enable-custom-fields.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { useState } from '@wordpress/element';\nimport { __ } from '@wordpress/i18n';\nimport { Button } from '@wordpress/components';\nimport { withSelect } from '@wordpress/data';\nimport { store as editorStore } from '@wordpress/editor';\nimport { privateApis as preferencesPrivateApis } from '@wordpress/preferences';\nimport { getPathAndQueryString } from '@wordpress/url';\n\n/**\n * Internal dependencies\n */\nimport { unlock } from '../../lock-unlock';\n\nconst { PreferenceBaseOption } = unlock( preferencesPrivateApis );\n\nfunction submitCustomFieldsForm() {\n\tconst customFieldsForm = document.getElementById(\n\t\t'toggle-custom-fields-form'\n\t);\n\n\t// Ensure the referrer values is up to update with any\n\tcustomFieldsForm\n\t\t.querySelector( '[name=\"_wp_http_referer\"]' )\n\t\t.setAttribute( 'value', getPathAndQueryString( window.location.href ) );\n\n\tcustomFieldsForm.submit();\n}\n\nexport function CustomFieldsConfirmation( { willEnable } ) {\n\tconst [ isReloading, setIsReloading ] = useState( false );\n\treturn (\n\t\t<>\n\t\t\t<p className=\"edit-post-preferences-modal__custom-fields-confirmation-message\">\n\t\t\t\t{ __(\n\t\t\t\t\t'A page reload is required for this change. Make sure your content is saved before reloading.'\n\t\t\t\t) }\n\t\t\t</p>\n\t\t\t<Button\n\t\t\t\tclassName=\"edit-post-preferences-modal__custom-fields-confirmation-button\"\n\t\t\t\tvariant=\"secondary\"\n\t\t\t\tisBusy={ isReloading }\n\t\t\t\tdisabled={ isReloading }\n\t\t\t\tonClick={ () => {\n\t\t\t\t\tsetIsReloading( true );\n\t\t\t\t\tsubmitCustomFieldsForm();\n\t\t\t\t} }\n\t\t\t>\n\t\t\t\t{ willEnable\n\t\t\t\t\t? __( 'Show & Reload Page' )\n\t\t\t\t\t: __( 'Hide & Reload Page' ) }\n\t\t\t</Button>\n\t\t</>\n\t);\n}\n\nexport function EnableCustomFieldsOption( { label, areCustomFieldsEnabled } ) {\n\tconst [ isChecked, setIsChecked ] = useState( areCustomFieldsEnabled );\n\n\treturn (\n\t\t<PreferenceBaseOption\n\t\t\tlabel={ label }\n\t\t\tisChecked={ isChecked }\n\t\t\tonChange={ setIsChecked }\n\t\t>\n\t\t\t{ isChecked !== areCustomFieldsEnabled && (\n\t\t\t\t<CustomFieldsConfirmation willEnable={ isChecked } />\n\t\t\t) }\n\t\t</PreferenceBaseOption>\n\t);\n}\n\nexport default withSelect( ( select ) => ( {\n\tareCustomFieldsEnabled:\n\t\t!! select( editorStore ).getEditorSettings().enableCustomFields,\n} ) )( EnableCustomFieldsOption );\n"],"mappings":";;;;;;;;AAGA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,KAAA,GAAAD,OAAA;AACA,IAAAE,WAAA,GAAAF,OAAA;AACA,IAAAG,KAAA,GAAAH,OAAA;AACA,IAAAI,OAAA,GAAAJ,OAAA;AACA,IAAAK,YAAA,GAAAL,OAAA;AACA,IAAAM,IAAA,GAAAN,OAAA;AAKA,IAAAO,WAAA,GAAAP,OAAA;AAA2C,IAAAQ,WAAA,GAAAR,OAAA;AAd3C;AACA;AACA;;AASA;AACA;AACA;;AAGA,MAAM;EAAES;AAAqB,CAAC,GAAG,IAAAC,kBAAM,EAAEC,wBAAuB,CAAC;AAEjE,SAASC,sBAAsBA,CAAA,EAAG;EACjC,MAAMC,gBAAgB,GAAGC,QAAQ,CAACC,cAAc,CAC/C,2BACD,CAAC;;EAED;EACAF,gBAAgB,CACdG,aAAa,CAAE,2BAA4B,CAAC,CAC5CC,YAAY,CAAE,OAAO,EAAE,IAAAC,0BAAqB,EAAEC,MAAM,CAACC,QAAQ,CAACC,IAAK,CAAE,CAAC;EAExER,gBAAgB,CAACS,MAAM,CAAC,CAAC;AAC1B;AAEO,SAASC,wBAAwBA,CAAE;EAAEC;AAAW,CAAC,EAAG;EAC1D,MAAM,CAAEC,WAAW,EAAEC,cAAc,CAAE,GAAG,IAAAC,iBAAQ,EAAE,KAAM,CAAC;EACzD,oBACC,IAAAnB,WAAA,CAAAoB,IAAA,EAAApB,WAAA,CAAAqB,QAAA;IAAAC,QAAA,gBACC,IAAAtB,WAAA,CAAAuB,GAAA;MAAGC,SAAS,EAAC,iEAAiE;MAAAF,QAAA,EAC3E,IAAAG,QAAE,EACH,8FACD;IAAC,CACC,CAAC,eACJ,IAAAzB,WAAA,CAAAuB,GAAA,EAAC7B,WAAA,CAAAgC,MAAM;MACNF,SAAS,EAAC,gEAAgE;MAC1EG,OAAO,EAAC,WAAW;MACnBC,MAAM,EAAGX,WAAa;MACtBY,QAAQ,
|
|
1
|
+
{"version":3,"names":["_element","require","_i18n","_components","_data","_editor","_preferences","_url","_lockUnlock","_jsxRuntime","PreferenceBaseOption","unlock","preferencesPrivateApis","submitCustomFieldsForm","customFieldsForm","document","getElementById","querySelector","setAttribute","getPathAndQueryString","window","location","href","submit","CustomFieldsConfirmation","willEnable","isReloading","setIsReloading","useState","jsxs","Fragment","children","jsx","className","__","Button","variant","isBusy","__experimentalIsFocusable","disabled","onClick","EnableCustomFieldsOption","label","areCustomFieldsEnabled","isChecked","setIsChecked","onChange","_default","exports","default","withSelect","select","editorStore","getEditorSettings","enableCustomFields"],"sources":["@wordpress/edit-post/src/components/preferences-modal/enable-custom-fields.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { useState } from '@wordpress/element';\nimport { __ } from '@wordpress/i18n';\nimport { Button } from '@wordpress/components';\nimport { withSelect } from '@wordpress/data';\nimport { store as editorStore } from '@wordpress/editor';\nimport { privateApis as preferencesPrivateApis } from '@wordpress/preferences';\nimport { getPathAndQueryString } from '@wordpress/url';\n\n/**\n * Internal dependencies\n */\nimport { unlock } from '../../lock-unlock';\n\nconst { PreferenceBaseOption } = unlock( preferencesPrivateApis );\n\nfunction submitCustomFieldsForm() {\n\tconst customFieldsForm = document.getElementById(\n\t\t'toggle-custom-fields-form'\n\t);\n\n\t// Ensure the referrer values is up to update with any\n\tcustomFieldsForm\n\t\t.querySelector( '[name=\"_wp_http_referer\"]' )\n\t\t.setAttribute( 'value', getPathAndQueryString( window.location.href ) );\n\n\tcustomFieldsForm.submit();\n}\n\nexport function CustomFieldsConfirmation( { willEnable } ) {\n\tconst [ isReloading, setIsReloading ] = useState( false );\n\treturn (\n\t\t<>\n\t\t\t<p className=\"edit-post-preferences-modal__custom-fields-confirmation-message\">\n\t\t\t\t{ __(\n\t\t\t\t\t'A page reload is required for this change. Make sure your content is saved before reloading.'\n\t\t\t\t) }\n\t\t\t</p>\n\t\t\t<Button\n\t\t\t\tclassName=\"edit-post-preferences-modal__custom-fields-confirmation-button\"\n\t\t\t\tvariant=\"secondary\"\n\t\t\t\tisBusy={ isReloading }\n\t\t\t\t__experimentalIsFocusable\n\t\t\t\tdisabled={ isReloading }\n\t\t\t\tonClick={ () => {\n\t\t\t\t\tsetIsReloading( true );\n\t\t\t\t\tsubmitCustomFieldsForm();\n\t\t\t\t} }\n\t\t\t>\n\t\t\t\t{ willEnable\n\t\t\t\t\t? __( 'Show & Reload Page' )\n\t\t\t\t\t: __( 'Hide & Reload Page' ) }\n\t\t\t</Button>\n\t\t</>\n\t);\n}\n\nexport function EnableCustomFieldsOption( { label, areCustomFieldsEnabled } ) {\n\tconst [ isChecked, setIsChecked ] = useState( areCustomFieldsEnabled );\n\n\treturn (\n\t\t<PreferenceBaseOption\n\t\t\tlabel={ label }\n\t\t\tisChecked={ isChecked }\n\t\t\tonChange={ setIsChecked }\n\t\t>\n\t\t\t{ isChecked !== areCustomFieldsEnabled && (\n\t\t\t\t<CustomFieldsConfirmation willEnable={ isChecked } />\n\t\t\t) }\n\t\t</PreferenceBaseOption>\n\t);\n}\n\nexport default withSelect( ( select ) => ( {\n\tareCustomFieldsEnabled:\n\t\t!! select( editorStore ).getEditorSettings().enableCustomFields,\n} ) )( EnableCustomFieldsOption );\n"],"mappings":";;;;;;;;AAGA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,KAAA,GAAAD,OAAA;AACA,IAAAE,WAAA,GAAAF,OAAA;AACA,IAAAG,KAAA,GAAAH,OAAA;AACA,IAAAI,OAAA,GAAAJ,OAAA;AACA,IAAAK,YAAA,GAAAL,OAAA;AACA,IAAAM,IAAA,GAAAN,OAAA;AAKA,IAAAO,WAAA,GAAAP,OAAA;AAA2C,IAAAQ,WAAA,GAAAR,OAAA;AAd3C;AACA;AACA;;AASA;AACA;AACA;;AAGA,MAAM;EAAES;AAAqB,CAAC,GAAG,IAAAC,kBAAM,EAAEC,wBAAuB,CAAC;AAEjE,SAASC,sBAAsBA,CAAA,EAAG;EACjC,MAAMC,gBAAgB,GAAGC,QAAQ,CAACC,cAAc,CAC/C,2BACD,CAAC;;EAED;EACAF,gBAAgB,CACdG,aAAa,CAAE,2BAA4B,CAAC,CAC5CC,YAAY,CAAE,OAAO,EAAE,IAAAC,0BAAqB,EAAEC,MAAM,CAACC,QAAQ,CAACC,IAAK,CAAE,CAAC;EAExER,gBAAgB,CAACS,MAAM,CAAC,CAAC;AAC1B;AAEO,SAASC,wBAAwBA,CAAE;EAAEC;AAAW,CAAC,EAAG;EAC1D,MAAM,CAAEC,WAAW,EAAEC,cAAc,CAAE,GAAG,IAAAC,iBAAQ,EAAE,KAAM,CAAC;EACzD,oBACC,IAAAnB,WAAA,CAAAoB,IAAA,EAAApB,WAAA,CAAAqB,QAAA;IAAAC,QAAA,gBACC,IAAAtB,WAAA,CAAAuB,GAAA;MAAGC,SAAS,EAAC,iEAAiE;MAAAF,QAAA,EAC3E,IAAAG,QAAE,EACH,8FACD;IAAC,CACC,CAAC,eACJ,IAAAzB,WAAA,CAAAuB,GAAA,EAAC7B,WAAA,CAAAgC,MAAM;MACNF,SAAS,EAAC,gEAAgE;MAC1EG,OAAO,EAAC,WAAW;MACnBC,MAAM,EAAGX,WAAa;MACtBY,yBAAyB;MACzBC,QAAQ,EAAGb,WAAa;MACxBc,OAAO,EAAGA,CAAA,KAAM;QACfb,cAAc,CAAE,IAAK,CAAC;QACtBd,sBAAsB,CAAC,CAAC;MACzB,CAAG;MAAAkB,QAAA,EAEDN,UAAU,GACT,IAAAS,QAAE,EAAE,oBAAqB,CAAC,GAC1B,IAAAA,QAAE,EAAE,oBAAqB;IAAC,CACtB,CAAC;EAAA,CACR,CAAC;AAEL;AAEO,SAASO,wBAAwBA,CAAE;EAAEC,KAAK;EAAEC;AAAuB,CAAC,EAAG;EAC7E,MAAM,CAAEC,SAAS,EAAEC,YAAY,CAAE,GAAG,IAAAjB,iBAAQ,EAAEe,sBAAuB,CAAC;EAEtE,oBACC,IAAAlC,WAAA,CAAAuB,GAAA,EAACtB,oBAAoB;IACpBgC,KAAK,EAAGA,KAAO;IACfE,SAAS,EAAGA,SAAW;IACvBE,QAAQ,EAAGD,YAAc;IAAAd,QAAA,EAEvBa,SAAS,KAAKD,sBAAsB,iBACrC,IAAAlC,WAAA,CAAAuB,GAAA,EAACR,wBAAwB;MAACC,UAAU,EAAGmB;IAAW,CAAE;EACpD,CACoB,CAAC;AAEzB;AAAC,IAAAG,QAAA,GAAAC,OAAA,CAAAC,OAAA,GAEc,IAAAC,gBAAU,EAAIC,MAAM,KAAQ;EAC1CR,sBAAsB,EACrB,CAAC,CAAEQ,MAAM,CAAEC,aAAY,CAAC,CAACC,iBAAiB,CAAC,CAAC,CAACC;AAC/C,CAAC,CAAG,CAAC,CAAEb,wBAAyB,CAAC","ignoreList":[]}
|
|
@@ -6,7 +6,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
});
|
|
7
7
|
exports.default = WelcomeGuide;
|
|
8
8
|
var _data = require("@wordpress/data");
|
|
9
|
-
var _editor = require("@wordpress/editor");
|
|
10
9
|
var _default = _interopRequireDefault(require("./default"));
|
|
11
10
|
var _template = _interopRequireDefault(require("./template"));
|
|
12
11
|
var _store = require("../../store");
|
|
@@ -19,7 +18,9 @@ var _jsxRuntime = require("react/jsx-runtime");
|
|
|
19
18
|
* Internal dependencies
|
|
20
19
|
*/
|
|
21
20
|
|
|
22
|
-
function WelcomeGuide(
|
|
21
|
+
function WelcomeGuide({
|
|
22
|
+
postType
|
|
23
|
+
}) {
|
|
23
24
|
const {
|
|
24
25
|
isActive,
|
|
25
26
|
isEditingTemplate
|
|
@@ -27,16 +28,13 @@ function WelcomeGuide() {
|
|
|
27
28
|
const {
|
|
28
29
|
isFeatureActive
|
|
29
30
|
} = select(_store.store);
|
|
30
|
-
const
|
|
31
|
-
getCurrentPostType
|
|
32
|
-
} = select(_editor.store);
|
|
33
|
-
const _isEditingTemplate = getCurrentPostType() === 'wp_template';
|
|
31
|
+
const _isEditingTemplate = postType === 'wp_template';
|
|
34
32
|
const feature = _isEditingTemplate ? 'welcomeGuideTemplate' : 'welcomeGuide';
|
|
35
33
|
return {
|
|
36
34
|
isActive: isFeatureActive(feature),
|
|
37
35
|
isEditingTemplate: _isEditingTemplate
|
|
38
36
|
};
|
|
39
|
-
}, []);
|
|
37
|
+
}, [postType]);
|
|
40
38
|
if (!isActive) {
|
|
41
39
|
return null;
|
|
42
40
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_data","require","
|
|
1
|
+
{"version":3,"names":["_data","require","_default","_interopRequireDefault","_template","_store","_jsxRuntime","WelcomeGuide","postType","isActive","isEditingTemplate","useSelect","select","isFeatureActive","editPostStore","_isEditingTemplate","feature","jsx","default"],"sources":["@wordpress/edit-post/src/components/welcome-guide/index.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { useSelect } from '@wordpress/data';\n\n/**\n * Internal dependencies\n */\nimport WelcomeGuideDefault from './default';\nimport WelcomeGuideTemplate from './template';\nimport { store as editPostStore } from '../../store';\n\nexport default function WelcomeGuide( { postType } ) {\n\tconst { isActive, isEditingTemplate } = useSelect(\n\t\t( select ) => {\n\t\t\tconst { isFeatureActive } = select( editPostStore );\n\t\t\tconst _isEditingTemplate = postType === 'wp_template';\n\t\t\tconst feature = _isEditingTemplate\n\t\t\t\t? 'welcomeGuideTemplate'\n\t\t\t\t: 'welcomeGuide';\n\n\t\t\treturn {\n\t\t\t\tisActive: isFeatureActive( feature ),\n\t\t\t\tisEditingTemplate: _isEditingTemplate,\n\t\t\t};\n\t\t},\n\t\t[ postType ]\n\t);\n\n\tif ( ! isActive ) {\n\t\treturn null;\n\t}\n\n\treturn isEditingTemplate ? (\n\t\t<WelcomeGuideTemplate />\n\t) : (\n\t\t<WelcomeGuideDefault />\n\t);\n}\n"],"mappings":";;;;;;;AAGA,IAAAA,KAAA,GAAAC,OAAA;AAKA,IAAAC,QAAA,GAAAC,sBAAA,CAAAF,OAAA;AACA,IAAAG,SAAA,GAAAD,sBAAA,CAAAF,OAAA;AACA,IAAAI,MAAA,GAAAJ,OAAA;AAAqD,IAAAK,WAAA,GAAAL,OAAA;AAVrD;AACA;AACA;;AAGA;AACA;AACA;;AAKe,SAASM,YAAYA,CAAE;EAAEC;AAAS,CAAC,EAAG;EACpD,MAAM;IAAEC,QAAQ;IAAEC;EAAkB,CAAC,GAAG,IAAAC,eAAS,EAC9CC,MAAM,IAAM;IACb,MAAM;MAAEC;IAAgB,CAAC,GAAGD,MAAM,CAAEE,YAAc,CAAC;IACnD,MAAMC,kBAAkB,GAAGP,QAAQ,KAAK,aAAa;IACrD,MAAMQ,OAAO,GAAGD,kBAAkB,GAC/B,sBAAsB,GACtB,cAAc;IAEjB,OAAO;MACNN,QAAQ,EAAEI,eAAe,CAAEG,OAAQ,CAAC;MACpCN,iBAAiB,EAAEK;IACpB,CAAC;EACF,CAAC,EACD,CAAEP,QAAQ,CACX,CAAC;EAED,IAAK,CAAEC,QAAQ,EAAG;IACjB,OAAO,IAAI;EACZ;EAEA,OAAOC,iBAAiB,gBACvB,IAAAJ,WAAA,CAAAW,GAAA,EAACb,SAAA,CAAAc,OAAoB,IAAE,CAAC,gBAExB,IAAAZ,WAAA,CAAAW,GAAA,EAACf,QAAA,CAAAgB,OAAmB,IAAE,CACtB;AACF","ignoreList":[]}
|
package/build/index.js
CHANGED
|
@@ -34,7 +34,7 @@ var _data = require("@wordpress/data");
|
|
|
34
34
|
var _preferences = require("@wordpress/preferences");
|
|
35
35
|
var _widgets = require("@wordpress/widgets");
|
|
36
36
|
var _editor = require("@wordpress/editor");
|
|
37
|
-
var
|
|
37
|
+
var _layout = _interopRequireDefault(require("./components/layout"));
|
|
38
38
|
var _lockUnlock = require("./lock-unlock");
|
|
39
39
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
40
40
|
var _fullscreenModeClose = _interopRequireDefault(require("./components/back-button/fullscreen-mode-close"));
|
|
@@ -153,11 +153,13 @@ function initializeEditor(id, postType, postId, settings, initialEdits) {
|
|
|
153
153
|
// Prevent the default browser action for files dropped outside of dropzones.
|
|
154
154
|
window.addEventListener('dragover', e => e.preventDefault(), false);
|
|
155
155
|
window.addEventListener('drop', e => e.preventDefault(), false);
|
|
156
|
-
root.render( /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
156
|
+
root.render( /*#__PURE__*/(0, _jsxRuntime.jsx)(_element.StrictMode, {
|
|
157
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_layout.default, {
|
|
158
|
+
settings: settings,
|
|
159
|
+
postId: postId,
|
|
160
|
+
postType: postType,
|
|
161
|
+
initialEdits: initialEdits
|
|
162
|
+
})
|
|
161
163
|
}));
|
|
162
164
|
return root;
|
|
163
165
|
}
|