@wordpress/edit-post 7.28.4 → 7.28.6
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/build/components/init-pattern-modal/index.js +99 -0
- package/build/components/init-pattern-modal/index.js.map +1 -0
- package/build/components/layout/index.js +2 -1
- package/build/components/layout/index.js.map +1 -1
- package/build-module/components/init-pattern-modal/index.js +93 -0
- package/build-module/components/init-pattern-modal/index.js.map +1 -0
- package/build-module/components/layout/index.js +3 -2
- package/build-module/components/layout/index.js.map +1 -1
- package/build-style/classic-rtl.css +1 -0
- package/build-style/classic.css +1 -0
- package/build-style/style-rtl.css +1 -0
- package/build-style/style.css +1 -0
- package/package.json +16 -16
- package/src/components/init-pattern-modal/index.js +117 -0
- package/src/components/layout/index.js +2 -2
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = InitPatternModal;
|
|
7
|
+
var _react = require("react");
|
|
8
|
+
var _data = require("@wordpress/data");
|
|
9
|
+
var _i18n = require("@wordpress/i18n");
|
|
10
|
+
var _components = require("@wordpress/components");
|
|
11
|
+
var _element = require("@wordpress/element");
|
|
12
|
+
var _editor = require("@wordpress/editor");
|
|
13
|
+
var _blockEditor = require("@wordpress/block-editor");
|
|
14
|
+
var _lockUnlock = require("../../lock-unlock");
|
|
15
|
+
/**
|
|
16
|
+
* WordPress dependencies
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Internal dependencies
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
const {
|
|
24
|
+
ReusableBlocksRenameHint
|
|
25
|
+
} = (0, _lockUnlock.unlock)(_blockEditor.privateApis);
|
|
26
|
+
function InitPatternModal() {
|
|
27
|
+
const {
|
|
28
|
+
editPost
|
|
29
|
+
} = (0, _data.useDispatch)(_editor.store);
|
|
30
|
+
const [isModalOpen, setIsModalOpen] = (0, _element.useState)(false);
|
|
31
|
+
const [syncType, setSyncType] = (0, _element.useState)(undefined);
|
|
32
|
+
const [title, setTitle] = (0, _element.useState)('');
|
|
33
|
+
const {
|
|
34
|
+
postType,
|
|
35
|
+
isNewPost
|
|
36
|
+
} = (0, _data.useSelect)(select => {
|
|
37
|
+
const {
|
|
38
|
+
getEditedPostAttribute,
|
|
39
|
+
isCleanNewPost
|
|
40
|
+
} = select(_editor.store);
|
|
41
|
+
return {
|
|
42
|
+
postType: getEditedPostAttribute('type'),
|
|
43
|
+
isNewPost: isCleanNewPost()
|
|
44
|
+
};
|
|
45
|
+
}, []);
|
|
46
|
+
(0, _element.useEffect)(() => {
|
|
47
|
+
if (isNewPost && postType === 'wp_block') {
|
|
48
|
+
setIsModalOpen(true);
|
|
49
|
+
}
|
|
50
|
+
// We only want the modal to open when the page is first loaded.
|
|
51
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
52
|
+
}, []);
|
|
53
|
+
if (postType !== 'wp_block' || !isNewPost) {
|
|
54
|
+
return null;
|
|
55
|
+
}
|
|
56
|
+
return (0, _react.createElement)(_react.Fragment, null, isModalOpen && (0, _react.createElement)(_components.Modal, {
|
|
57
|
+
title: (0, _i18n.__)('Create pattern'),
|
|
58
|
+
onRequestClose: () => {
|
|
59
|
+
setIsModalOpen(false);
|
|
60
|
+
},
|
|
61
|
+
overlayClassName: "reusable-blocks-menu-items__convert-modal"
|
|
62
|
+
}, (0, _react.createElement)("form", {
|
|
63
|
+
onSubmit: event => {
|
|
64
|
+
event.preventDefault();
|
|
65
|
+
setIsModalOpen(false);
|
|
66
|
+
editPost({
|
|
67
|
+
title,
|
|
68
|
+
meta: {
|
|
69
|
+
wp_pattern_sync_status: syncType
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
}, (0, _react.createElement)(_components.__experimentalVStack, {
|
|
74
|
+
spacing: "5"
|
|
75
|
+
}, (0, _react.createElement)(_components.TextControl, {
|
|
76
|
+
label: (0, _i18n.__)('Name'),
|
|
77
|
+
value: title,
|
|
78
|
+
onChange: setTitle,
|
|
79
|
+
placeholder: (0, _i18n.__)('My pattern'),
|
|
80
|
+
className: "patterns-create-modal__name-input",
|
|
81
|
+
__nextHasNoMarginBottom: true,
|
|
82
|
+
__next40pxDefaultSize: true
|
|
83
|
+
}), (0, _react.createElement)(ReusableBlocksRenameHint, null), (0, _react.createElement)(_components.ToggleControl, {
|
|
84
|
+
label: (0, _i18n._x)('Synced', 'Option that makes an individual pattern synchronized'),
|
|
85
|
+
help: (0, _i18n.__)('Sync this pattern across multiple locations.'),
|
|
86
|
+
checked: !syncType,
|
|
87
|
+
onChange: () => {
|
|
88
|
+
setSyncType(!syncType ? 'unsynced' : undefined);
|
|
89
|
+
}
|
|
90
|
+
}), (0, _react.createElement)(_components.__experimentalHStack, {
|
|
91
|
+
justify: "right"
|
|
92
|
+
}, (0, _react.createElement)(_components.Button, {
|
|
93
|
+
variant: "primary",
|
|
94
|
+
type: "submit",
|
|
95
|
+
disabled: !title,
|
|
96
|
+
__experimentalIsFocusable: true
|
|
97
|
+
}, (0, _i18n.__)('Create')))))));
|
|
98
|
+
}
|
|
99
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_data","require","_i18n","_components","_element","_editor","_blockEditor","_lockUnlock","ReusableBlocksRenameHint","unlock","blockEditorPrivateApis","InitPatternModal","editPost","useDispatch","editorStore","isModalOpen","setIsModalOpen","useState","syncType","setSyncType","undefined","title","setTitle","postType","isNewPost","useSelect","select","getEditedPostAttribute","isCleanNewPost","useEffect","_react","createElement","Fragment","Modal","__","onRequestClose","overlayClassName","onSubmit","event","preventDefault","meta","wp_pattern_sync_status","__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(\n\t\t\t\t\t\t\t\t\t'Synced',\n\t\t\t\t\t\t\t\t\t'Option that makes an individual pattern synchronized'\n\t\t\t\t\t\t\t\t) }\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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"}
|
|
@@ -26,6 +26,7 @@ var _visualEditor = _interopRequireDefault(require("../visual-editor"));
|
|
|
26
26
|
var _keyboardShortcuts2 = _interopRequireDefault(require("../keyboard-shortcuts"));
|
|
27
27
|
var _keyboardShortcutHelpModal = _interopRequireDefault(require("../keyboard-shortcut-help-modal"));
|
|
28
28
|
var _preferencesModal = _interopRequireDefault(require("../preferences-modal"));
|
|
29
|
+
var _initPatternModal = _interopRequireDefault(require("../init-pattern-modal"));
|
|
29
30
|
var _browserUrl = _interopRequireDefault(require("../browser-url"));
|
|
30
31
|
var _header = _interopRequireDefault(require("../header"));
|
|
31
32
|
var _settingsSidebar = _interopRequireDefault(require("../sidebar/settings-sidebar"));
|
|
@@ -282,7 +283,7 @@ function Layout({
|
|
|
282
283
|
previous: previousShortcut,
|
|
283
284
|
next: nextShortcut
|
|
284
285
|
}
|
|
285
|
-
}), (0, _react.createElement)(_preferencesModal.default, null), (0, _react.createElement)(_keyboardShortcutHelpModal.default, null), (0, _react.createElement)(_welcomeGuide.default, null), (0, _react.createElement)(
|
|
286
|
+
}), (0, _react.createElement)(_preferencesModal.default, null), (0, _react.createElement)(_keyboardShortcutHelpModal.default, null), (0, _react.createElement)(_welcomeGuide.default, null), (0, _react.createElement)(_initPatternModal.default, null), (0, _react.createElement)(_startPageOptions.default, null), (0, _react.createElement)(_plugins.PluginArea, {
|
|
286
287
|
onError: onPluginAreaError
|
|
287
288
|
}), !isDistractionFree && (0, _react.createElement)(_settingsSidebar.default, null));
|
|
288
289
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_classnames","_interopRequireDefault","require","_editor","_data","_blockEditor","_components","_compose","_plugins","_i18n","_interface","_element","_keyboardShortcuts","_notices","_preferences","_commands","_coreCommands","_textEditor","_visualEditor","_keyboardShortcuts2","_keyboardShortcutHelpModal","_preferencesModal","_browserUrl","_header","_settingsSidebar","_metaBoxes","_welcomeGuide","_actionsPanel","_startPageOptions","_store","_lockUnlock","_useCommonCommands","getLayoutStyles","unlock","blockEditorPrivateApis","useCommands","coreCommandsPrivateApis","useCommandContext","commandsPrivateApis","InserterSidebar","ListViewSidebar","editorPrivateApis","interfaceLabels","header","__","body","sidebar","actions","footer","useEditorStyles","hasThemeStyleSupport","editorSettings","useSelect","select","editPostStore","isFeatureActive","editorStore","getEditorSettings","useMemo","_editorSettings$style","_editorSettings$style2","presetStyles","styles","filter","style","__unstableType","defaultEditorStyles","hasThemeStyles","length","disableLayoutStyles","push","css","selector","hasBlockGapSupport","hasFallbackGapSupport","fallbackGapValue","Layout","initialPost","useCommonCommands","useBlockCommands","isMobileViewport","useViewportMatch","isHugeViewport","isWideViewport","isLargeViewport","openGeneralSidebar","closeGeneralSidebar","useDispatch","createErrorNotice","noticesStore","setIsInserterOpened","mode","isFullscreenActive","isRichEditingEnabled","sidebarIsOpened","hasActiveMetaboxes","previousShortcut","nextShortcut","hasBlockSelected","isInserterOpened","isListViewOpened","showIconLabels","isDistractionFree","showBlockBreadcrumbs","showMetaBoxes","documentLabel","hasHistory","get","preferencesStore","getPostTypeLabel","postTypeLabel","getRenderingMode","interfaceStore","getActiveComplementaryArea","name","isPublishSidebarOpened","getEditorMode","richEditingEnabled","hasMetaBoxes","keyboardShortcutsStore","getAllShortcutKeyCombinations","_x","blockEditorStore","getBlockSelectionStart","onNavigateToPreviousEntityRecord","commandContext","openSidebarPanel","useEffect","entitiesSavedStatesCallback","setEntitiesSavedStatesCallback","useState","closeEntitiesSavedStates","useCallback","arg","document","classList","add","remove","className","classnames","secondarySidebarLabel","secondarySidebar","_react","createElement","onPluginAreaError","sprintf","Fragment","FullscreenMode","isActive","default","UnsavedChangesWarning","AutosaveMonitor","LocalAutosaveMonitor","EditorKeyboardShortcutsRegister","EditorKeyboardShortcuts","InterfaceSkeleton","labels","editorNotices","EditorNotices","Button","variant","onClick","ComplementaryArea","Slot","scope","notices","EditorSnackbars","content","BlockToolbar","hideDragHandle","location","ScrollLock","BlockBreadcrumb","rootLabelText","isEntitiesSavedStatesOpen","shortcuts","previous","next","PostSyncStatusModal","PluginArea","onError","_default","exports"],"sources":["@wordpress/edit-post/src/components/layout/index.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport classnames from 'classnames';\n\n/**\n * WordPress dependencies\n */\nimport {\n\tAutosaveMonitor,\n\tLocalAutosaveMonitor,\n\tUnsavedChangesWarning,\n\tEditorNotices,\n\tEditorKeyboardShortcutsRegister,\n\tEditorKeyboardShortcuts,\n\tEditorSnackbars,\n\tPostSyncStatusModal,\n\tstore as editorStore,\n\tprivateApis as editorPrivateApis,\n} from '@wordpress/editor';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport {\n\tuseBlockCommands,\n\tBlockBreadcrumb,\n\tBlockToolbar,\n\tprivateApis as blockEditorPrivateApis,\n\tstore as blockEditorStore,\n} from '@wordpress/block-editor';\nimport { Button, ScrollLock } from '@wordpress/components';\nimport { useViewportMatch } from '@wordpress/compose';\nimport { PluginArea } from '@wordpress/plugins';\nimport { __, _x, sprintf } from '@wordpress/i18n';\nimport {\n\tComplementaryArea,\n\tFullscreenMode,\n\tInterfaceSkeleton,\n\tstore as interfaceStore,\n} from '@wordpress/interface';\nimport { useState, useEffect, useCallback, useMemo } from '@wordpress/element';\nimport { store as keyboardShortcutsStore } from '@wordpress/keyboard-shortcuts';\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';\n\n/**\n * Internal dependencies\n */\nimport TextEditor from '../text-editor';\nimport VisualEditor from '../visual-editor';\nimport EditPostKeyboardShortcuts from '../keyboard-shortcuts';\nimport KeyboardShortcutHelpModal from '../keyboard-shortcut-help-modal';\nimport EditPostPreferencesModal from '../preferences-modal';\nimport BrowserURL from '../browser-url';\nimport Header from '../header';\nimport SettingsSidebar from '../sidebar/settings-sidebar';\nimport MetaBoxes from '../meta-boxes';\nimport WelcomeGuide from '../welcome-guide';\nimport ActionsPanel from './actions-panel';\nimport StartPageOptions from '../start-page-options';\nimport { store as editPostStore } from '../../store';\nimport { unlock } from '../../lock-unlock';\nimport useCommonCommands from '../../hooks/commands/use-common-commands';\n\nconst { getLayoutStyles } = unlock( blockEditorPrivateApis );\nconst { useCommands } = unlock( coreCommandsPrivateApis );\nconst { useCommandContext } = unlock( commandsPrivateApis );\nconst { InserterSidebar, ListViewSidebar } = unlock( editorPrivateApis );\n\nconst interfaceLabels = {\n\t/* translators: accessibility text for the editor top bar landmark region. */\n\theader: __( 'Editor top bar' ),\n\t/* translators: accessibility text for the editor content landmark region. */\n\tbody: __( 'Editor content' ),\n\t/* translators: accessibility text for the editor settings landmark region. */\n\tsidebar: __( 'Editor settings' ),\n\t/* translators: accessibility text for the editor publish landmark region. */\n\tactions: __( 'Editor publish' ),\n\t/* translators: accessibility text for the editor footer landmark region. */\n\tfooter: __( 'Editor footer' ),\n};\n\nfunction useEditorStyles() {\n\tconst { hasThemeStyleSupport, editorSettings } = useSelect(\n\t\t( select ) => ( {\n\t\t\thasThemeStyleSupport:\n\t\t\t\tselect( editPostStore ).isFeatureActive( 'themeStyles' ),\n\t\t\teditorSettings: select( editorStore ).getEditorSettings(),\n\t\t} ),\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\treturn hasThemeStyles ? editorSettings.styles : defaultEditorStyles;\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\tuseCommonCommands();\n\tuseBlockCommands();\n\n\tconst isMobileViewport = useViewportMatch( 'medium', '<' );\n\tconst isHugeViewport = useViewportMatch( 'huge', '>=' );\n\tconst isWideViewport = useViewportMatch( 'large' );\n\tconst isLargeViewport = useViewportMatch( 'medium' );\n\n\tconst { openGeneralSidebar, closeGeneralSidebar } =\n\t\tuseDispatch( editPostStore );\n\tconst { createErrorNotice } = useDispatch( noticesStore );\n\tconst { setIsInserterOpened } = useDispatch( editorStore );\n\tconst {\n\t\tmode,\n\t\tisFullscreenActive,\n\t\tisRichEditingEnabled,\n\t\tsidebarIsOpened,\n\t\thasActiveMetaboxes,\n\t\tpreviousShortcut,\n\t\tnextShortcut,\n\t\thasBlockSelected,\n\t\tisInserterOpened,\n\t\tisListViewOpened,\n\t\tshowIconLabels,\n\t\tisDistractionFree,\n\t\tshowBlockBreadcrumbs,\n\t\tshowMetaBoxes,\n\t\tdocumentLabel,\n\t\thasHistory,\n\t} = useSelect( ( select ) => {\n\t\tconst { get } = select( preferencesStore );\n\t\tconst { getEditorSettings, getPostTypeLabel } = select( editorStore );\n\t\tconst editorSettings = getEditorSettings();\n\t\tconst postTypeLabel = getPostTypeLabel();\n\n\t\treturn {\n\t\t\tshowMetaBoxes:\n\t\t\t\tselect( editorStore ).getRenderingMode() === 'post-only',\n\t\t\tsidebarIsOpened: !! (\n\t\t\t\tselect( interfaceStore ).getActiveComplementaryArea(\n\t\t\t\t\teditPostStore.name\n\t\t\t\t) || select( editPostStore ).isPublishSidebarOpened()\n\t\t\t),\n\t\t\tisFullscreenActive:\n\t\t\t\tselect( editPostStore ).isFeatureActive( 'fullscreenMode' ),\n\t\t\tisInserterOpened: select( editorStore ).isInserterOpened(),\n\t\t\tisListViewOpened: select( editorStore ).isListViewOpened(),\n\t\t\tmode: select( editPostStore ).getEditorMode(),\n\t\t\tisRichEditingEnabled: editorSettings.richEditingEnabled,\n\t\t\thasActiveMetaboxes: select( editPostStore ).hasMetaBoxes(),\n\t\t\tpreviousShortcut: select(\n\t\t\t\tkeyboardShortcutsStore\n\t\t\t).getAllShortcutKeyCombinations( 'core/edit-post/previous-region' ),\n\t\t\tnextShortcut: select(\n\t\t\t\tkeyboardShortcutsStore\n\t\t\t).getAllShortcutKeyCombinations( 'core/edit-post/next-region' ),\n\t\t\tshowIconLabels: get( 'core', 'showIconLabels' ),\n\t\t\tisDistractionFree: get( 'core', 'distractionFree' ),\n\t\t\tshowBlockBreadcrumbs: get( 'core', 'showBlockBreadcrumbs' ),\n\t\t\t// translators: Default label for the Document in the Block Breadcrumb.\n\t\t\tdocumentLabel: postTypeLabel || _x( 'Document', 'noun' ),\n\t\t\thasBlockSelected:\n\t\t\t\t!! select( blockEditorStore ).getBlockSelectionStart(),\n\t\t\thasHistory: !! getEditorSettings().onNavigateToPreviousEntityRecord,\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: 'post-editor-edit';\n\tuseCommandContext( commandContext );\n\n\tconst styles = useEditorStyles();\n\n\tconst openSidebarPanel = () =>\n\t\topenGeneralSidebar(\n\t\t\thasBlockSelected ? 'edit-post/block' : 'edit-post/document'\n\t\t);\n\n\t// Inserter and Sidebars are mutually exclusive\n\tuseEffect( () => {\n\t\tif ( sidebarIsOpened && ! isHugeViewport ) {\n\t\t\tsetIsInserterOpened( false );\n\t\t}\n\t}, [ isHugeViewport, setIsInserterOpened, sidebarIsOpened ] );\n\tuseEffect( () => {\n\t\tif ( isInserterOpened && ! isHugeViewport ) {\n\t\t\tcloseGeneralSidebar();\n\t\t}\n\t}, [ closeGeneralSidebar, isInserterOpened, isHugeViewport ] );\n\n\t// Local state for save panel.\n\t// Note 'truthy' callback implies an open panel.\n\tconst [ entitiesSavedStatesCallback, setEntitiesSavedStatesCallback ] =\n\t\tuseState( false );\n\n\tconst closeEntitiesSavedStates = useCallback(\n\t\t( arg ) => {\n\t\t\tif ( typeof entitiesSavedStatesCallback === 'function' ) {\n\t\t\t\tentitiesSavedStatesCallback( arg );\n\t\t\t}\n\t\t\tsetEntitiesSavedStatesCallback( false );\n\t\t},\n\t\t[ entitiesSavedStatesCallback ]\n\t);\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 = classnames( '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'is-entity-save-view-open': !! entitiesSavedStatesCallback,\n\t} );\n\n\tconst secondarySidebarLabel = isListViewOpened\n\t\t? __( 'Document Overview' )\n\t\t: __( 'Block Library' );\n\n\tconst secondarySidebar = () => {\n\t\tif ( mode === 'visual' && isInserterOpened ) {\n\t\t\treturn <InserterSidebar />;\n\t\t}\n\t\tif ( mode === 'visual' && isListViewOpened ) {\n\t\t\treturn <ListViewSidebar />;\n\t\t}\n\n\t\treturn null;\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\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<EditorKeyboardShortcuts />\n\n\t\t\t<InterfaceSkeleton\n\t\t\t\tisDistractionFree={ isDistractionFree && isWideViewport }\n\t\t\t\tclassName={ className }\n\t\t\t\tlabels={ {\n\t\t\t\t\t...interfaceLabels,\n\t\t\t\t\tsecondarySidebar: secondarySidebarLabel,\n\t\t\t\t} }\n\t\t\t\theader={\n\t\t\t\t\t<Header\n\t\t\t\t\t\tsetEntitiesSavedStatesCallback={\n\t\t\t\t\t\t\tsetEntitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t\tinitialPost={ initialPost }\n\t\t\t\t\t/>\n\t\t\t\t}\n\t\t\t\teditorNotices={ <EditorNotices /> }\n\t\t\t\tsecondarySidebar={ secondarySidebar() }\n\t\t\t\tsidebar={\n\t\t\t\t\t( ! isMobileViewport || sidebarIsOpened ) && (\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t{ ! isMobileViewport && ! sidebarIsOpened && (\n\t\t\t\t\t\t\t\t<div className=\"edit-post-layout__toggle-sidebar-panel\">\n\t\t\t\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\t\t\t\tvariant=\"secondary\"\n\t\t\t\t\t\t\t\t\t\tclassName=\"edit-post-layout__toggle-sidebar-panel-button\"\n\t\t\t\t\t\t\t\t\t\tonClick={ openSidebarPanel }\n\t\t\t\t\t\t\t\t\t\taria-expanded={ false }\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t{ hasBlockSelected\n\t\t\t\t\t\t\t\t\t\t\t? __( 'Open block settings' )\n\t\t\t\t\t\t\t\t\t\t\t: __( 'Open document settings' ) }\n\t\t\t\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t\t<ComplementaryArea.Slot scope=\"core/edit-post\" />\n\t\t\t\t\t\t</>\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t\tnotices={ <EditorSnackbars /> }\n\t\t\t\tcontent={\n\t\t\t\t\t<>\n\t\t\t\t\t\t{ ! isDistractionFree && <EditorNotices /> }\n\t\t\t\t\t\t{ ( mode === 'text' || ! isRichEditingEnabled ) && (\n\t\t\t\t\t\t\t<TextEditor />\n\t\t\t\t\t\t) }\n\t\t\t\t\t\t{ ! isLargeViewport && <BlockToolbar hideDragHandle /> }\n\t\t\t\t\t\t{ isRichEditingEnabled && mode === 'visual' && (\n\t\t\t\t\t\t\t<VisualEditor styles={ styles } />\n\t\t\t\t\t\t) }\n\t\t\t\t\t\t{ ! isDistractionFree && showMetaBoxes && (\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\t{ isMobileViewport && sidebarIsOpened && (\n\t\t\t\t\t\t\t<ScrollLock />\n\t\t\t\t\t\t) }\n\t\t\t\t\t</>\n\t\t\t\t}\n\t\t\t\tfooter={\n\t\t\t\t\t! isDistractionFree &&\n\t\t\t\t\t! isMobileViewport &&\n\t\t\t\t\tshowBlockBreadcrumbs &&\n\t\t\t\t\tisRichEditingEnabled &&\n\t\t\t\t\tmode === 'visual' && (\n\t\t\t\t\t\t<div className=\"edit-post-layout__footer\">\n\t\t\t\t\t\t\t<BlockBreadcrumb rootLabelText={ documentLabel } />\n\t\t\t\t\t\t</div>\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t\tactions={\n\t\t\t\t\t<ActionsPanel\n\t\t\t\t\t\tcloseEntitiesSavedStates={ closeEntitiesSavedStates }\n\t\t\t\t\t\tisEntitiesSavedStatesOpen={\n\t\t\t\t\t\t\tentitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsetEntitiesSavedStatesCallback={\n\t\t\t\t\t\t\tsetEntitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t/>\n\t\t\t\t}\n\t\t\t\tshortcuts={ {\n\t\t\t\t\tprevious: previousShortcut,\n\t\t\t\t\tnext: nextShortcut,\n\t\t\t\t} }\n\t\t\t/>\n\t\t\t<EditPostPreferencesModal />\n\t\t\t<KeyboardShortcutHelpModal />\n\t\t\t<WelcomeGuide />\n\t\t\t<PostSyncStatusModal />\n\t\t\t<StartPageOptions />\n\t\t\t<PluginArea onError={ onPluginAreaError } />\n\t\t\t{ ! isDistractionFree && <SettingsSidebar /> }\n\t\t</>\n\t);\n}\n\nexport default Layout;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["_classnames","_interopRequireDefault","require","_editor","_data","_blockEditor","_components","_compose","_plugins","_i18n","_interface","_element","_keyboardShortcuts","_notices","_preferences","_commands","_coreCommands","_textEditor","_visualEditor","_keyboardShortcuts2","_keyboardShortcutHelpModal","_preferencesModal","_initPatternModal","_browserUrl","_header","_settingsSidebar","_metaBoxes","_welcomeGuide","_actionsPanel","_startPageOptions","_store","_lockUnlock","_useCommonCommands","getLayoutStyles","unlock","blockEditorPrivateApis","useCommands","coreCommandsPrivateApis","useCommandContext","commandsPrivateApis","InserterSidebar","ListViewSidebar","editorPrivateApis","interfaceLabels","header","__","body","sidebar","actions","footer","useEditorStyles","hasThemeStyleSupport","editorSettings","useSelect","select","editPostStore","isFeatureActive","editorStore","getEditorSettings","useMemo","_editorSettings$style","_editorSettings$style2","presetStyles","styles","filter","style","__unstableType","defaultEditorStyles","hasThemeStyles","length","disableLayoutStyles","push","css","selector","hasBlockGapSupport","hasFallbackGapSupport","fallbackGapValue","Layout","initialPost","useCommonCommands","useBlockCommands","isMobileViewport","useViewportMatch","isHugeViewport","isWideViewport","isLargeViewport","openGeneralSidebar","closeGeneralSidebar","useDispatch","createErrorNotice","noticesStore","setIsInserterOpened","mode","isFullscreenActive","isRichEditingEnabled","sidebarIsOpened","hasActiveMetaboxes","previousShortcut","nextShortcut","hasBlockSelected","isInserterOpened","isListViewOpened","showIconLabels","isDistractionFree","showBlockBreadcrumbs","showMetaBoxes","documentLabel","hasHistory","get","preferencesStore","getPostTypeLabel","postTypeLabel","getRenderingMode","interfaceStore","getActiveComplementaryArea","name","isPublishSidebarOpened","getEditorMode","richEditingEnabled","hasMetaBoxes","keyboardShortcutsStore","getAllShortcutKeyCombinations","_x","blockEditorStore","getBlockSelectionStart","onNavigateToPreviousEntityRecord","commandContext","openSidebarPanel","useEffect","entitiesSavedStatesCallback","setEntitiesSavedStatesCallback","useState","closeEntitiesSavedStates","useCallback","arg","document","classList","add","remove","className","classnames","secondarySidebarLabel","secondarySidebar","_react","createElement","onPluginAreaError","sprintf","Fragment","FullscreenMode","isActive","default","UnsavedChangesWarning","AutosaveMonitor","LocalAutosaveMonitor","EditorKeyboardShortcutsRegister","EditorKeyboardShortcuts","InterfaceSkeleton","labels","editorNotices","EditorNotices","Button","variant","onClick","ComplementaryArea","Slot","scope","notices","EditorSnackbars","content","BlockToolbar","hideDragHandle","location","ScrollLock","BlockBreadcrumb","rootLabelText","isEntitiesSavedStatesOpen","shortcuts","previous","next","PluginArea","onError","_default","exports"],"sources":["@wordpress/edit-post/src/components/layout/index.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport classnames from 'classnames';\n\n/**\n * WordPress dependencies\n */\nimport {\n\tAutosaveMonitor,\n\tLocalAutosaveMonitor,\n\tUnsavedChangesWarning,\n\tEditorNotices,\n\tEditorKeyboardShortcutsRegister,\n\tEditorKeyboardShortcuts,\n\tEditorSnackbars,\n\tstore as editorStore,\n\tprivateApis as editorPrivateApis,\n} from '@wordpress/editor';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport {\n\tuseBlockCommands,\n\tBlockBreadcrumb,\n\tBlockToolbar,\n\tprivateApis as blockEditorPrivateApis,\n\tstore as blockEditorStore,\n} from '@wordpress/block-editor';\nimport { Button, ScrollLock } from '@wordpress/components';\nimport { useViewportMatch } from '@wordpress/compose';\nimport { PluginArea } from '@wordpress/plugins';\nimport { __, _x, sprintf } from '@wordpress/i18n';\nimport {\n\tComplementaryArea,\n\tFullscreenMode,\n\tInterfaceSkeleton,\n\tstore as interfaceStore,\n} from '@wordpress/interface';\nimport { useState, useEffect, useCallback, useMemo } from '@wordpress/element';\nimport { store as keyboardShortcutsStore } from '@wordpress/keyboard-shortcuts';\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';\n\n/**\n * Internal dependencies\n */\nimport TextEditor from '../text-editor';\nimport VisualEditor from '../visual-editor';\nimport EditPostKeyboardShortcuts from '../keyboard-shortcuts';\nimport KeyboardShortcutHelpModal from '../keyboard-shortcut-help-modal';\nimport EditPostPreferencesModal from '../preferences-modal';\nimport InitPatternModal from '../init-pattern-modal';\nimport BrowserURL from '../browser-url';\nimport Header from '../header';\nimport SettingsSidebar from '../sidebar/settings-sidebar';\nimport MetaBoxes from '../meta-boxes';\nimport WelcomeGuide from '../welcome-guide';\nimport ActionsPanel from './actions-panel';\nimport StartPageOptions from '../start-page-options';\nimport { store as editPostStore } from '../../store';\nimport { unlock } from '../../lock-unlock';\nimport useCommonCommands from '../../hooks/commands/use-common-commands';\n\nconst { getLayoutStyles } = unlock( blockEditorPrivateApis );\nconst { useCommands } = unlock( coreCommandsPrivateApis );\nconst { useCommandContext } = unlock( commandsPrivateApis );\nconst { InserterSidebar, ListViewSidebar } = unlock( editorPrivateApis );\n\nconst interfaceLabels = {\n\t/* translators: accessibility text for the editor top bar landmark region. */\n\theader: __( 'Editor top bar' ),\n\t/* translators: accessibility text for the editor content landmark region. */\n\tbody: __( 'Editor content' ),\n\t/* translators: accessibility text for the editor settings landmark region. */\n\tsidebar: __( 'Editor settings' ),\n\t/* translators: accessibility text for the editor publish landmark region. */\n\tactions: __( 'Editor publish' ),\n\t/* translators: accessibility text for the editor footer landmark region. */\n\tfooter: __( 'Editor footer' ),\n};\n\nfunction useEditorStyles() {\n\tconst { hasThemeStyleSupport, editorSettings } = useSelect(\n\t\t( select ) => ( {\n\t\t\thasThemeStyleSupport:\n\t\t\t\tselect( editPostStore ).isFeatureActive( 'themeStyles' ),\n\t\t\teditorSettings: select( editorStore ).getEditorSettings(),\n\t\t} ),\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\treturn hasThemeStyles ? editorSettings.styles : defaultEditorStyles;\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\tuseCommonCommands();\n\tuseBlockCommands();\n\n\tconst isMobileViewport = useViewportMatch( 'medium', '<' );\n\tconst isHugeViewport = useViewportMatch( 'huge', '>=' );\n\tconst isWideViewport = useViewportMatch( 'large' );\n\tconst isLargeViewport = useViewportMatch( 'medium' );\n\n\tconst { openGeneralSidebar, closeGeneralSidebar } =\n\t\tuseDispatch( editPostStore );\n\tconst { createErrorNotice } = useDispatch( noticesStore );\n\tconst { setIsInserterOpened } = useDispatch( editorStore );\n\tconst {\n\t\tmode,\n\t\tisFullscreenActive,\n\t\tisRichEditingEnabled,\n\t\tsidebarIsOpened,\n\t\thasActiveMetaboxes,\n\t\tpreviousShortcut,\n\t\tnextShortcut,\n\t\thasBlockSelected,\n\t\tisInserterOpened,\n\t\tisListViewOpened,\n\t\tshowIconLabels,\n\t\tisDistractionFree,\n\t\tshowBlockBreadcrumbs,\n\t\tshowMetaBoxes,\n\t\tdocumentLabel,\n\t\thasHistory,\n\t} = useSelect( ( select ) => {\n\t\tconst { get } = select( preferencesStore );\n\t\tconst { getEditorSettings, getPostTypeLabel } = select( editorStore );\n\t\tconst editorSettings = getEditorSettings();\n\t\tconst postTypeLabel = getPostTypeLabel();\n\n\t\treturn {\n\t\t\tshowMetaBoxes:\n\t\t\t\tselect( editorStore ).getRenderingMode() === 'post-only',\n\t\t\tsidebarIsOpened: !! (\n\t\t\t\tselect( interfaceStore ).getActiveComplementaryArea(\n\t\t\t\t\teditPostStore.name\n\t\t\t\t) || select( editPostStore ).isPublishSidebarOpened()\n\t\t\t),\n\t\t\tisFullscreenActive:\n\t\t\t\tselect( editPostStore ).isFeatureActive( 'fullscreenMode' ),\n\t\t\tisInserterOpened: select( editorStore ).isInserterOpened(),\n\t\t\tisListViewOpened: select( editorStore ).isListViewOpened(),\n\t\t\tmode: select( editPostStore ).getEditorMode(),\n\t\t\tisRichEditingEnabled: editorSettings.richEditingEnabled,\n\t\t\thasActiveMetaboxes: select( editPostStore ).hasMetaBoxes(),\n\t\t\tpreviousShortcut: select(\n\t\t\t\tkeyboardShortcutsStore\n\t\t\t).getAllShortcutKeyCombinations( 'core/edit-post/previous-region' ),\n\t\t\tnextShortcut: select(\n\t\t\t\tkeyboardShortcutsStore\n\t\t\t).getAllShortcutKeyCombinations( 'core/edit-post/next-region' ),\n\t\t\tshowIconLabels: get( 'core', 'showIconLabels' ),\n\t\t\tisDistractionFree: get( 'core', 'distractionFree' ),\n\t\t\tshowBlockBreadcrumbs: get( 'core', 'showBlockBreadcrumbs' ),\n\t\t\t// translators: Default label for the Document in the Block Breadcrumb.\n\t\t\tdocumentLabel: postTypeLabel || _x( 'Document', 'noun' ),\n\t\t\thasBlockSelected:\n\t\t\t\t!! select( blockEditorStore ).getBlockSelectionStart(),\n\t\t\thasHistory: !! getEditorSettings().onNavigateToPreviousEntityRecord,\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: 'post-editor-edit';\n\tuseCommandContext( commandContext );\n\n\tconst styles = useEditorStyles();\n\n\tconst openSidebarPanel = () =>\n\t\topenGeneralSidebar(\n\t\t\thasBlockSelected ? 'edit-post/block' : 'edit-post/document'\n\t\t);\n\n\t// Inserter and Sidebars are mutually exclusive\n\tuseEffect( () => {\n\t\tif ( sidebarIsOpened && ! isHugeViewport ) {\n\t\t\tsetIsInserterOpened( false );\n\t\t}\n\t}, [ isHugeViewport, setIsInserterOpened, sidebarIsOpened ] );\n\tuseEffect( () => {\n\t\tif ( isInserterOpened && ! isHugeViewport ) {\n\t\t\tcloseGeneralSidebar();\n\t\t}\n\t}, [ closeGeneralSidebar, isInserterOpened, isHugeViewport ] );\n\n\t// Local state for save panel.\n\t// Note 'truthy' callback implies an open panel.\n\tconst [ entitiesSavedStatesCallback, setEntitiesSavedStatesCallback ] =\n\t\tuseState( false );\n\n\tconst closeEntitiesSavedStates = useCallback(\n\t\t( arg ) => {\n\t\t\tif ( typeof entitiesSavedStatesCallback === 'function' ) {\n\t\t\t\tentitiesSavedStatesCallback( arg );\n\t\t\t}\n\t\t\tsetEntitiesSavedStatesCallback( false );\n\t\t},\n\t\t[ entitiesSavedStatesCallback ]\n\t);\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 = classnames( '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'is-entity-save-view-open': !! entitiesSavedStatesCallback,\n\t} );\n\n\tconst secondarySidebarLabel = isListViewOpened\n\t\t? __( 'Document Overview' )\n\t\t: __( 'Block Library' );\n\n\tconst secondarySidebar = () => {\n\t\tif ( mode === 'visual' && isInserterOpened ) {\n\t\t\treturn <InserterSidebar />;\n\t\t}\n\t\tif ( mode === 'visual' && isListViewOpened ) {\n\t\t\treturn <ListViewSidebar />;\n\t\t}\n\n\t\treturn null;\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\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<EditorKeyboardShortcuts />\n\n\t\t\t<InterfaceSkeleton\n\t\t\t\tisDistractionFree={ isDistractionFree && isWideViewport }\n\t\t\t\tclassName={ className }\n\t\t\t\tlabels={ {\n\t\t\t\t\t...interfaceLabels,\n\t\t\t\t\tsecondarySidebar: secondarySidebarLabel,\n\t\t\t\t} }\n\t\t\t\theader={\n\t\t\t\t\t<Header\n\t\t\t\t\t\tsetEntitiesSavedStatesCallback={\n\t\t\t\t\t\t\tsetEntitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t\tinitialPost={ initialPost }\n\t\t\t\t\t/>\n\t\t\t\t}\n\t\t\t\teditorNotices={ <EditorNotices /> }\n\t\t\t\tsecondarySidebar={ secondarySidebar() }\n\t\t\t\tsidebar={\n\t\t\t\t\t( ! isMobileViewport || sidebarIsOpened ) && (\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t{ ! isMobileViewport && ! sidebarIsOpened && (\n\t\t\t\t\t\t\t\t<div className=\"edit-post-layout__toggle-sidebar-panel\">\n\t\t\t\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\t\t\t\tvariant=\"secondary\"\n\t\t\t\t\t\t\t\t\t\tclassName=\"edit-post-layout__toggle-sidebar-panel-button\"\n\t\t\t\t\t\t\t\t\t\tonClick={ openSidebarPanel }\n\t\t\t\t\t\t\t\t\t\taria-expanded={ false }\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t{ hasBlockSelected\n\t\t\t\t\t\t\t\t\t\t\t? __( 'Open block settings' )\n\t\t\t\t\t\t\t\t\t\t\t: __( 'Open document settings' ) }\n\t\t\t\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t\t<ComplementaryArea.Slot scope=\"core/edit-post\" />\n\t\t\t\t\t\t</>\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t\tnotices={ <EditorSnackbars /> }\n\t\t\t\tcontent={\n\t\t\t\t\t<>\n\t\t\t\t\t\t{ ! isDistractionFree && <EditorNotices /> }\n\t\t\t\t\t\t{ ( mode === 'text' || ! isRichEditingEnabled ) && (\n\t\t\t\t\t\t\t<TextEditor />\n\t\t\t\t\t\t) }\n\t\t\t\t\t\t{ ! isLargeViewport && <BlockToolbar hideDragHandle /> }\n\t\t\t\t\t\t{ isRichEditingEnabled && mode === 'visual' && (\n\t\t\t\t\t\t\t<VisualEditor styles={ styles } />\n\t\t\t\t\t\t) }\n\t\t\t\t\t\t{ ! isDistractionFree && showMetaBoxes && (\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\t{ isMobileViewport && sidebarIsOpened && (\n\t\t\t\t\t\t\t<ScrollLock />\n\t\t\t\t\t\t) }\n\t\t\t\t\t</>\n\t\t\t\t}\n\t\t\t\tfooter={\n\t\t\t\t\t! isDistractionFree &&\n\t\t\t\t\t! isMobileViewport &&\n\t\t\t\t\tshowBlockBreadcrumbs &&\n\t\t\t\t\tisRichEditingEnabled &&\n\t\t\t\t\tmode === 'visual' && (\n\t\t\t\t\t\t<div className=\"edit-post-layout__footer\">\n\t\t\t\t\t\t\t<BlockBreadcrumb rootLabelText={ documentLabel } />\n\t\t\t\t\t\t</div>\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t\tactions={\n\t\t\t\t\t<ActionsPanel\n\t\t\t\t\t\tcloseEntitiesSavedStates={ closeEntitiesSavedStates }\n\t\t\t\t\t\tisEntitiesSavedStatesOpen={\n\t\t\t\t\t\t\tentitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsetEntitiesSavedStatesCallback={\n\t\t\t\t\t\t\tsetEntitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t/>\n\t\t\t\t}\n\t\t\t\tshortcuts={ {\n\t\t\t\t\tprevious: previousShortcut,\n\t\t\t\t\tnext: nextShortcut,\n\t\t\t\t} }\n\t\t\t/>\n\t\t\t<EditPostPreferencesModal />\n\t\t\t<KeyboardShortcutHelpModal />\n\t\t\t<WelcomeGuide />\n\t\t\t<InitPatternModal />\n\t\t\t<StartPageOptions />\n\t\t\t<PluginArea onError={ onPluginAreaError } />\n\t\t\t{ ! isDistractionFree && <SettingsSidebar /> }\n\t\t</>\n\t);\n}\n\nexport default Layout;\n"],"mappings":"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"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { createElement, Fragment } from "react";
|
|
2
|
+
/**
|
|
3
|
+
* WordPress dependencies
|
|
4
|
+
*/
|
|
5
|
+
import { useSelect, useDispatch } from '@wordpress/data';
|
|
6
|
+
import { __, _x } from '@wordpress/i18n';
|
|
7
|
+
import { Modal, Button, __experimentalHStack as HStack, __experimentalVStack as VStack, ToggleControl, TextControl } from '@wordpress/components';
|
|
8
|
+
import { useEffect, useState } from '@wordpress/element';
|
|
9
|
+
import { store as editorStore } from '@wordpress/editor';
|
|
10
|
+
import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor';
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Internal dependencies
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
import { unlock } from '../../lock-unlock';
|
|
17
|
+
const {
|
|
18
|
+
ReusableBlocksRenameHint
|
|
19
|
+
} = unlock(blockEditorPrivateApis);
|
|
20
|
+
export default function InitPatternModal() {
|
|
21
|
+
const {
|
|
22
|
+
editPost
|
|
23
|
+
} = useDispatch(editorStore);
|
|
24
|
+
const [isModalOpen, setIsModalOpen] = useState(false);
|
|
25
|
+
const [syncType, setSyncType] = useState(undefined);
|
|
26
|
+
const [title, setTitle] = useState('');
|
|
27
|
+
const {
|
|
28
|
+
postType,
|
|
29
|
+
isNewPost
|
|
30
|
+
} = useSelect(select => {
|
|
31
|
+
const {
|
|
32
|
+
getEditedPostAttribute,
|
|
33
|
+
isCleanNewPost
|
|
34
|
+
} = select(editorStore);
|
|
35
|
+
return {
|
|
36
|
+
postType: getEditedPostAttribute('type'),
|
|
37
|
+
isNewPost: isCleanNewPost()
|
|
38
|
+
};
|
|
39
|
+
}, []);
|
|
40
|
+
useEffect(() => {
|
|
41
|
+
if (isNewPost && postType === 'wp_block') {
|
|
42
|
+
setIsModalOpen(true);
|
|
43
|
+
}
|
|
44
|
+
// We only want the modal to open when the page is first loaded.
|
|
45
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
46
|
+
}, []);
|
|
47
|
+
if (postType !== 'wp_block' || !isNewPost) {
|
|
48
|
+
return null;
|
|
49
|
+
}
|
|
50
|
+
return createElement(Fragment, null, isModalOpen && createElement(Modal, {
|
|
51
|
+
title: __('Create pattern'),
|
|
52
|
+
onRequestClose: () => {
|
|
53
|
+
setIsModalOpen(false);
|
|
54
|
+
},
|
|
55
|
+
overlayClassName: "reusable-blocks-menu-items__convert-modal"
|
|
56
|
+
}, createElement("form", {
|
|
57
|
+
onSubmit: event => {
|
|
58
|
+
event.preventDefault();
|
|
59
|
+
setIsModalOpen(false);
|
|
60
|
+
editPost({
|
|
61
|
+
title,
|
|
62
|
+
meta: {
|
|
63
|
+
wp_pattern_sync_status: syncType
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
}, createElement(VStack, {
|
|
68
|
+
spacing: "5"
|
|
69
|
+
}, createElement(TextControl, {
|
|
70
|
+
label: __('Name'),
|
|
71
|
+
value: title,
|
|
72
|
+
onChange: setTitle,
|
|
73
|
+
placeholder: __('My pattern'),
|
|
74
|
+
className: "patterns-create-modal__name-input",
|
|
75
|
+
__nextHasNoMarginBottom: true,
|
|
76
|
+
__next40pxDefaultSize: true
|
|
77
|
+
}), createElement(ReusableBlocksRenameHint, null), createElement(ToggleControl, {
|
|
78
|
+
label: _x('Synced', 'Option that makes an individual pattern synchronized'),
|
|
79
|
+
help: __('Sync this pattern across multiple locations.'),
|
|
80
|
+
checked: !syncType,
|
|
81
|
+
onChange: () => {
|
|
82
|
+
setSyncType(!syncType ? 'unsynced' : undefined);
|
|
83
|
+
}
|
|
84
|
+
}), createElement(HStack, {
|
|
85
|
+
justify: "right"
|
|
86
|
+
}, createElement(Button, {
|
|
87
|
+
variant: "primary",
|
|
88
|
+
type: "submit",
|
|
89
|
+
disabled: !title,
|
|
90
|
+
__experimentalIsFocusable: true
|
|
91
|
+
}, __('Create')))))));
|
|
92
|
+
}
|
|
93
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["useSelect","useDispatch","__","_x","Modal","Button","__experimentalHStack","HStack","__experimentalVStack","VStack","ToggleControl","TextControl","useEffect","useState","store","editorStore","privateApis","blockEditorPrivateApis","unlock","ReusableBlocksRenameHint","InitPatternModal","editPost","isModalOpen","setIsModalOpen","syncType","setSyncType","undefined","title","setTitle","postType","isNewPost","select","getEditedPostAttribute","isCleanNewPost","createElement","Fragment","onRequestClose","overlayClassName","onSubmit","event","preventDefault","meta","wp_pattern_sync_status","spacing","label","value","onChange","placeholder","className","__nextHasNoMarginBottom","__next40pxDefaultSize","help","checked","justify","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(\n\t\t\t\t\t\t\t\t\t'Synced',\n\t\t\t\t\t\t\t\t\t'Option that makes an individual pattern synchronized'\n\t\t\t\t\t\t\t\t) }\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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"}
|
|
@@ -7,7 +7,7 @@ import classnames from 'classnames';
|
|
|
7
7
|
/**
|
|
8
8
|
* WordPress dependencies
|
|
9
9
|
*/
|
|
10
|
-
import { AutosaveMonitor, LocalAutosaveMonitor, UnsavedChangesWarning, EditorNotices, EditorKeyboardShortcutsRegister, EditorKeyboardShortcuts, EditorSnackbars,
|
|
10
|
+
import { AutosaveMonitor, LocalAutosaveMonitor, UnsavedChangesWarning, EditorNotices, EditorKeyboardShortcutsRegister, EditorKeyboardShortcuts, EditorSnackbars, store as editorStore, privateApis as editorPrivateApis } from '@wordpress/editor';
|
|
11
11
|
import { useSelect, useDispatch } from '@wordpress/data';
|
|
12
12
|
import { useBlockCommands, BlockBreadcrumb, BlockToolbar, privateApis as blockEditorPrivateApis, store as blockEditorStore } from '@wordpress/block-editor';
|
|
13
13
|
import { Button, ScrollLock } from '@wordpress/components';
|
|
@@ -30,6 +30,7 @@ import VisualEditor from '../visual-editor';
|
|
|
30
30
|
import EditPostKeyboardShortcuts from '../keyboard-shortcuts';
|
|
31
31
|
import KeyboardShortcutHelpModal from '../keyboard-shortcut-help-modal';
|
|
32
32
|
import EditPostPreferencesModal from '../preferences-modal';
|
|
33
|
+
import InitPatternModal from '../init-pattern-modal';
|
|
33
34
|
import BrowserURL from '../browser-url';
|
|
34
35
|
import Header from '../header';
|
|
35
36
|
import SettingsSidebar from '../sidebar/settings-sidebar';
|
|
@@ -274,7 +275,7 @@ function Layout({
|
|
|
274
275
|
previous: previousShortcut,
|
|
275
276
|
next: nextShortcut
|
|
276
277
|
}
|
|
277
|
-
}), createElement(EditPostPreferencesModal, null), createElement(KeyboardShortcutHelpModal, null), createElement(WelcomeGuide, null), createElement(
|
|
278
|
+
}), createElement(EditPostPreferencesModal, null), createElement(KeyboardShortcutHelpModal, null), createElement(WelcomeGuide, null), createElement(InitPatternModal, null), createElement(StartPageOptions, null), createElement(PluginArea, {
|
|
278
279
|
onError: onPluginAreaError
|
|
279
280
|
}), !isDistractionFree && createElement(SettingsSidebar, null));
|
|
280
281
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["classnames","AutosaveMonitor","LocalAutosaveMonitor","UnsavedChangesWarning","EditorNotices","EditorKeyboardShortcutsRegister","EditorKeyboardShortcuts","EditorSnackbars","PostSyncStatusModal","store","editorStore","privateApis","editorPrivateApis","useSelect","useDispatch","useBlockCommands","BlockBreadcrumb","BlockToolbar","blockEditorPrivateApis","blockEditorStore","Button","ScrollLock","useViewportMatch","PluginArea","__","_x","sprintf","ComplementaryArea","FullscreenMode","InterfaceSkeleton","interfaceStore","useState","useEffect","useCallback","useMemo","keyboardShortcutsStore","noticesStore","preferencesStore","commandsPrivateApis","coreCommandsPrivateApis","TextEditor","VisualEditor","EditPostKeyboardShortcuts","KeyboardShortcutHelpModal","EditPostPreferencesModal","BrowserURL","Header","SettingsSidebar","MetaBoxes","WelcomeGuide","ActionsPanel","StartPageOptions","editPostStore","unlock","useCommonCommands","getLayoutStyles","useCommands","useCommandContext","InserterSidebar","ListViewSidebar","interfaceLabels","header","body","sidebar","actions","footer","useEditorStyles","hasThemeStyleSupport","editorSettings","select","isFeatureActive","getEditorSettings","_editorSettings$style","_editorSettings$style2","presetStyles","styles","filter","style","__unstableType","defaultEditorStyles","hasThemeStyles","length","disableLayoutStyles","push","css","selector","hasBlockGapSupport","hasFallbackGapSupport","fallbackGapValue","Layout","initialPost","isMobileViewport","isHugeViewport","isWideViewport","isLargeViewport","openGeneralSidebar","closeGeneralSidebar","createErrorNotice","setIsInserterOpened","mode","isFullscreenActive","isRichEditingEnabled","sidebarIsOpened","hasActiveMetaboxes","previousShortcut","nextShortcut","hasBlockSelected","isInserterOpened","isListViewOpened","showIconLabels","isDistractionFree","showBlockBreadcrumbs","showMetaBoxes","documentLabel","hasHistory","get","getPostTypeLabel","postTypeLabel","getRenderingMode","getActiveComplementaryArea","name","isPublishSidebarOpened","getEditorMode","richEditingEnabled","hasMetaBoxes","getAllShortcutKeyCombinations","getBlockSelectionStart","onNavigateToPreviousEntityRecord","commandContext","openSidebarPanel","entitiesSavedStatesCallback","setEntitiesSavedStatesCallback","closeEntitiesSavedStates","arg","document","classList","add","remove","className","secondarySidebarLabel","secondarySidebar","createElement","onPluginAreaError","Fragment","isActive","labels","editorNotices","variant","onClick","Slot","scope","notices","content","hideDragHandle","location","rootLabelText","isEntitiesSavedStatesOpen","shortcuts","previous","next","onError"],"sources":["@wordpress/edit-post/src/components/layout/index.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport classnames from 'classnames';\n\n/**\n * WordPress dependencies\n */\nimport {\n\tAutosaveMonitor,\n\tLocalAutosaveMonitor,\n\tUnsavedChangesWarning,\n\tEditorNotices,\n\tEditorKeyboardShortcutsRegister,\n\tEditorKeyboardShortcuts,\n\tEditorSnackbars,\n\tPostSyncStatusModal,\n\tstore as editorStore,\n\tprivateApis as editorPrivateApis,\n} from '@wordpress/editor';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport {\n\tuseBlockCommands,\n\tBlockBreadcrumb,\n\tBlockToolbar,\n\tprivateApis as blockEditorPrivateApis,\n\tstore as blockEditorStore,\n} from '@wordpress/block-editor';\nimport { Button, ScrollLock } from '@wordpress/components';\nimport { useViewportMatch } from '@wordpress/compose';\nimport { PluginArea } from '@wordpress/plugins';\nimport { __, _x, sprintf } from '@wordpress/i18n';\nimport {\n\tComplementaryArea,\n\tFullscreenMode,\n\tInterfaceSkeleton,\n\tstore as interfaceStore,\n} from '@wordpress/interface';\nimport { useState, useEffect, useCallback, useMemo } from '@wordpress/element';\nimport { store as keyboardShortcutsStore } from '@wordpress/keyboard-shortcuts';\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';\n\n/**\n * Internal dependencies\n */\nimport TextEditor from '../text-editor';\nimport VisualEditor from '../visual-editor';\nimport EditPostKeyboardShortcuts from '../keyboard-shortcuts';\nimport KeyboardShortcutHelpModal from '../keyboard-shortcut-help-modal';\nimport EditPostPreferencesModal from '../preferences-modal';\nimport BrowserURL from '../browser-url';\nimport Header from '../header';\nimport SettingsSidebar from '../sidebar/settings-sidebar';\nimport MetaBoxes from '../meta-boxes';\nimport WelcomeGuide from '../welcome-guide';\nimport ActionsPanel from './actions-panel';\nimport StartPageOptions from '../start-page-options';\nimport { store as editPostStore } from '../../store';\nimport { unlock } from '../../lock-unlock';\nimport useCommonCommands from '../../hooks/commands/use-common-commands';\n\nconst { getLayoutStyles } = unlock( blockEditorPrivateApis );\nconst { useCommands } = unlock( coreCommandsPrivateApis );\nconst { useCommandContext } = unlock( commandsPrivateApis );\nconst { InserterSidebar, ListViewSidebar } = unlock( editorPrivateApis );\n\nconst interfaceLabels = {\n\t/* translators: accessibility text for the editor top bar landmark region. */\n\theader: __( 'Editor top bar' ),\n\t/* translators: accessibility text for the editor content landmark region. */\n\tbody: __( 'Editor content' ),\n\t/* translators: accessibility text for the editor settings landmark region. */\n\tsidebar: __( 'Editor settings' ),\n\t/* translators: accessibility text for the editor publish landmark region. */\n\tactions: __( 'Editor publish' ),\n\t/* translators: accessibility text for the editor footer landmark region. */\n\tfooter: __( 'Editor footer' ),\n};\n\nfunction useEditorStyles() {\n\tconst { hasThemeStyleSupport, editorSettings } = useSelect(\n\t\t( select ) => ( {\n\t\t\thasThemeStyleSupport:\n\t\t\t\tselect( editPostStore ).isFeatureActive( 'themeStyles' ),\n\t\t\teditorSettings: select( editorStore ).getEditorSettings(),\n\t\t} ),\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\treturn hasThemeStyles ? editorSettings.styles : defaultEditorStyles;\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\tuseCommonCommands();\n\tuseBlockCommands();\n\n\tconst isMobileViewport = useViewportMatch( 'medium', '<' );\n\tconst isHugeViewport = useViewportMatch( 'huge', '>=' );\n\tconst isWideViewport = useViewportMatch( 'large' );\n\tconst isLargeViewport = useViewportMatch( 'medium' );\n\n\tconst { openGeneralSidebar, closeGeneralSidebar } =\n\t\tuseDispatch( editPostStore );\n\tconst { createErrorNotice } = useDispatch( noticesStore );\n\tconst { setIsInserterOpened } = useDispatch( editorStore );\n\tconst {\n\t\tmode,\n\t\tisFullscreenActive,\n\t\tisRichEditingEnabled,\n\t\tsidebarIsOpened,\n\t\thasActiveMetaboxes,\n\t\tpreviousShortcut,\n\t\tnextShortcut,\n\t\thasBlockSelected,\n\t\tisInserterOpened,\n\t\tisListViewOpened,\n\t\tshowIconLabels,\n\t\tisDistractionFree,\n\t\tshowBlockBreadcrumbs,\n\t\tshowMetaBoxes,\n\t\tdocumentLabel,\n\t\thasHistory,\n\t} = useSelect( ( select ) => {\n\t\tconst { get } = select( preferencesStore );\n\t\tconst { getEditorSettings, getPostTypeLabel } = select( editorStore );\n\t\tconst editorSettings = getEditorSettings();\n\t\tconst postTypeLabel = getPostTypeLabel();\n\n\t\treturn {\n\t\t\tshowMetaBoxes:\n\t\t\t\tselect( editorStore ).getRenderingMode() === 'post-only',\n\t\t\tsidebarIsOpened: !! (\n\t\t\t\tselect( interfaceStore ).getActiveComplementaryArea(\n\t\t\t\t\teditPostStore.name\n\t\t\t\t) || select( editPostStore ).isPublishSidebarOpened()\n\t\t\t),\n\t\t\tisFullscreenActive:\n\t\t\t\tselect( editPostStore ).isFeatureActive( 'fullscreenMode' ),\n\t\t\tisInserterOpened: select( editorStore ).isInserterOpened(),\n\t\t\tisListViewOpened: select( editorStore ).isListViewOpened(),\n\t\t\tmode: select( editPostStore ).getEditorMode(),\n\t\t\tisRichEditingEnabled: editorSettings.richEditingEnabled,\n\t\t\thasActiveMetaboxes: select( editPostStore ).hasMetaBoxes(),\n\t\t\tpreviousShortcut: select(\n\t\t\t\tkeyboardShortcutsStore\n\t\t\t).getAllShortcutKeyCombinations( 'core/edit-post/previous-region' ),\n\t\t\tnextShortcut: select(\n\t\t\t\tkeyboardShortcutsStore\n\t\t\t).getAllShortcutKeyCombinations( 'core/edit-post/next-region' ),\n\t\t\tshowIconLabels: get( 'core', 'showIconLabels' ),\n\t\t\tisDistractionFree: get( 'core', 'distractionFree' ),\n\t\t\tshowBlockBreadcrumbs: get( 'core', 'showBlockBreadcrumbs' ),\n\t\t\t// translators: Default label for the Document in the Block Breadcrumb.\n\t\t\tdocumentLabel: postTypeLabel || _x( 'Document', 'noun' ),\n\t\t\thasBlockSelected:\n\t\t\t\t!! select( blockEditorStore ).getBlockSelectionStart(),\n\t\t\thasHistory: !! getEditorSettings().onNavigateToPreviousEntityRecord,\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: 'post-editor-edit';\n\tuseCommandContext( commandContext );\n\n\tconst styles = useEditorStyles();\n\n\tconst openSidebarPanel = () =>\n\t\topenGeneralSidebar(\n\t\t\thasBlockSelected ? 'edit-post/block' : 'edit-post/document'\n\t\t);\n\n\t// Inserter and Sidebars are mutually exclusive\n\tuseEffect( () => {\n\t\tif ( sidebarIsOpened && ! isHugeViewport ) {\n\t\t\tsetIsInserterOpened( false );\n\t\t}\n\t}, [ isHugeViewport, setIsInserterOpened, sidebarIsOpened ] );\n\tuseEffect( () => {\n\t\tif ( isInserterOpened && ! isHugeViewport ) {\n\t\t\tcloseGeneralSidebar();\n\t\t}\n\t}, [ closeGeneralSidebar, isInserterOpened, isHugeViewport ] );\n\n\t// Local state for save panel.\n\t// Note 'truthy' callback implies an open panel.\n\tconst [ entitiesSavedStatesCallback, setEntitiesSavedStatesCallback ] =\n\t\tuseState( false );\n\n\tconst closeEntitiesSavedStates = useCallback(\n\t\t( arg ) => {\n\t\t\tif ( typeof entitiesSavedStatesCallback === 'function' ) {\n\t\t\t\tentitiesSavedStatesCallback( arg );\n\t\t\t}\n\t\t\tsetEntitiesSavedStatesCallback( false );\n\t\t},\n\t\t[ entitiesSavedStatesCallback ]\n\t);\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 = classnames( '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'is-entity-save-view-open': !! entitiesSavedStatesCallback,\n\t} );\n\n\tconst secondarySidebarLabel = isListViewOpened\n\t\t? __( 'Document Overview' )\n\t\t: __( 'Block Library' );\n\n\tconst secondarySidebar = () => {\n\t\tif ( mode === 'visual' && isInserterOpened ) {\n\t\t\treturn <InserterSidebar />;\n\t\t}\n\t\tif ( mode === 'visual' && isListViewOpened ) {\n\t\t\treturn <ListViewSidebar />;\n\t\t}\n\n\t\treturn null;\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\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<EditorKeyboardShortcuts />\n\n\t\t\t<InterfaceSkeleton\n\t\t\t\tisDistractionFree={ isDistractionFree && isWideViewport }\n\t\t\t\tclassName={ className }\n\t\t\t\tlabels={ {\n\t\t\t\t\t...interfaceLabels,\n\t\t\t\t\tsecondarySidebar: secondarySidebarLabel,\n\t\t\t\t} }\n\t\t\t\theader={\n\t\t\t\t\t<Header\n\t\t\t\t\t\tsetEntitiesSavedStatesCallback={\n\t\t\t\t\t\t\tsetEntitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t\tinitialPost={ initialPost }\n\t\t\t\t\t/>\n\t\t\t\t}\n\t\t\t\teditorNotices={ <EditorNotices /> }\n\t\t\t\tsecondarySidebar={ secondarySidebar() }\n\t\t\t\tsidebar={\n\t\t\t\t\t( ! isMobileViewport || sidebarIsOpened ) && (\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t{ ! isMobileViewport && ! sidebarIsOpened && (\n\t\t\t\t\t\t\t\t<div className=\"edit-post-layout__toggle-sidebar-panel\">\n\t\t\t\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\t\t\t\tvariant=\"secondary\"\n\t\t\t\t\t\t\t\t\t\tclassName=\"edit-post-layout__toggle-sidebar-panel-button\"\n\t\t\t\t\t\t\t\t\t\tonClick={ openSidebarPanel }\n\t\t\t\t\t\t\t\t\t\taria-expanded={ false }\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t{ hasBlockSelected\n\t\t\t\t\t\t\t\t\t\t\t? __( 'Open block settings' )\n\t\t\t\t\t\t\t\t\t\t\t: __( 'Open document settings' ) }\n\t\t\t\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t\t<ComplementaryArea.Slot scope=\"core/edit-post\" />\n\t\t\t\t\t\t</>\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t\tnotices={ <EditorSnackbars /> }\n\t\t\t\tcontent={\n\t\t\t\t\t<>\n\t\t\t\t\t\t{ ! isDistractionFree && <EditorNotices /> }\n\t\t\t\t\t\t{ ( mode === 'text' || ! isRichEditingEnabled ) && (\n\t\t\t\t\t\t\t<TextEditor />\n\t\t\t\t\t\t) }\n\t\t\t\t\t\t{ ! isLargeViewport && <BlockToolbar hideDragHandle /> }\n\t\t\t\t\t\t{ isRichEditingEnabled && mode === 'visual' && (\n\t\t\t\t\t\t\t<VisualEditor styles={ styles } />\n\t\t\t\t\t\t) }\n\t\t\t\t\t\t{ ! isDistractionFree && showMetaBoxes && (\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\t{ isMobileViewport && sidebarIsOpened && (\n\t\t\t\t\t\t\t<ScrollLock />\n\t\t\t\t\t\t) }\n\t\t\t\t\t</>\n\t\t\t\t}\n\t\t\t\tfooter={\n\t\t\t\t\t! isDistractionFree &&\n\t\t\t\t\t! isMobileViewport &&\n\t\t\t\t\tshowBlockBreadcrumbs &&\n\t\t\t\t\tisRichEditingEnabled &&\n\t\t\t\t\tmode === 'visual' && (\n\t\t\t\t\t\t<div className=\"edit-post-layout__footer\">\n\t\t\t\t\t\t\t<BlockBreadcrumb rootLabelText={ documentLabel } />\n\t\t\t\t\t\t</div>\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t\tactions={\n\t\t\t\t\t<ActionsPanel\n\t\t\t\t\t\tcloseEntitiesSavedStates={ closeEntitiesSavedStates }\n\t\t\t\t\t\tisEntitiesSavedStatesOpen={\n\t\t\t\t\t\t\tentitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsetEntitiesSavedStatesCallback={\n\t\t\t\t\t\t\tsetEntitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t/>\n\t\t\t\t}\n\t\t\t\tshortcuts={ {\n\t\t\t\t\tprevious: previousShortcut,\n\t\t\t\t\tnext: nextShortcut,\n\t\t\t\t} }\n\t\t\t/>\n\t\t\t<EditPostPreferencesModal />\n\t\t\t<KeyboardShortcutHelpModal />\n\t\t\t<WelcomeGuide />\n\t\t\t<PostSyncStatusModal />\n\t\t\t<StartPageOptions />\n\t\t\t<PluginArea onError={ onPluginAreaError } />\n\t\t\t{ ! isDistractionFree && <SettingsSidebar /> }\n\t\t</>\n\t);\n}\n\nexport default Layout;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["classnames","AutosaveMonitor","LocalAutosaveMonitor","UnsavedChangesWarning","EditorNotices","EditorKeyboardShortcutsRegister","EditorKeyboardShortcuts","EditorSnackbars","store","editorStore","privateApis","editorPrivateApis","useSelect","useDispatch","useBlockCommands","BlockBreadcrumb","BlockToolbar","blockEditorPrivateApis","blockEditorStore","Button","ScrollLock","useViewportMatch","PluginArea","__","_x","sprintf","ComplementaryArea","FullscreenMode","InterfaceSkeleton","interfaceStore","useState","useEffect","useCallback","useMemo","keyboardShortcutsStore","noticesStore","preferencesStore","commandsPrivateApis","coreCommandsPrivateApis","TextEditor","VisualEditor","EditPostKeyboardShortcuts","KeyboardShortcutHelpModal","EditPostPreferencesModal","InitPatternModal","BrowserURL","Header","SettingsSidebar","MetaBoxes","WelcomeGuide","ActionsPanel","StartPageOptions","editPostStore","unlock","useCommonCommands","getLayoutStyles","useCommands","useCommandContext","InserterSidebar","ListViewSidebar","interfaceLabels","header","body","sidebar","actions","footer","useEditorStyles","hasThemeStyleSupport","editorSettings","select","isFeatureActive","getEditorSettings","_editorSettings$style","_editorSettings$style2","presetStyles","styles","filter","style","__unstableType","defaultEditorStyles","hasThemeStyles","length","disableLayoutStyles","push","css","selector","hasBlockGapSupport","hasFallbackGapSupport","fallbackGapValue","Layout","initialPost","isMobileViewport","isHugeViewport","isWideViewport","isLargeViewport","openGeneralSidebar","closeGeneralSidebar","createErrorNotice","setIsInserterOpened","mode","isFullscreenActive","isRichEditingEnabled","sidebarIsOpened","hasActiveMetaboxes","previousShortcut","nextShortcut","hasBlockSelected","isInserterOpened","isListViewOpened","showIconLabels","isDistractionFree","showBlockBreadcrumbs","showMetaBoxes","documentLabel","hasHistory","get","getPostTypeLabel","postTypeLabel","getRenderingMode","getActiveComplementaryArea","name","isPublishSidebarOpened","getEditorMode","richEditingEnabled","hasMetaBoxes","getAllShortcutKeyCombinations","getBlockSelectionStart","onNavigateToPreviousEntityRecord","commandContext","openSidebarPanel","entitiesSavedStatesCallback","setEntitiesSavedStatesCallback","closeEntitiesSavedStates","arg","document","classList","add","remove","className","secondarySidebarLabel","secondarySidebar","createElement","onPluginAreaError","Fragment","isActive","labels","editorNotices","variant","onClick","Slot","scope","notices","content","hideDragHandle","location","rootLabelText","isEntitiesSavedStatesOpen","shortcuts","previous","next","onError"],"sources":["@wordpress/edit-post/src/components/layout/index.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport classnames from 'classnames';\n\n/**\n * WordPress dependencies\n */\nimport {\n\tAutosaveMonitor,\n\tLocalAutosaveMonitor,\n\tUnsavedChangesWarning,\n\tEditorNotices,\n\tEditorKeyboardShortcutsRegister,\n\tEditorKeyboardShortcuts,\n\tEditorSnackbars,\n\tstore as editorStore,\n\tprivateApis as editorPrivateApis,\n} from '@wordpress/editor';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport {\n\tuseBlockCommands,\n\tBlockBreadcrumb,\n\tBlockToolbar,\n\tprivateApis as blockEditorPrivateApis,\n\tstore as blockEditorStore,\n} from '@wordpress/block-editor';\nimport { Button, ScrollLock } from '@wordpress/components';\nimport { useViewportMatch } from '@wordpress/compose';\nimport { PluginArea } from '@wordpress/plugins';\nimport { __, _x, sprintf } from '@wordpress/i18n';\nimport {\n\tComplementaryArea,\n\tFullscreenMode,\n\tInterfaceSkeleton,\n\tstore as interfaceStore,\n} from '@wordpress/interface';\nimport { useState, useEffect, useCallback, useMemo } from '@wordpress/element';\nimport { store as keyboardShortcutsStore } from '@wordpress/keyboard-shortcuts';\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';\n\n/**\n * Internal dependencies\n */\nimport TextEditor from '../text-editor';\nimport VisualEditor from '../visual-editor';\nimport EditPostKeyboardShortcuts from '../keyboard-shortcuts';\nimport KeyboardShortcutHelpModal from '../keyboard-shortcut-help-modal';\nimport EditPostPreferencesModal from '../preferences-modal';\nimport InitPatternModal from '../init-pattern-modal';\nimport BrowserURL from '../browser-url';\nimport Header from '../header';\nimport SettingsSidebar from '../sidebar/settings-sidebar';\nimport MetaBoxes from '../meta-boxes';\nimport WelcomeGuide from '../welcome-guide';\nimport ActionsPanel from './actions-panel';\nimport StartPageOptions from '../start-page-options';\nimport { store as editPostStore } from '../../store';\nimport { unlock } from '../../lock-unlock';\nimport useCommonCommands from '../../hooks/commands/use-common-commands';\n\nconst { getLayoutStyles } = unlock( blockEditorPrivateApis );\nconst { useCommands } = unlock( coreCommandsPrivateApis );\nconst { useCommandContext } = unlock( commandsPrivateApis );\nconst { InserterSidebar, ListViewSidebar } = unlock( editorPrivateApis );\n\nconst interfaceLabels = {\n\t/* translators: accessibility text for the editor top bar landmark region. */\n\theader: __( 'Editor top bar' ),\n\t/* translators: accessibility text for the editor content landmark region. */\n\tbody: __( 'Editor content' ),\n\t/* translators: accessibility text for the editor settings landmark region. */\n\tsidebar: __( 'Editor settings' ),\n\t/* translators: accessibility text for the editor publish landmark region. */\n\tactions: __( 'Editor publish' ),\n\t/* translators: accessibility text for the editor footer landmark region. */\n\tfooter: __( 'Editor footer' ),\n};\n\nfunction useEditorStyles() {\n\tconst { hasThemeStyleSupport, editorSettings } = useSelect(\n\t\t( select ) => ( {\n\t\t\thasThemeStyleSupport:\n\t\t\t\tselect( editPostStore ).isFeatureActive( 'themeStyles' ),\n\t\t\teditorSettings: select( editorStore ).getEditorSettings(),\n\t\t} ),\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\treturn hasThemeStyles ? editorSettings.styles : defaultEditorStyles;\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\tuseCommonCommands();\n\tuseBlockCommands();\n\n\tconst isMobileViewport = useViewportMatch( 'medium', '<' );\n\tconst isHugeViewport = useViewportMatch( 'huge', '>=' );\n\tconst isWideViewport = useViewportMatch( 'large' );\n\tconst isLargeViewport = useViewportMatch( 'medium' );\n\n\tconst { openGeneralSidebar, closeGeneralSidebar } =\n\t\tuseDispatch( editPostStore );\n\tconst { createErrorNotice } = useDispatch( noticesStore );\n\tconst { setIsInserterOpened } = useDispatch( editorStore );\n\tconst {\n\t\tmode,\n\t\tisFullscreenActive,\n\t\tisRichEditingEnabled,\n\t\tsidebarIsOpened,\n\t\thasActiveMetaboxes,\n\t\tpreviousShortcut,\n\t\tnextShortcut,\n\t\thasBlockSelected,\n\t\tisInserterOpened,\n\t\tisListViewOpened,\n\t\tshowIconLabels,\n\t\tisDistractionFree,\n\t\tshowBlockBreadcrumbs,\n\t\tshowMetaBoxes,\n\t\tdocumentLabel,\n\t\thasHistory,\n\t} = useSelect( ( select ) => {\n\t\tconst { get } = select( preferencesStore );\n\t\tconst { getEditorSettings, getPostTypeLabel } = select( editorStore );\n\t\tconst editorSettings = getEditorSettings();\n\t\tconst postTypeLabel = getPostTypeLabel();\n\n\t\treturn {\n\t\t\tshowMetaBoxes:\n\t\t\t\tselect( editorStore ).getRenderingMode() === 'post-only',\n\t\t\tsidebarIsOpened: !! (\n\t\t\t\tselect( interfaceStore ).getActiveComplementaryArea(\n\t\t\t\t\teditPostStore.name\n\t\t\t\t) || select( editPostStore ).isPublishSidebarOpened()\n\t\t\t),\n\t\t\tisFullscreenActive:\n\t\t\t\tselect( editPostStore ).isFeatureActive( 'fullscreenMode' ),\n\t\t\tisInserterOpened: select( editorStore ).isInserterOpened(),\n\t\t\tisListViewOpened: select( editorStore ).isListViewOpened(),\n\t\t\tmode: select( editPostStore ).getEditorMode(),\n\t\t\tisRichEditingEnabled: editorSettings.richEditingEnabled,\n\t\t\thasActiveMetaboxes: select( editPostStore ).hasMetaBoxes(),\n\t\t\tpreviousShortcut: select(\n\t\t\t\tkeyboardShortcutsStore\n\t\t\t).getAllShortcutKeyCombinations( 'core/edit-post/previous-region' ),\n\t\t\tnextShortcut: select(\n\t\t\t\tkeyboardShortcutsStore\n\t\t\t).getAllShortcutKeyCombinations( 'core/edit-post/next-region' ),\n\t\t\tshowIconLabels: get( 'core', 'showIconLabels' ),\n\t\t\tisDistractionFree: get( 'core', 'distractionFree' ),\n\t\t\tshowBlockBreadcrumbs: get( 'core', 'showBlockBreadcrumbs' ),\n\t\t\t// translators: Default label for the Document in the Block Breadcrumb.\n\t\t\tdocumentLabel: postTypeLabel || _x( 'Document', 'noun' ),\n\t\t\thasBlockSelected:\n\t\t\t\t!! select( blockEditorStore ).getBlockSelectionStart(),\n\t\t\thasHistory: !! getEditorSettings().onNavigateToPreviousEntityRecord,\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: 'post-editor-edit';\n\tuseCommandContext( commandContext );\n\n\tconst styles = useEditorStyles();\n\n\tconst openSidebarPanel = () =>\n\t\topenGeneralSidebar(\n\t\t\thasBlockSelected ? 'edit-post/block' : 'edit-post/document'\n\t\t);\n\n\t// Inserter and Sidebars are mutually exclusive\n\tuseEffect( () => {\n\t\tif ( sidebarIsOpened && ! isHugeViewport ) {\n\t\t\tsetIsInserterOpened( false );\n\t\t}\n\t}, [ isHugeViewport, setIsInserterOpened, sidebarIsOpened ] );\n\tuseEffect( () => {\n\t\tif ( isInserterOpened && ! isHugeViewport ) {\n\t\t\tcloseGeneralSidebar();\n\t\t}\n\t}, [ closeGeneralSidebar, isInserterOpened, isHugeViewport ] );\n\n\t// Local state for save panel.\n\t// Note 'truthy' callback implies an open panel.\n\tconst [ entitiesSavedStatesCallback, setEntitiesSavedStatesCallback ] =\n\t\tuseState( false );\n\n\tconst closeEntitiesSavedStates = useCallback(\n\t\t( arg ) => {\n\t\t\tif ( typeof entitiesSavedStatesCallback === 'function' ) {\n\t\t\t\tentitiesSavedStatesCallback( arg );\n\t\t\t}\n\t\t\tsetEntitiesSavedStatesCallback( false );\n\t\t},\n\t\t[ entitiesSavedStatesCallback ]\n\t);\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 = classnames( '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'is-entity-save-view-open': !! entitiesSavedStatesCallback,\n\t} );\n\n\tconst secondarySidebarLabel = isListViewOpened\n\t\t? __( 'Document Overview' )\n\t\t: __( 'Block Library' );\n\n\tconst secondarySidebar = () => {\n\t\tif ( mode === 'visual' && isInserterOpened ) {\n\t\t\treturn <InserterSidebar />;\n\t\t}\n\t\tif ( mode === 'visual' && isListViewOpened ) {\n\t\t\treturn <ListViewSidebar />;\n\t\t}\n\n\t\treturn null;\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\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<EditorKeyboardShortcuts />\n\n\t\t\t<InterfaceSkeleton\n\t\t\t\tisDistractionFree={ isDistractionFree && isWideViewport }\n\t\t\t\tclassName={ className }\n\t\t\t\tlabels={ {\n\t\t\t\t\t...interfaceLabels,\n\t\t\t\t\tsecondarySidebar: secondarySidebarLabel,\n\t\t\t\t} }\n\t\t\t\theader={\n\t\t\t\t\t<Header\n\t\t\t\t\t\tsetEntitiesSavedStatesCallback={\n\t\t\t\t\t\t\tsetEntitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t\tinitialPost={ initialPost }\n\t\t\t\t\t/>\n\t\t\t\t}\n\t\t\t\teditorNotices={ <EditorNotices /> }\n\t\t\t\tsecondarySidebar={ secondarySidebar() }\n\t\t\t\tsidebar={\n\t\t\t\t\t( ! isMobileViewport || sidebarIsOpened ) && (\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t{ ! isMobileViewport && ! sidebarIsOpened && (\n\t\t\t\t\t\t\t\t<div className=\"edit-post-layout__toggle-sidebar-panel\">\n\t\t\t\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\t\t\t\tvariant=\"secondary\"\n\t\t\t\t\t\t\t\t\t\tclassName=\"edit-post-layout__toggle-sidebar-panel-button\"\n\t\t\t\t\t\t\t\t\t\tonClick={ openSidebarPanel }\n\t\t\t\t\t\t\t\t\t\taria-expanded={ false }\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t{ hasBlockSelected\n\t\t\t\t\t\t\t\t\t\t\t? __( 'Open block settings' )\n\t\t\t\t\t\t\t\t\t\t\t: __( 'Open document settings' ) }\n\t\t\t\t\t\t\t\t\t</Button>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t\t<ComplementaryArea.Slot scope=\"core/edit-post\" />\n\t\t\t\t\t\t</>\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t\tnotices={ <EditorSnackbars /> }\n\t\t\t\tcontent={\n\t\t\t\t\t<>\n\t\t\t\t\t\t{ ! isDistractionFree && <EditorNotices /> }\n\t\t\t\t\t\t{ ( mode === 'text' || ! isRichEditingEnabled ) && (\n\t\t\t\t\t\t\t<TextEditor />\n\t\t\t\t\t\t) }\n\t\t\t\t\t\t{ ! isLargeViewport && <BlockToolbar hideDragHandle /> }\n\t\t\t\t\t\t{ isRichEditingEnabled && mode === 'visual' && (\n\t\t\t\t\t\t\t<VisualEditor styles={ styles } />\n\t\t\t\t\t\t) }\n\t\t\t\t\t\t{ ! isDistractionFree && showMetaBoxes && (\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\t{ isMobileViewport && sidebarIsOpened && (\n\t\t\t\t\t\t\t<ScrollLock />\n\t\t\t\t\t\t) }\n\t\t\t\t\t</>\n\t\t\t\t}\n\t\t\t\tfooter={\n\t\t\t\t\t! isDistractionFree &&\n\t\t\t\t\t! isMobileViewport &&\n\t\t\t\t\tshowBlockBreadcrumbs &&\n\t\t\t\t\tisRichEditingEnabled &&\n\t\t\t\t\tmode === 'visual' && (\n\t\t\t\t\t\t<div className=\"edit-post-layout__footer\">\n\t\t\t\t\t\t\t<BlockBreadcrumb rootLabelText={ documentLabel } />\n\t\t\t\t\t\t</div>\n\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t\tactions={\n\t\t\t\t\t<ActionsPanel\n\t\t\t\t\t\tcloseEntitiesSavedStates={ closeEntitiesSavedStates }\n\t\t\t\t\t\tisEntitiesSavedStatesOpen={\n\t\t\t\t\t\t\tentitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsetEntitiesSavedStatesCallback={\n\t\t\t\t\t\t\tsetEntitiesSavedStatesCallback\n\t\t\t\t\t\t}\n\t\t\t\t\t/>\n\t\t\t\t}\n\t\t\t\tshortcuts={ {\n\t\t\t\t\tprevious: previousShortcut,\n\t\t\t\t\tnext: nextShortcut,\n\t\t\t\t} }\n\t\t\t/>\n\t\t\t<EditPostPreferencesModal />\n\t\t\t<KeyboardShortcutHelpModal />\n\t\t\t<WelcomeGuide />\n\t\t\t<InitPatternModal />\n\t\t\t<StartPageOptions />\n\t\t\t<PluginArea onError={ onPluginAreaError } />\n\t\t\t{ ! isDistractionFree && <SettingsSidebar /> }\n\t\t</>\n\t);\n}\n\nexport default Layout;\n"],"mappings":"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"}
|
package/build-style/classic.css
CHANGED
package/build-style/style.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/edit-post",
|
|
3
|
-
"version": "7.28.
|
|
3
|
+
"version": "7.28.6",
|
|
4
4
|
"description": "Edit Post module for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -29,34 +29,34 @@
|
|
|
29
29
|
"@babel/runtime": "^7.16.0",
|
|
30
30
|
"@wordpress/a11y": "^3.51.1",
|
|
31
31
|
"@wordpress/api-fetch": "^6.48.1",
|
|
32
|
-
"@wordpress/block-editor": "^12.19.
|
|
33
|
-
"@wordpress/block-library": "^8.28.
|
|
34
|
-
"@wordpress/blocks": "^12.28.
|
|
35
|
-
"@wordpress/commands": "^0.22.
|
|
36
|
-
"@wordpress/components": "^26.0.
|
|
32
|
+
"@wordpress/block-editor": "^12.19.6",
|
|
33
|
+
"@wordpress/block-library": "^8.28.6",
|
|
34
|
+
"@wordpress/blocks": "^12.28.6",
|
|
35
|
+
"@wordpress/commands": "^0.22.5",
|
|
36
|
+
"@wordpress/components": "^26.0.5",
|
|
37
37
|
"@wordpress/compose": "^6.28.1",
|
|
38
|
-
"@wordpress/core-commands": "^0.20.
|
|
39
|
-
"@wordpress/core-data": "^6.28.
|
|
38
|
+
"@wordpress/core-commands": "^0.20.6",
|
|
39
|
+
"@wordpress/core-data": "^6.28.6",
|
|
40
40
|
"@wordpress/data": "^9.21.1",
|
|
41
41
|
"@wordpress/deprecated": "^3.51.1",
|
|
42
42
|
"@wordpress/dom": "^3.51.1",
|
|
43
|
-
"@wordpress/editor": "^13.28.
|
|
43
|
+
"@wordpress/editor": "^13.28.6",
|
|
44
44
|
"@wordpress/element": "^5.28.1",
|
|
45
45
|
"@wordpress/hooks": "^3.51.1",
|
|
46
46
|
"@wordpress/i18n": "^4.51.1",
|
|
47
|
-
"@wordpress/icons": "^9.42.
|
|
48
|
-
"@wordpress/interface": "^5.28.
|
|
47
|
+
"@wordpress/icons": "^9.42.4",
|
|
48
|
+
"@wordpress/interface": "^5.28.5",
|
|
49
49
|
"@wordpress/keyboard-shortcuts": "^4.28.1",
|
|
50
50
|
"@wordpress/keycodes": "^3.51.1",
|
|
51
|
-
"@wordpress/media-utils": "^4.42.
|
|
51
|
+
"@wordpress/media-utils": "^4.42.2",
|
|
52
52
|
"@wordpress/notices": "^4.19.1",
|
|
53
|
-
"@wordpress/plugins": "^6.19.
|
|
54
|
-
"@wordpress/preferences": "^3.28.
|
|
53
|
+
"@wordpress/plugins": "^6.19.5",
|
|
54
|
+
"@wordpress/preferences": "^3.28.5",
|
|
55
55
|
"@wordpress/private-apis": "^0.33.1",
|
|
56
56
|
"@wordpress/url": "^3.52.1",
|
|
57
57
|
"@wordpress/viewport": "^5.28.1",
|
|
58
58
|
"@wordpress/warning": "^2.51.1",
|
|
59
|
-
"@wordpress/widgets": "^3.28.
|
|
59
|
+
"@wordpress/widgets": "^3.28.6",
|
|
60
60
|
"classnames": "^2.3.1",
|
|
61
61
|
"memize": "^2.1.0",
|
|
62
62
|
"rememo": "^4.0.2"
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"publishConfig": {
|
|
69
69
|
"access": "public"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "7d2a00f1998a0a696694802725e523628f994cfc"
|
|
72
72
|
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WordPress dependencies
|
|
3
|
+
*/
|
|
4
|
+
import { useSelect, useDispatch } from '@wordpress/data';
|
|
5
|
+
import { __, _x } from '@wordpress/i18n';
|
|
6
|
+
import {
|
|
7
|
+
Modal,
|
|
8
|
+
Button,
|
|
9
|
+
__experimentalHStack as HStack,
|
|
10
|
+
__experimentalVStack as VStack,
|
|
11
|
+
ToggleControl,
|
|
12
|
+
TextControl,
|
|
13
|
+
} from '@wordpress/components';
|
|
14
|
+
import { useEffect, useState } from '@wordpress/element';
|
|
15
|
+
import { store as editorStore } from '@wordpress/editor';
|
|
16
|
+
import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Internal dependencies
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
import { unlock } from '../../lock-unlock';
|
|
23
|
+
|
|
24
|
+
const { ReusableBlocksRenameHint } = unlock( blockEditorPrivateApis );
|
|
25
|
+
|
|
26
|
+
export default function InitPatternModal() {
|
|
27
|
+
const { editPost } = useDispatch( editorStore );
|
|
28
|
+
const [ isModalOpen, setIsModalOpen ] = useState( false );
|
|
29
|
+
const [ syncType, setSyncType ] = useState( undefined );
|
|
30
|
+
const [ title, setTitle ] = useState( '' );
|
|
31
|
+
|
|
32
|
+
const { postType, isNewPost } = useSelect( ( select ) => {
|
|
33
|
+
const { getEditedPostAttribute, isCleanNewPost } =
|
|
34
|
+
select( editorStore );
|
|
35
|
+
return {
|
|
36
|
+
postType: getEditedPostAttribute( 'type' ),
|
|
37
|
+
isNewPost: isCleanNewPost(),
|
|
38
|
+
};
|
|
39
|
+
}, [] );
|
|
40
|
+
|
|
41
|
+
useEffect( () => {
|
|
42
|
+
if ( isNewPost && postType === 'wp_block' ) {
|
|
43
|
+
setIsModalOpen( true );
|
|
44
|
+
}
|
|
45
|
+
// We only want the modal to open when the page is first loaded.
|
|
46
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
47
|
+
}, [] );
|
|
48
|
+
|
|
49
|
+
if ( postType !== 'wp_block' || ! isNewPost ) {
|
|
50
|
+
return null;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
return (
|
|
54
|
+
<>
|
|
55
|
+
{ isModalOpen && (
|
|
56
|
+
<Modal
|
|
57
|
+
title={ __( 'Create pattern' ) }
|
|
58
|
+
onRequestClose={ () => {
|
|
59
|
+
setIsModalOpen( false );
|
|
60
|
+
} }
|
|
61
|
+
overlayClassName="reusable-blocks-menu-items__convert-modal"
|
|
62
|
+
>
|
|
63
|
+
<form
|
|
64
|
+
onSubmit={ ( event ) => {
|
|
65
|
+
event.preventDefault();
|
|
66
|
+
setIsModalOpen( false );
|
|
67
|
+
editPost( {
|
|
68
|
+
title,
|
|
69
|
+
meta: {
|
|
70
|
+
wp_pattern_sync_status: syncType,
|
|
71
|
+
},
|
|
72
|
+
} );
|
|
73
|
+
} }
|
|
74
|
+
>
|
|
75
|
+
<VStack spacing="5">
|
|
76
|
+
<TextControl
|
|
77
|
+
label={ __( 'Name' ) }
|
|
78
|
+
value={ title }
|
|
79
|
+
onChange={ setTitle }
|
|
80
|
+
placeholder={ __( 'My pattern' ) }
|
|
81
|
+
className="patterns-create-modal__name-input"
|
|
82
|
+
__nextHasNoMarginBottom
|
|
83
|
+
__next40pxDefaultSize
|
|
84
|
+
/>
|
|
85
|
+
<ReusableBlocksRenameHint />
|
|
86
|
+
<ToggleControl
|
|
87
|
+
label={ _x(
|
|
88
|
+
'Synced',
|
|
89
|
+
'Option that makes an individual pattern synchronized'
|
|
90
|
+
) }
|
|
91
|
+
help={ __(
|
|
92
|
+
'Sync this pattern across multiple locations.'
|
|
93
|
+
) }
|
|
94
|
+
checked={ ! syncType }
|
|
95
|
+
onChange={ () => {
|
|
96
|
+
setSyncType(
|
|
97
|
+
! syncType ? 'unsynced' : undefined
|
|
98
|
+
);
|
|
99
|
+
} }
|
|
100
|
+
/>
|
|
101
|
+
<HStack justify="right">
|
|
102
|
+
<Button
|
|
103
|
+
variant="primary"
|
|
104
|
+
type="submit"
|
|
105
|
+
disabled={ ! title }
|
|
106
|
+
__experimentalIsFocusable
|
|
107
|
+
>
|
|
108
|
+
{ __( 'Create' ) }
|
|
109
|
+
</Button>
|
|
110
|
+
</HStack>
|
|
111
|
+
</VStack>
|
|
112
|
+
</form>
|
|
113
|
+
</Modal>
|
|
114
|
+
) }
|
|
115
|
+
</>
|
|
116
|
+
);
|
|
117
|
+
}
|
|
@@ -14,7 +14,6 @@ import {
|
|
|
14
14
|
EditorKeyboardShortcutsRegister,
|
|
15
15
|
EditorKeyboardShortcuts,
|
|
16
16
|
EditorSnackbars,
|
|
17
|
-
PostSyncStatusModal,
|
|
18
17
|
store as editorStore,
|
|
19
18
|
privateApis as editorPrivateApis,
|
|
20
19
|
} from '@wordpress/editor';
|
|
@@ -51,6 +50,7 @@ import VisualEditor from '../visual-editor';
|
|
|
51
50
|
import EditPostKeyboardShortcuts from '../keyboard-shortcuts';
|
|
52
51
|
import KeyboardShortcutHelpModal from '../keyboard-shortcut-help-modal';
|
|
53
52
|
import EditPostPreferencesModal from '../preferences-modal';
|
|
53
|
+
import InitPatternModal from '../init-pattern-modal';
|
|
54
54
|
import BrowserURL from '../browser-url';
|
|
55
55
|
import Header from '../header';
|
|
56
56
|
import SettingsSidebar from '../sidebar/settings-sidebar';
|
|
@@ -382,7 +382,7 @@ function Layout( { initialPost } ) {
|
|
|
382
382
|
<EditPostPreferencesModal />
|
|
383
383
|
<KeyboardShortcutHelpModal />
|
|
384
384
|
<WelcomeGuide />
|
|
385
|
-
<
|
|
385
|
+
<InitPatternModal />
|
|
386
386
|
<StartPageOptions />
|
|
387
387
|
<PluginArea onError={ onPluginAreaError } />
|
|
388
388
|
{ ! isDistractionFree && <SettingsSidebar /> }
|