@wordpress/editor 14.28.0 → 14.28.1-next.0f6f9d12c.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/components/document-bar/index.js +1 -1
- package/build/components/document-bar/index.js.map +1 -1
- package/build/hooks/index.js +1 -0
- package/build/hooks/index.js.map +1 -1
- package/build/hooks/navigation-link-view-button.js +76 -0
- package/build/hooks/navigation-link-view-button.js.map +1 -0
- package/build-module/components/document-bar/index.js +1 -1
- package/build-module/components/document-bar/index.js.map +1 -1
- package/build-module/hooks/index.js +1 -0
- package/build-module/hooks/index.js.map +1 -1
- package/build-module/hooks/navigation-link-view-button.js +74 -0
- package/build-module/hooks/navigation-link-view-button.js.map +1 -0
- package/build-style/style-rtl.css +2 -1
- package/build-style/style.css +2 -1
- package/build-types/hooks/navigation-link-view-button.d.ts +2 -0
- package/build-types/hooks/navigation-link-view-button.d.ts.map +1 -0
- package/package.json +37 -37
- package/src/components/document-bar/index.js +1 -1
- package/src/components/post-url/style.scss +2 -1
- package/src/hooks/index.js +1 -0
- package/src/hooks/navigation-link-view-button.js +100 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -145,7 +145,7 @@ function DocumentBar(props) {
|
|
|
145
145
|
} : undefined,
|
|
146
146
|
children: (0, _i18n.__)('Back')
|
|
147
147
|
})
|
|
148
|
-
}), !isTemplate && isTemplatePreview && /*#__PURE__*/(0, _jsxRuntime.jsx)(_blockEditor.BlockIcon, {
|
|
148
|
+
}), !isTemplate && isTemplatePreview && !hasBackButton && /*#__PURE__*/(0, _jsxRuntime.jsx)(_blockEditor.BlockIcon, {
|
|
149
149
|
icon: _icons.layout,
|
|
150
150
|
className: "editor-document-bar__icon-layout"
|
|
151
151
|
}), isNotFound ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.__experimentalText, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_clsx","_interopRequireDefault","require","_i18n","_data","_components","_blockEditor","_icons","_keycodes","_coreData","_commands","_element","_compose","_htmlEntities","_dom","_constants","_store","_pageTypeBadge","_getTemplateInfo","_jsxRuntime","MotionButton","motion","Button","DocumentBar","props","postId","postType","postTypeLabel","documentTitle","isNotFound","templateTitle","onNavigateToPreviousEntityRecord","isTemplatePreview","useSelect","select","_getCurrentTheme","getCurrentPostType","getCurrentPostId","getEditorSettings","getRenderingMode","editorStore","getEditedEntityRecord","getPostType","getCurrentTheme","isResolving","isResolvingSelector","coreStore","_postType","_postId","_document","default_template_types","templateTypes","_templateInfo","getTemplateInfo","template","_postTypeLabel","labels","singular_name","title","open","openCommandCenter","useDispatch","commandsStore","isReducedMotion","useReducedMotion","isTemplate","TEMPLATE_POST_TYPES","includes","hasBackButton","entityTitle","icon","pageTypeBadge","usePageTypeBadge","mountedRef","useRef","useEffect","current","jsxs","className","clsx","children","jsx","__unstableAnimatePresence","isRTL","chevronRightSmall","chevronLeftSmall","onClick","event","stopPropagation","size","initial","opacity","transform","animate","exit","transition","duration","undefined","__","BlockIcon","layout","__experimentalText","__unstableMotion","div","as","stripHTML","decodeEntities","displayShortcut","primary"],"sources":["@wordpress/editor/src/components/document-bar/index.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport clsx from 'clsx';\n\n/**\n * WordPress dependencies\n */\nimport { __, isRTL } from '@wordpress/i18n';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport {\n\tButton,\n\t__experimentalText as Text,\n\t__unstableMotion as motion,\n\t__unstableAnimatePresence as AnimatePresence,\n} from '@wordpress/components';\nimport { BlockIcon } from '@wordpress/block-editor';\nimport { chevronLeftSmall, chevronRightSmall, layout } from '@wordpress/icons';\nimport { displayShortcut } from '@wordpress/keycodes';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { store as commandsStore } from '@wordpress/commands';\nimport { useRef, useEffect } from '@wordpress/element';\nimport { useReducedMotion } from '@wordpress/compose';\nimport { decodeEntities } from '@wordpress/html-entities';\nimport { __unstableStripHTML as stripHTML } from '@wordpress/dom';\n\n/**\n * Internal dependencies\n */\nimport { TEMPLATE_POST_TYPES } from '../../store/constants';\nimport { store as editorStore } from '../../store';\nimport usePageTypeBadge from '../../utils/pageTypeBadge';\nimport { getTemplateInfo } from '../../utils/get-template-info';\n\n/** @typedef {import(\"@wordpress/components\").IconType} IconType */\n\nconst MotionButton = motion( Button );\n\n/**\n * This component renders a navigation bar at the top of the editor. It displays the title of the current document,\n * a back button (if applicable), and a command center button. It also handles different states of the document,\n * such as \"not found\" or \"unsynced\".\n *\n * @example\n * ```jsx\n * <DocumentBar />\n * ```\n * @param {Object} props The component props.\n * @param {string} props.title A title for the document, defaulting to the document or\n * template title currently being edited.\n * @param {IconType} props.icon An icon for the document, no default.\n * (A default icon indicating the document post type is no longer used.)\n *\n * @return {React.ReactNode} The rendered DocumentBar component.\n */\nexport default function DocumentBar( props ) {\n\tconst {\n\t\tpostId,\n\t\tpostType,\n\t\tpostTypeLabel,\n\t\tdocumentTitle,\n\t\tisNotFound,\n\t\ttemplateTitle,\n\t\tonNavigateToPreviousEntityRecord,\n\t\tisTemplatePreview,\n\t} = useSelect( ( select ) => {\n\t\tconst {\n\t\t\tgetCurrentPostType,\n\t\t\tgetCurrentPostId,\n\t\t\tgetEditorSettings,\n\t\t\tgetRenderingMode,\n\t\t} = select( editorStore );\n\n\t\tconst {\n\t\t\tgetEditedEntityRecord,\n\t\t\tgetPostType,\n\t\t\tgetCurrentTheme,\n\t\t\tisResolving: isResolvingSelector,\n\t\t} = select( coreStore );\n\t\tconst _postType = getCurrentPostType();\n\t\tconst _postId = getCurrentPostId();\n\t\tconst _document = getEditedEntityRecord(\n\t\t\t'postType',\n\t\t\t_postType,\n\t\t\t_postId\n\t\t);\n\n\t\tconst { default_template_types: templateTypes = [] } =\n\t\t\tgetCurrentTheme() ?? {};\n\n\t\tconst _templateInfo = getTemplateInfo( {\n\t\t\ttemplateTypes,\n\t\t\ttemplate: _document,\n\t\t} );\n\t\tconst _postTypeLabel = getPostType( _postType )?.labels?.singular_name;\n\n\t\treturn {\n\t\t\tpostId: _postId,\n\t\t\tpostType: _postType,\n\t\t\tpostTypeLabel: _postTypeLabel,\n\t\t\tdocumentTitle: _document.title,\n\t\t\tisNotFound:\n\t\t\t\t! _document &&\n\t\t\t\t! isResolvingSelector(\n\t\t\t\t\t'getEditedEntityRecord',\n\t\t\t\t\t'postType',\n\t\t\t\t\t_postType,\n\t\t\t\t\t_postId\n\t\t\t\t),\n\t\t\ttemplateTitle: _templateInfo.title,\n\t\t\tonNavigateToPreviousEntityRecord:\n\t\t\t\tgetEditorSettings().onNavigateToPreviousEntityRecord,\n\t\t\tisTemplatePreview: getRenderingMode() === 'template-locked',\n\t\t};\n\t}, [] );\n\n\tconst { open: openCommandCenter } = useDispatch( commandsStore );\n\tconst isReducedMotion = useReducedMotion();\n\n\tconst isTemplate = TEMPLATE_POST_TYPES.includes( postType );\n\tconst hasBackButton = !! onNavigateToPreviousEntityRecord;\n\tconst entityTitle = isTemplate ? templateTitle : documentTitle;\n\tconst title = props.title || entityTitle;\n\tconst icon = props.icon;\n\n\tconst pageTypeBadge = usePageTypeBadge( postId );\n\n\tconst mountedRef = useRef( false );\n\tuseEffect( () => {\n\t\tmountedRef.current = true;\n\t}, [] );\n\n\treturn (\n\t\t<div\n\t\t\tclassName={ clsx( 'editor-document-bar', {\n\t\t\t\t'has-back-button': hasBackButton,\n\t\t\t} ) }\n\t\t>\n\t\t\t<AnimatePresence>\n\t\t\t\t{ hasBackButton && (\n\t\t\t\t\t<MotionButton\n\t\t\t\t\t\tclassName=\"editor-document-bar__back\"\n\t\t\t\t\t\ticon={ isRTL() ? chevronRightSmall : chevronLeftSmall }\n\t\t\t\t\t\tonClick={ ( event ) => {\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\tonNavigateToPreviousEntityRecord();\n\t\t\t\t\t\t} }\n\t\t\t\t\t\tsize=\"compact\"\n\t\t\t\t\t\tinitial={\n\t\t\t\t\t\t\tmountedRef.current\n\t\t\t\t\t\t\t\t? { opacity: 0, transform: 'translateX(15%)' }\n\t\t\t\t\t\t\t\t: false // Don't show entry animation when DocumentBar mounts.\n\t\t\t\t\t\t}\n\t\t\t\t\t\tanimate={ { opacity: 1, transform: 'translateX(0%)' } }\n\t\t\t\t\t\texit={ { opacity: 0, transform: 'translateX(15%)' } }\n\t\t\t\t\t\ttransition={\n\t\t\t\t\t\t\tisReducedMotion ? { duration: 0 } : undefined\n\t\t\t\t\t\t}\n\t\t\t\t\t>\n\t\t\t\t\t\t{ __( 'Back' ) }\n\t\t\t\t\t</MotionButton>\n\t\t\t\t) }\n\t\t\t</AnimatePresence>\n\t\t\t{ ! isTemplate && isTemplatePreview && (\n\t\t\t\t<BlockIcon\n\t\t\t\t\ticon={ layout }\n\t\t\t\t\tclassName=\"editor-document-bar__icon-layout\"\n\t\t\t\t/>\n\t\t\t) }\n\t\t\t{ isNotFound ? (\n\t\t\t\t<Text>{ __( 'Document not found' ) }</Text>\n\t\t\t) : (\n\t\t\t\t<Button\n\t\t\t\t\tclassName=\"editor-document-bar__command\"\n\t\t\t\t\tonClick={ () => openCommandCenter() }\n\t\t\t\t\tsize=\"compact\"\n\t\t\t\t>\n\t\t\t\t\t<motion.div\n\t\t\t\t\t\tclassName=\"editor-document-bar__title\"\n\t\t\t\t\t\t// Force entry animation when the back button is added or removed.\n\t\t\t\t\t\tkey={ hasBackButton }\n\t\t\t\t\t\tinitial={\n\t\t\t\t\t\t\tmountedRef.current\n\t\t\t\t\t\t\t\t? {\n\t\t\t\t\t\t\t\t\t\topacity: 0,\n\t\t\t\t\t\t\t\t\t\ttransform: hasBackButton\n\t\t\t\t\t\t\t\t\t\t\t? 'translateX(15%)'\n\t\t\t\t\t\t\t\t\t\t\t: 'translateX(-15%)',\n\t\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t\t: false // Don't show entry animation when DocumentBar mounts.\n\t\t\t\t\t\t}\n\t\t\t\t\t\tanimate={ {\n\t\t\t\t\t\t\topacity: 1,\n\t\t\t\t\t\t\ttransform: 'translateX(0%)',\n\t\t\t\t\t\t} }\n\t\t\t\t\t\ttransition={\n\t\t\t\t\t\t\tisReducedMotion ? { duration: 0 } : undefined\n\t\t\t\t\t\t}\n\t\t\t\t\t>\n\t\t\t\t\t\t{ icon && <BlockIcon icon={ icon } /> }\n\t\t\t\t\t\t<Text size=\"body\" as=\"h1\">\n\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-title\">\n\t\t\t\t\t\t\t\t{ title\n\t\t\t\t\t\t\t\t\t? stripHTML( title )\n\t\t\t\t\t\t\t\t\t: __( 'No title' ) }\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t{ pageTypeBadge && (\n\t\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-type-label\">\n\t\t\t\t\t\t\t\t\t{ `· ${ pageTypeBadge }` }\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t\t{ postTypeLabel &&\n\t\t\t\t\t\t\t\t! props.title &&\n\t\t\t\t\t\t\t\t! pageTypeBadge && (\n\t\t\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-type-label\">\n\t\t\t\t\t\t\t\t\t\t{ `· ${ decodeEntities(\n\t\t\t\t\t\t\t\t\t\t\tpostTypeLabel\n\t\t\t\t\t\t\t\t\t\t) }` }\n\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t</Text>\n\t\t\t\t\t</motion.div>\n\t\t\t\t\t<span className=\"editor-document-bar__shortcut\">\n\t\t\t\t\t\t{ displayShortcut.primary( 'k' ) }\n\t\t\t\t\t</span>\n\t\t\t\t</Button>\n\t\t\t) }\n\t\t</div>\n\t);\n}\n"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["_clsx","_interopRequireDefault","require","_i18n","_data","_components","_blockEditor","_icons","_keycodes","_coreData","_commands","_element","_compose","_htmlEntities","_dom","_constants","_store","_pageTypeBadge","_getTemplateInfo","_jsxRuntime","MotionButton","motion","Button","DocumentBar","props","postId","postType","postTypeLabel","documentTitle","isNotFound","templateTitle","onNavigateToPreviousEntityRecord","isTemplatePreview","useSelect","select","_getCurrentTheme","getCurrentPostType","getCurrentPostId","getEditorSettings","getRenderingMode","editorStore","getEditedEntityRecord","getPostType","getCurrentTheme","isResolving","isResolvingSelector","coreStore","_postType","_postId","_document","default_template_types","templateTypes","_templateInfo","getTemplateInfo","template","_postTypeLabel","labels","singular_name","title","open","openCommandCenter","useDispatch","commandsStore","isReducedMotion","useReducedMotion","isTemplate","TEMPLATE_POST_TYPES","includes","hasBackButton","entityTitle","icon","pageTypeBadge","usePageTypeBadge","mountedRef","useRef","useEffect","current","jsxs","className","clsx","children","jsx","__unstableAnimatePresence","isRTL","chevronRightSmall","chevronLeftSmall","onClick","event","stopPropagation","size","initial","opacity","transform","animate","exit","transition","duration","undefined","__","BlockIcon","layout","__experimentalText","__unstableMotion","div","as","stripHTML","decodeEntities","displayShortcut","primary"],"sources":["@wordpress/editor/src/components/document-bar/index.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport clsx from 'clsx';\n\n/**\n * WordPress dependencies\n */\nimport { __, isRTL } from '@wordpress/i18n';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport {\n\tButton,\n\t__experimentalText as Text,\n\t__unstableMotion as motion,\n\t__unstableAnimatePresence as AnimatePresence,\n} from '@wordpress/components';\nimport { BlockIcon } from '@wordpress/block-editor';\nimport { chevronLeftSmall, chevronRightSmall, layout } from '@wordpress/icons';\nimport { displayShortcut } from '@wordpress/keycodes';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { store as commandsStore } from '@wordpress/commands';\nimport { useRef, useEffect } from '@wordpress/element';\nimport { useReducedMotion } from '@wordpress/compose';\nimport { decodeEntities } from '@wordpress/html-entities';\nimport { __unstableStripHTML as stripHTML } from '@wordpress/dom';\n\n/**\n * Internal dependencies\n */\nimport { TEMPLATE_POST_TYPES } from '../../store/constants';\nimport { store as editorStore } from '../../store';\nimport usePageTypeBadge from '../../utils/pageTypeBadge';\nimport { getTemplateInfo } from '../../utils/get-template-info';\n\n/** @typedef {import(\"@wordpress/components\").IconType} IconType */\n\nconst MotionButton = motion( Button );\n\n/**\n * This component renders a navigation bar at the top of the editor. It displays the title of the current document,\n * a back button (if applicable), and a command center button. It also handles different states of the document,\n * such as \"not found\" or \"unsynced\".\n *\n * @example\n * ```jsx\n * <DocumentBar />\n * ```\n * @param {Object} props The component props.\n * @param {string} props.title A title for the document, defaulting to the document or\n * template title currently being edited.\n * @param {IconType} props.icon An icon for the document, no default.\n * (A default icon indicating the document post type is no longer used.)\n *\n * @return {React.ReactNode} The rendered DocumentBar component.\n */\nexport default function DocumentBar( props ) {\n\tconst {\n\t\tpostId,\n\t\tpostType,\n\t\tpostTypeLabel,\n\t\tdocumentTitle,\n\t\tisNotFound,\n\t\ttemplateTitle,\n\t\tonNavigateToPreviousEntityRecord,\n\t\tisTemplatePreview,\n\t} = useSelect( ( select ) => {\n\t\tconst {\n\t\t\tgetCurrentPostType,\n\t\t\tgetCurrentPostId,\n\t\t\tgetEditorSettings,\n\t\t\tgetRenderingMode,\n\t\t} = select( editorStore );\n\n\t\tconst {\n\t\t\tgetEditedEntityRecord,\n\t\t\tgetPostType,\n\t\t\tgetCurrentTheme,\n\t\t\tisResolving: isResolvingSelector,\n\t\t} = select( coreStore );\n\t\tconst _postType = getCurrentPostType();\n\t\tconst _postId = getCurrentPostId();\n\t\tconst _document = getEditedEntityRecord(\n\t\t\t'postType',\n\t\t\t_postType,\n\t\t\t_postId\n\t\t);\n\n\t\tconst { default_template_types: templateTypes = [] } =\n\t\t\tgetCurrentTheme() ?? {};\n\n\t\tconst _templateInfo = getTemplateInfo( {\n\t\t\ttemplateTypes,\n\t\t\ttemplate: _document,\n\t\t} );\n\t\tconst _postTypeLabel = getPostType( _postType )?.labels?.singular_name;\n\n\t\treturn {\n\t\t\tpostId: _postId,\n\t\t\tpostType: _postType,\n\t\t\tpostTypeLabel: _postTypeLabel,\n\t\t\tdocumentTitle: _document.title,\n\t\t\tisNotFound:\n\t\t\t\t! _document &&\n\t\t\t\t! isResolvingSelector(\n\t\t\t\t\t'getEditedEntityRecord',\n\t\t\t\t\t'postType',\n\t\t\t\t\t_postType,\n\t\t\t\t\t_postId\n\t\t\t\t),\n\t\t\ttemplateTitle: _templateInfo.title,\n\t\t\tonNavigateToPreviousEntityRecord:\n\t\t\t\tgetEditorSettings().onNavigateToPreviousEntityRecord,\n\t\t\tisTemplatePreview: getRenderingMode() === 'template-locked',\n\t\t};\n\t}, [] );\n\n\tconst { open: openCommandCenter } = useDispatch( commandsStore );\n\tconst isReducedMotion = useReducedMotion();\n\n\tconst isTemplate = TEMPLATE_POST_TYPES.includes( postType );\n\tconst hasBackButton = !! onNavigateToPreviousEntityRecord;\n\tconst entityTitle = isTemplate ? templateTitle : documentTitle;\n\tconst title = props.title || entityTitle;\n\tconst icon = props.icon;\n\n\tconst pageTypeBadge = usePageTypeBadge( postId );\n\n\tconst mountedRef = useRef( false );\n\tuseEffect( () => {\n\t\tmountedRef.current = true;\n\t}, [] );\n\n\treturn (\n\t\t<div\n\t\t\tclassName={ clsx( 'editor-document-bar', {\n\t\t\t\t'has-back-button': hasBackButton,\n\t\t\t} ) }\n\t\t>\n\t\t\t<AnimatePresence>\n\t\t\t\t{ hasBackButton && (\n\t\t\t\t\t<MotionButton\n\t\t\t\t\t\tclassName=\"editor-document-bar__back\"\n\t\t\t\t\t\ticon={ isRTL() ? chevronRightSmall : chevronLeftSmall }\n\t\t\t\t\t\tonClick={ ( event ) => {\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\tonNavigateToPreviousEntityRecord();\n\t\t\t\t\t\t} }\n\t\t\t\t\t\tsize=\"compact\"\n\t\t\t\t\t\tinitial={\n\t\t\t\t\t\t\tmountedRef.current\n\t\t\t\t\t\t\t\t? { opacity: 0, transform: 'translateX(15%)' }\n\t\t\t\t\t\t\t\t: false // Don't show entry animation when DocumentBar mounts.\n\t\t\t\t\t\t}\n\t\t\t\t\t\tanimate={ { opacity: 1, transform: 'translateX(0%)' } }\n\t\t\t\t\t\texit={ { opacity: 0, transform: 'translateX(15%)' } }\n\t\t\t\t\t\ttransition={\n\t\t\t\t\t\t\tisReducedMotion ? { duration: 0 } : undefined\n\t\t\t\t\t\t}\n\t\t\t\t\t>\n\t\t\t\t\t\t{ __( 'Back' ) }\n\t\t\t\t\t</MotionButton>\n\t\t\t\t) }\n\t\t\t</AnimatePresence>\n\t\t\t{ ! isTemplate && isTemplatePreview && ! hasBackButton && (\n\t\t\t\t<BlockIcon\n\t\t\t\t\ticon={ layout }\n\t\t\t\t\tclassName=\"editor-document-bar__icon-layout\"\n\t\t\t\t/>\n\t\t\t) }\n\t\t\t{ isNotFound ? (\n\t\t\t\t<Text>{ __( 'Document not found' ) }</Text>\n\t\t\t) : (\n\t\t\t\t<Button\n\t\t\t\t\tclassName=\"editor-document-bar__command\"\n\t\t\t\t\tonClick={ () => openCommandCenter() }\n\t\t\t\t\tsize=\"compact\"\n\t\t\t\t>\n\t\t\t\t\t<motion.div\n\t\t\t\t\t\tclassName=\"editor-document-bar__title\"\n\t\t\t\t\t\t// Force entry animation when the back button is added or removed.\n\t\t\t\t\t\tkey={ hasBackButton }\n\t\t\t\t\t\tinitial={\n\t\t\t\t\t\t\tmountedRef.current\n\t\t\t\t\t\t\t\t? {\n\t\t\t\t\t\t\t\t\t\topacity: 0,\n\t\t\t\t\t\t\t\t\t\ttransform: hasBackButton\n\t\t\t\t\t\t\t\t\t\t\t? 'translateX(15%)'\n\t\t\t\t\t\t\t\t\t\t\t: 'translateX(-15%)',\n\t\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t\t: false // Don't show entry animation when DocumentBar mounts.\n\t\t\t\t\t\t}\n\t\t\t\t\t\tanimate={ {\n\t\t\t\t\t\t\topacity: 1,\n\t\t\t\t\t\t\ttransform: 'translateX(0%)',\n\t\t\t\t\t\t} }\n\t\t\t\t\t\ttransition={\n\t\t\t\t\t\t\tisReducedMotion ? { duration: 0 } : undefined\n\t\t\t\t\t\t}\n\t\t\t\t\t>\n\t\t\t\t\t\t{ icon && <BlockIcon icon={ icon } /> }\n\t\t\t\t\t\t<Text size=\"body\" as=\"h1\">\n\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-title\">\n\t\t\t\t\t\t\t\t{ title\n\t\t\t\t\t\t\t\t\t? stripHTML( title )\n\t\t\t\t\t\t\t\t\t: __( 'No title' ) }\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t{ pageTypeBadge && (\n\t\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-type-label\">\n\t\t\t\t\t\t\t\t\t{ `· ${ pageTypeBadge }` }\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t\t{ postTypeLabel &&\n\t\t\t\t\t\t\t\t! props.title &&\n\t\t\t\t\t\t\t\t! pageTypeBadge && (\n\t\t\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-type-label\">\n\t\t\t\t\t\t\t\t\t\t{ `· ${ decodeEntities(\n\t\t\t\t\t\t\t\t\t\t\tpostTypeLabel\n\t\t\t\t\t\t\t\t\t\t) }` }\n\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t</Text>\n\t\t\t\t\t</motion.div>\n\t\t\t\t\t<span className=\"editor-document-bar__shortcut\">\n\t\t\t\t\t\t{ displayShortcut.primary( 'k' ) }\n\t\t\t\t\t</span>\n\t\t\t\t</Button>\n\t\t\t) }\n\t\t</div>\n\t);\n}\n"],"mappings":"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","ignoreList":[]}
|
package/build/hooks/index.js
CHANGED
package/build/hooks/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["require"],"sources":["@wordpress/editor/src/hooks/index.js"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport './custom-sources-backwards-compatibility';\nimport './default-autocompleters';\nimport './media-upload';\nimport './pattern-overrides';\n"],"mappings":";;AAGAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["require"],"sources":["@wordpress/editor/src/hooks/index.js"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport './custom-sources-backwards-compatibility';\nimport './default-autocompleters';\nimport './media-upload';\nimport './pattern-overrides';\nimport './navigation-link-view-button';\n"],"mappings":";;AAGAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA;AACAA,OAAA","ignoreList":[]}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _hooks = require("@wordpress/hooks");
|
|
4
|
+
var _compose = require("@wordpress/compose");
|
|
5
|
+
var _element = require("@wordpress/element");
|
|
6
|
+
var _i18n = require("@wordpress/i18n");
|
|
7
|
+
var _blockEditor = require("@wordpress/block-editor");
|
|
8
|
+
var _components = require("@wordpress/components");
|
|
9
|
+
var _data = require("@wordpress/data");
|
|
10
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
+
/**
|
|
12
|
+
* WordPress dependencies
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
// Target blocks that should have the View button.
|
|
16
|
+
const SUPPORTED_BLOCKS = ['core/navigation-link', 'core/navigation-submenu'];
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Component that renders the View button for navigation blocks.
|
|
20
|
+
*
|
|
21
|
+
* @param {Object} props Component props.
|
|
22
|
+
* @param {Object} props.attributes Block attributes.
|
|
23
|
+
* @return {JSX.Element|null} The View button component or null if not applicable.
|
|
24
|
+
*/
|
|
25
|
+
function NavigationViewButton({
|
|
26
|
+
attributes
|
|
27
|
+
}) {
|
|
28
|
+
const {
|
|
29
|
+
kind,
|
|
30
|
+
id,
|
|
31
|
+
type
|
|
32
|
+
} = attributes;
|
|
33
|
+
const blockEditingMode = (0, _blockEditor.useBlockEditingMode)();
|
|
34
|
+
const onNavigateToEntityRecord = (0, _data.useSelect)(select => select(_blockEditor.store).getSettings().onNavigateToEntityRecord, []);
|
|
35
|
+
const onViewPage = (0, _element.useCallback)(() => {
|
|
36
|
+
if (kind === 'post-type' && type === 'page' && id && onNavigateToEntityRecord) {
|
|
37
|
+
onNavigateToEntityRecord({
|
|
38
|
+
postId: id,
|
|
39
|
+
postType: type
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
}, [kind, id, type, onNavigateToEntityRecord]);
|
|
43
|
+
|
|
44
|
+
// Only show for page-type links, when navigation is available, and when in contentOnly mode.
|
|
45
|
+
if (kind !== 'post-type' || type !== 'page' || !id || !onNavigateToEntityRecord || blockEditingMode !== 'contentOnly') {
|
|
46
|
+
return null;
|
|
47
|
+
}
|
|
48
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_blockEditor.__unstableBlockToolbarLastItem, {
|
|
49
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.ToolbarGroup, {
|
|
50
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.ToolbarButton, {
|
|
51
|
+
name: "view",
|
|
52
|
+
title: (0, _i18n.__)('View'),
|
|
53
|
+
onClick: onViewPage,
|
|
54
|
+
children: (0, _i18n.__)('View')
|
|
55
|
+
})
|
|
56
|
+
})
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Higher-order component that adds the View button to navigation blocks.
|
|
62
|
+
*/
|
|
63
|
+
const withNavigationViewButton = (0, _compose.createHigherOrderComponent)(BlockEdit => props => {
|
|
64
|
+
const isSupportedBlock = SUPPORTED_BLOCKS.includes(props.name);
|
|
65
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
66
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(BlockEdit, {
|
|
67
|
+
...props
|
|
68
|
+
}, "edit"), props.isSelected && isSupportedBlock && /*#__PURE__*/(0, _jsxRuntime.jsx)(NavigationViewButton, {
|
|
69
|
+
...props
|
|
70
|
+
})]
|
|
71
|
+
});
|
|
72
|
+
}, 'withNavigationViewButton');
|
|
73
|
+
|
|
74
|
+
// Register the filter.
|
|
75
|
+
(0, _hooks.addFilter)('editor.BlockEdit', 'core/editor/with-navigation-view-button', withNavigationViewButton);
|
|
76
|
+
//# sourceMappingURL=navigation-link-view-button.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_hooks","require","_compose","_element","_i18n","_blockEditor","_components","_data","_jsxRuntime","SUPPORTED_BLOCKS","NavigationViewButton","attributes","kind","id","type","blockEditingMode","useBlockEditingMode","onNavigateToEntityRecord","useSelect","select","blockEditorStore","getSettings","onViewPage","useCallback","postId","postType","jsx","__unstableBlockToolbarLastItem","children","ToolbarGroup","ToolbarButton","name","title","__","onClick","withNavigationViewButton","createHigherOrderComponent","BlockEdit","props","isSupportedBlock","includes","jsxs","Fragment","isSelected","addFilter"],"sources":["@wordpress/editor/src/hooks/navigation-link-view-button.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { addFilter } from '@wordpress/hooks';\nimport { createHigherOrderComponent } from '@wordpress/compose';\nimport { useCallback } from '@wordpress/element';\nimport { __ } from '@wordpress/i18n';\nimport {\n\t__unstableBlockToolbarLastItem as BlockToolbarLastItem,\n\tstore as blockEditorStore,\n\tuseBlockEditingMode,\n} from '@wordpress/block-editor';\nimport { ToolbarButton, ToolbarGroup } from '@wordpress/components';\nimport { useSelect } from '@wordpress/data';\n\n// Target blocks that should have the View button.\nconst SUPPORTED_BLOCKS = [ 'core/navigation-link', 'core/navigation-submenu' ];\n\n/**\n * Component that renders the View button for navigation blocks.\n *\n * @param {Object} props Component props.\n * @param {Object} props.attributes Block attributes.\n * @return {JSX.Element|null} The View button component or null if not applicable.\n */\nfunction NavigationViewButton( { attributes } ) {\n\tconst { kind, id, type } = attributes;\n\tconst blockEditingMode = useBlockEditingMode();\n\n\tconst onNavigateToEntityRecord = useSelect(\n\t\t( select ) =>\n\t\t\tselect( blockEditorStore ).getSettings().onNavigateToEntityRecord,\n\t\t[]\n\t);\n\n\tconst onViewPage = useCallback( () => {\n\t\tif (\n\t\t\tkind === 'post-type' &&\n\t\t\ttype === 'page' &&\n\t\t\tid &&\n\t\t\tonNavigateToEntityRecord\n\t\t) {\n\t\t\tonNavigateToEntityRecord( {\n\t\t\t\tpostId: id,\n\t\t\t\tpostType: type,\n\t\t\t} );\n\t\t}\n\t}, [ kind, id, type, onNavigateToEntityRecord ] );\n\n\t// Only show for page-type links, when navigation is available, and when in contentOnly mode.\n\tif (\n\t\tkind !== 'post-type' ||\n\t\ttype !== 'page' ||\n\t\t! id ||\n\t\t! onNavigateToEntityRecord ||\n\t\tblockEditingMode !== 'contentOnly'\n\t) {\n\t\treturn null;\n\t}\n\n\treturn (\n\t\t<BlockToolbarLastItem>\n\t\t\t<ToolbarGroup>\n\t\t\t\t<ToolbarButton\n\t\t\t\t\tname=\"view\"\n\t\t\t\t\ttitle={ __( 'View' ) }\n\t\t\t\t\tonClick={ onViewPage }\n\t\t\t\t>\n\t\t\t\t\t{ __( 'View' ) }\n\t\t\t\t</ToolbarButton>\n\t\t\t</ToolbarGroup>\n\t\t</BlockToolbarLastItem>\n\t);\n}\n\n/**\n * Higher-order component that adds the View button to navigation blocks.\n */\nconst withNavigationViewButton = createHigherOrderComponent(\n\t( BlockEdit ) => ( props ) => {\n\t\tconst isSupportedBlock = SUPPORTED_BLOCKS.includes( props.name );\n\n\t\treturn (\n\t\t\t<>\n\t\t\t\t<BlockEdit key=\"edit\" { ...props } />\n\t\t\t\t{ props.isSelected && isSupportedBlock && (\n\t\t\t\t\t<NavigationViewButton { ...props } />\n\t\t\t\t) }\n\t\t\t</>\n\t\t);\n\t},\n\t'withNavigationViewButton'\n);\n\n// Register the filter.\naddFilter(\n\t'editor.BlockEdit',\n\t'core/editor/with-navigation-view-button',\n\twithNavigationViewButton\n);\n"],"mappings":";;AAGA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,QAAA,GAAAD,OAAA;AACA,IAAAE,QAAA,GAAAF,OAAA;AACA,IAAAG,KAAA,GAAAH,OAAA;AACA,IAAAI,YAAA,GAAAJ,OAAA;AAKA,IAAAK,WAAA,GAAAL,OAAA;AACA,IAAAM,KAAA,GAAAN,OAAA;AAA4C,IAAAO,WAAA,GAAAP,OAAA;AAb5C;AACA;AACA;;AAaA;AACA,MAAMQ,gBAAgB,GAAG,CAAE,sBAAsB,EAAE,yBAAyB,CAAE;;AAE9E;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASC,oBAAoBA,CAAE;EAAEC;AAAW,CAAC,EAAG;EAC/C,MAAM;IAAEC,IAAI;IAAEC,EAAE;IAAEC;EAAK,CAAC,GAAGH,UAAU;EACrC,MAAMI,gBAAgB,GAAG,IAAAC,gCAAmB,EAAC,CAAC;EAE9C,MAAMC,wBAAwB,GAAG,IAAAC,eAAS,EACvCC,MAAM,IACPA,MAAM,CAAEC,kBAAiB,CAAC,CAACC,WAAW,CAAC,CAAC,CAACJ,wBAAwB,EAClE,EACD,CAAC;EAED,MAAMK,UAAU,GAAG,IAAAC,oBAAW,EAAE,MAAM;IACrC,IACCX,IAAI,KAAK,WAAW,IACpBE,IAAI,KAAK,MAAM,IACfD,EAAE,IACFI,wBAAwB,EACvB;MACDA,wBAAwB,CAAE;QACzBO,MAAM,EAAEX,EAAE;QACVY,QAAQ,EAAEX;MACX,CAAE,CAAC;IACJ;EACD,CAAC,EAAE,CAAEF,IAAI,EAAEC,EAAE,EAAEC,IAAI,EAAEG,wBAAwB,CAAG,CAAC;;EAEjD;EACA,IACCL,IAAI,KAAK,WAAW,IACpBE,IAAI,KAAK,MAAM,IACf,CAAED,EAAE,IACJ,CAAEI,wBAAwB,IAC1BF,gBAAgB,KAAK,aAAa,EACjC;IACD,OAAO,IAAI;EACZ;EAEA,oBACC,IAAAP,WAAA,CAAAkB,GAAA,EAACrB,YAAA,CAAAsB,8BAAoB;IAAAC,QAAA,eACpB,IAAApB,WAAA,CAAAkB,GAAA,EAACpB,WAAA,CAAAuB,YAAY;MAAAD,QAAA,eACZ,IAAApB,WAAA,CAAAkB,GAAA,EAACpB,WAAA,CAAAwB,aAAa;QACbC,IAAI,EAAC,MAAM;QACXC,KAAK,EAAG,IAAAC,QAAE,EAAE,MAAO,CAAG;QACtBC,OAAO,EAAGZ,UAAY;QAAAM,QAAA,EAEpB,IAAAK,QAAE,EAAE,MAAO;MAAC,CACA;IAAC,CACH;EAAC,CACM,CAAC;AAEzB;;AAEA;AACA;AACA;AACA,MAAME,wBAAwB,GAAG,IAAAC,mCAA0B,EACxDC,SAAS,IAAQC,KAAK,IAAM;EAC7B,MAAMC,gBAAgB,GAAG9B,gBAAgB,CAAC+B,QAAQ,CAAEF,KAAK,CAACP,IAAK,CAAC;EAEhE,oBACC,IAAAvB,WAAA,CAAAiC,IAAA,EAAAjC,WAAA,CAAAkC,QAAA;IAAAd,QAAA,gBACC,IAAApB,WAAA,CAAAkB,GAAA,EAACW,SAAS;MAAA,GAAiBC;IAAK,GAAjB,MAAqB,CAAC,EACnCA,KAAK,CAACK,UAAU,IAAIJ,gBAAgB,iBACrC,IAAA/B,WAAA,CAAAkB,GAAA,EAAChB,oBAAoB;MAAA,GAAM4B;IAAK,CAAI,CACpC;EAAA,CACA,CAAC;AAEL,CAAC,EACD,0BACD,CAAC;;AAED;AACA,IAAAM,gBAAS,EACR,kBAAkB,EAClB,yCAAyC,EACzCT,wBACD,CAAC","ignoreList":[]}
|
|
@@ -139,7 +139,7 @@ export default function DocumentBar(props) {
|
|
|
139
139
|
} : undefined,
|
|
140
140
|
children: __('Back')
|
|
141
141
|
})
|
|
142
|
-
}), !isTemplate && isTemplatePreview && /*#__PURE__*/_jsx(BlockIcon, {
|
|
142
|
+
}), !isTemplate && isTemplatePreview && !hasBackButton && /*#__PURE__*/_jsx(BlockIcon, {
|
|
143
143
|
icon: layout,
|
|
144
144
|
className: "editor-document-bar__icon-layout"
|
|
145
145
|
}), isNotFound ? /*#__PURE__*/_jsx(Text, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["clsx","__","isRTL","useSelect","useDispatch","Button","__experimentalText","Text","__unstableMotion","motion","__unstableAnimatePresence","AnimatePresence","BlockIcon","chevronLeftSmall","chevronRightSmall","layout","displayShortcut","store","coreStore","commandsStore","useRef","useEffect","useReducedMotion","decodeEntities","__unstableStripHTML","stripHTML","TEMPLATE_POST_TYPES","editorStore","usePageTypeBadge","getTemplateInfo","jsx","_jsx","jsxs","_jsxs","MotionButton","DocumentBar","props","postId","postType","postTypeLabel","documentTitle","isNotFound","templateTitle","onNavigateToPreviousEntityRecord","isTemplatePreview","select","_getCurrentTheme","getCurrentPostType","getCurrentPostId","getEditorSettings","getRenderingMode","getEditedEntityRecord","getPostType","getCurrentTheme","isResolving","isResolvingSelector","_postType","_postId","_document","default_template_types","templateTypes","_templateInfo","template","_postTypeLabel","labels","singular_name","title","open","openCommandCenter","isReducedMotion","isTemplate","includes","hasBackButton","entityTitle","icon","pageTypeBadge","mountedRef","current","className","children","onClick","event","stopPropagation","size","initial","opacity","transform","animate","exit","transition","duration","undefined","div","as","primary"],"sources":["@wordpress/editor/src/components/document-bar/index.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport clsx from 'clsx';\n\n/**\n * WordPress dependencies\n */\nimport { __, isRTL } from '@wordpress/i18n';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport {\n\tButton,\n\t__experimentalText as Text,\n\t__unstableMotion as motion,\n\t__unstableAnimatePresence as AnimatePresence,\n} from '@wordpress/components';\nimport { BlockIcon } from '@wordpress/block-editor';\nimport { chevronLeftSmall, chevronRightSmall, layout } from '@wordpress/icons';\nimport { displayShortcut } from '@wordpress/keycodes';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { store as commandsStore } from '@wordpress/commands';\nimport { useRef, useEffect } from '@wordpress/element';\nimport { useReducedMotion } from '@wordpress/compose';\nimport { decodeEntities } from '@wordpress/html-entities';\nimport { __unstableStripHTML as stripHTML } from '@wordpress/dom';\n\n/**\n * Internal dependencies\n */\nimport { TEMPLATE_POST_TYPES } from '../../store/constants';\nimport { store as editorStore } from '../../store';\nimport usePageTypeBadge from '../../utils/pageTypeBadge';\nimport { getTemplateInfo } from '../../utils/get-template-info';\n\n/** @typedef {import(\"@wordpress/components\").IconType} IconType */\n\nconst MotionButton = motion( Button );\n\n/**\n * This component renders a navigation bar at the top of the editor. It displays the title of the current document,\n * a back button (if applicable), and a command center button. It also handles different states of the document,\n * such as \"not found\" or \"unsynced\".\n *\n * @example\n * ```jsx\n * <DocumentBar />\n * ```\n * @param {Object} props The component props.\n * @param {string} props.title A title for the document, defaulting to the document or\n * template title currently being edited.\n * @param {IconType} props.icon An icon for the document, no default.\n * (A default icon indicating the document post type is no longer used.)\n *\n * @return {React.ReactNode} The rendered DocumentBar component.\n */\nexport default function DocumentBar( props ) {\n\tconst {\n\t\tpostId,\n\t\tpostType,\n\t\tpostTypeLabel,\n\t\tdocumentTitle,\n\t\tisNotFound,\n\t\ttemplateTitle,\n\t\tonNavigateToPreviousEntityRecord,\n\t\tisTemplatePreview,\n\t} = useSelect( ( select ) => {\n\t\tconst {\n\t\t\tgetCurrentPostType,\n\t\t\tgetCurrentPostId,\n\t\t\tgetEditorSettings,\n\t\t\tgetRenderingMode,\n\t\t} = select( editorStore );\n\n\t\tconst {\n\t\t\tgetEditedEntityRecord,\n\t\t\tgetPostType,\n\t\t\tgetCurrentTheme,\n\t\t\tisResolving: isResolvingSelector,\n\t\t} = select( coreStore );\n\t\tconst _postType = getCurrentPostType();\n\t\tconst _postId = getCurrentPostId();\n\t\tconst _document = getEditedEntityRecord(\n\t\t\t'postType',\n\t\t\t_postType,\n\t\t\t_postId\n\t\t);\n\n\t\tconst { default_template_types: templateTypes = [] } =\n\t\t\tgetCurrentTheme() ?? {};\n\n\t\tconst _templateInfo = getTemplateInfo( {\n\t\t\ttemplateTypes,\n\t\t\ttemplate: _document,\n\t\t} );\n\t\tconst _postTypeLabel = getPostType( _postType )?.labels?.singular_name;\n\n\t\treturn {\n\t\t\tpostId: _postId,\n\t\t\tpostType: _postType,\n\t\t\tpostTypeLabel: _postTypeLabel,\n\t\t\tdocumentTitle: _document.title,\n\t\t\tisNotFound:\n\t\t\t\t! _document &&\n\t\t\t\t! isResolvingSelector(\n\t\t\t\t\t'getEditedEntityRecord',\n\t\t\t\t\t'postType',\n\t\t\t\t\t_postType,\n\t\t\t\t\t_postId\n\t\t\t\t),\n\t\t\ttemplateTitle: _templateInfo.title,\n\t\t\tonNavigateToPreviousEntityRecord:\n\t\t\t\tgetEditorSettings().onNavigateToPreviousEntityRecord,\n\t\t\tisTemplatePreview: getRenderingMode() === 'template-locked',\n\t\t};\n\t}, [] );\n\n\tconst { open: openCommandCenter } = useDispatch( commandsStore );\n\tconst isReducedMotion = useReducedMotion();\n\n\tconst isTemplate = TEMPLATE_POST_TYPES.includes( postType );\n\tconst hasBackButton = !! onNavigateToPreviousEntityRecord;\n\tconst entityTitle = isTemplate ? templateTitle : documentTitle;\n\tconst title = props.title || entityTitle;\n\tconst icon = props.icon;\n\n\tconst pageTypeBadge = usePageTypeBadge( postId );\n\n\tconst mountedRef = useRef( false );\n\tuseEffect( () => {\n\t\tmountedRef.current = true;\n\t}, [] );\n\n\treturn (\n\t\t<div\n\t\t\tclassName={ clsx( 'editor-document-bar', {\n\t\t\t\t'has-back-button': hasBackButton,\n\t\t\t} ) }\n\t\t>\n\t\t\t<AnimatePresence>\n\t\t\t\t{ hasBackButton && (\n\t\t\t\t\t<MotionButton\n\t\t\t\t\t\tclassName=\"editor-document-bar__back\"\n\t\t\t\t\t\ticon={ isRTL() ? chevronRightSmall : chevronLeftSmall }\n\t\t\t\t\t\tonClick={ ( event ) => {\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\tonNavigateToPreviousEntityRecord();\n\t\t\t\t\t\t} }\n\t\t\t\t\t\tsize=\"compact\"\n\t\t\t\t\t\tinitial={\n\t\t\t\t\t\t\tmountedRef.current\n\t\t\t\t\t\t\t\t? { opacity: 0, transform: 'translateX(15%)' }\n\t\t\t\t\t\t\t\t: false // Don't show entry animation when DocumentBar mounts.\n\t\t\t\t\t\t}\n\t\t\t\t\t\tanimate={ { opacity: 1, transform: 'translateX(0%)' } }\n\t\t\t\t\t\texit={ { opacity: 0, transform: 'translateX(15%)' } }\n\t\t\t\t\t\ttransition={\n\t\t\t\t\t\t\tisReducedMotion ? { duration: 0 } : undefined\n\t\t\t\t\t\t}\n\t\t\t\t\t>\n\t\t\t\t\t\t{ __( 'Back' ) }\n\t\t\t\t\t</MotionButton>\n\t\t\t\t) }\n\t\t\t</AnimatePresence>\n\t\t\t{ ! isTemplate && isTemplatePreview && (\n\t\t\t\t<BlockIcon\n\t\t\t\t\ticon={ layout }\n\t\t\t\t\tclassName=\"editor-document-bar__icon-layout\"\n\t\t\t\t/>\n\t\t\t) }\n\t\t\t{ isNotFound ? (\n\t\t\t\t<Text>{ __( 'Document not found' ) }</Text>\n\t\t\t) : (\n\t\t\t\t<Button\n\t\t\t\t\tclassName=\"editor-document-bar__command\"\n\t\t\t\t\tonClick={ () => openCommandCenter() }\n\t\t\t\t\tsize=\"compact\"\n\t\t\t\t>\n\t\t\t\t\t<motion.div\n\t\t\t\t\t\tclassName=\"editor-document-bar__title\"\n\t\t\t\t\t\t// Force entry animation when the back button is added or removed.\n\t\t\t\t\t\tkey={ hasBackButton }\n\t\t\t\t\t\tinitial={\n\t\t\t\t\t\t\tmountedRef.current\n\t\t\t\t\t\t\t\t? {\n\t\t\t\t\t\t\t\t\t\topacity: 0,\n\t\t\t\t\t\t\t\t\t\ttransform: hasBackButton\n\t\t\t\t\t\t\t\t\t\t\t? 'translateX(15%)'\n\t\t\t\t\t\t\t\t\t\t\t: 'translateX(-15%)',\n\t\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t\t: false // Don't show entry animation when DocumentBar mounts.\n\t\t\t\t\t\t}\n\t\t\t\t\t\tanimate={ {\n\t\t\t\t\t\t\topacity: 1,\n\t\t\t\t\t\t\ttransform: 'translateX(0%)',\n\t\t\t\t\t\t} }\n\t\t\t\t\t\ttransition={\n\t\t\t\t\t\t\tisReducedMotion ? { duration: 0 } : undefined\n\t\t\t\t\t\t}\n\t\t\t\t\t>\n\t\t\t\t\t\t{ icon && <BlockIcon icon={ icon } /> }\n\t\t\t\t\t\t<Text size=\"body\" as=\"h1\">\n\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-title\">\n\t\t\t\t\t\t\t\t{ title\n\t\t\t\t\t\t\t\t\t? stripHTML( title )\n\t\t\t\t\t\t\t\t\t: __( 'No title' ) }\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t{ pageTypeBadge && (\n\t\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-type-label\">\n\t\t\t\t\t\t\t\t\t{ `· ${ pageTypeBadge }` }\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t\t{ postTypeLabel &&\n\t\t\t\t\t\t\t\t! props.title &&\n\t\t\t\t\t\t\t\t! pageTypeBadge && (\n\t\t\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-type-label\">\n\t\t\t\t\t\t\t\t\t\t{ `· ${ decodeEntities(\n\t\t\t\t\t\t\t\t\t\t\tpostTypeLabel\n\t\t\t\t\t\t\t\t\t\t) }` }\n\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t</Text>\n\t\t\t\t\t</motion.div>\n\t\t\t\t\t<span className=\"editor-document-bar__shortcut\">\n\t\t\t\t\t\t{ displayShortcut.primary( 'k' ) }\n\t\t\t\t\t</span>\n\t\t\t\t</Button>\n\t\t\t) }\n\t\t</div>\n\t);\n}\n"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["clsx","__","isRTL","useSelect","useDispatch","Button","__experimentalText","Text","__unstableMotion","motion","__unstableAnimatePresence","AnimatePresence","BlockIcon","chevronLeftSmall","chevronRightSmall","layout","displayShortcut","store","coreStore","commandsStore","useRef","useEffect","useReducedMotion","decodeEntities","__unstableStripHTML","stripHTML","TEMPLATE_POST_TYPES","editorStore","usePageTypeBadge","getTemplateInfo","jsx","_jsx","jsxs","_jsxs","MotionButton","DocumentBar","props","postId","postType","postTypeLabel","documentTitle","isNotFound","templateTitle","onNavigateToPreviousEntityRecord","isTemplatePreview","select","_getCurrentTheme","getCurrentPostType","getCurrentPostId","getEditorSettings","getRenderingMode","getEditedEntityRecord","getPostType","getCurrentTheme","isResolving","isResolvingSelector","_postType","_postId","_document","default_template_types","templateTypes","_templateInfo","template","_postTypeLabel","labels","singular_name","title","open","openCommandCenter","isReducedMotion","isTemplate","includes","hasBackButton","entityTitle","icon","pageTypeBadge","mountedRef","current","className","children","onClick","event","stopPropagation","size","initial","opacity","transform","animate","exit","transition","duration","undefined","div","as","primary"],"sources":["@wordpress/editor/src/components/document-bar/index.js"],"sourcesContent":["/**\n * External dependencies\n */\nimport clsx from 'clsx';\n\n/**\n * WordPress dependencies\n */\nimport { __, isRTL } from '@wordpress/i18n';\nimport { useSelect, useDispatch } from '@wordpress/data';\nimport {\n\tButton,\n\t__experimentalText as Text,\n\t__unstableMotion as motion,\n\t__unstableAnimatePresence as AnimatePresence,\n} from '@wordpress/components';\nimport { BlockIcon } from '@wordpress/block-editor';\nimport { chevronLeftSmall, chevronRightSmall, layout } from '@wordpress/icons';\nimport { displayShortcut } from '@wordpress/keycodes';\nimport { store as coreStore } from '@wordpress/core-data';\nimport { store as commandsStore } from '@wordpress/commands';\nimport { useRef, useEffect } from '@wordpress/element';\nimport { useReducedMotion } from '@wordpress/compose';\nimport { decodeEntities } from '@wordpress/html-entities';\nimport { __unstableStripHTML as stripHTML } from '@wordpress/dom';\n\n/**\n * Internal dependencies\n */\nimport { TEMPLATE_POST_TYPES } from '../../store/constants';\nimport { store as editorStore } from '../../store';\nimport usePageTypeBadge from '../../utils/pageTypeBadge';\nimport { getTemplateInfo } from '../../utils/get-template-info';\n\n/** @typedef {import(\"@wordpress/components\").IconType} IconType */\n\nconst MotionButton = motion( Button );\n\n/**\n * This component renders a navigation bar at the top of the editor. It displays the title of the current document,\n * a back button (if applicable), and a command center button. It also handles different states of the document,\n * such as \"not found\" or \"unsynced\".\n *\n * @example\n * ```jsx\n * <DocumentBar />\n * ```\n * @param {Object} props The component props.\n * @param {string} props.title A title for the document, defaulting to the document or\n * template title currently being edited.\n * @param {IconType} props.icon An icon for the document, no default.\n * (A default icon indicating the document post type is no longer used.)\n *\n * @return {React.ReactNode} The rendered DocumentBar component.\n */\nexport default function DocumentBar( props ) {\n\tconst {\n\t\tpostId,\n\t\tpostType,\n\t\tpostTypeLabel,\n\t\tdocumentTitle,\n\t\tisNotFound,\n\t\ttemplateTitle,\n\t\tonNavigateToPreviousEntityRecord,\n\t\tisTemplatePreview,\n\t} = useSelect( ( select ) => {\n\t\tconst {\n\t\t\tgetCurrentPostType,\n\t\t\tgetCurrentPostId,\n\t\t\tgetEditorSettings,\n\t\t\tgetRenderingMode,\n\t\t} = select( editorStore );\n\n\t\tconst {\n\t\t\tgetEditedEntityRecord,\n\t\t\tgetPostType,\n\t\t\tgetCurrentTheme,\n\t\t\tisResolving: isResolvingSelector,\n\t\t} = select( coreStore );\n\t\tconst _postType = getCurrentPostType();\n\t\tconst _postId = getCurrentPostId();\n\t\tconst _document = getEditedEntityRecord(\n\t\t\t'postType',\n\t\t\t_postType,\n\t\t\t_postId\n\t\t);\n\n\t\tconst { default_template_types: templateTypes = [] } =\n\t\t\tgetCurrentTheme() ?? {};\n\n\t\tconst _templateInfo = getTemplateInfo( {\n\t\t\ttemplateTypes,\n\t\t\ttemplate: _document,\n\t\t} );\n\t\tconst _postTypeLabel = getPostType( _postType )?.labels?.singular_name;\n\n\t\treturn {\n\t\t\tpostId: _postId,\n\t\t\tpostType: _postType,\n\t\t\tpostTypeLabel: _postTypeLabel,\n\t\t\tdocumentTitle: _document.title,\n\t\t\tisNotFound:\n\t\t\t\t! _document &&\n\t\t\t\t! isResolvingSelector(\n\t\t\t\t\t'getEditedEntityRecord',\n\t\t\t\t\t'postType',\n\t\t\t\t\t_postType,\n\t\t\t\t\t_postId\n\t\t\t\t),\n\t\t\ttemplateTitle: _templateInfo.title,\n\t\t\tonNavigateToPreviousEntityRecord:\n\t\t\t\tgetEditorSettings().onNavigateToPreviousEntityRecord,\n\t\t\tisTemplatePreview: getRenderingMode() === 'template-locked',\n\t\t};\n\t}, [] );\n\n\tconst { open: openCommandCenter } = useDispatch( commandsStore );\n\tconst isReducedMotion = useReducedMotion();\n\n\tconst isTemplate = TEMPLATE_POST_TYPES.includes( postType );\n\tconst hasBackButton = !! onNavigateToPreviousEntityRecord;\n\tconst entityTitle = isTemplate ? templateTitle : documentTitle;\n\tconst title = props.title || entityTitle;\n\tconst icon = props.icon;\n\n\tconst pageTypeBadge = usePageTypeBadge( postId );\n\n\tconst mountedRef = useRef( false );\n\tuseEffect( () => {\n\t\tmountedRef.current = true;\n\t}, [] );\n\n\treturn (\n\t\t<div\n\t\t\tclassName={ clsx( 'editor-document-bar', {\n\t\t\t\t'has-back-button': hasBackButton,\n\t\t\t} ) }\n\t\t>\n\t\t\t<AnimatePresence>\n\t\t\t\t{ hasBackButton && (\n\t\t\t\t\t<MotionButton\n\t\t\t\t\t\tclassName=\"editor-document-bar__back\"\n\t\t\t\t\t\ticon={ isRTL() ? chevronRightSmall : chevronLeftSmall }\n\t\t\t\t\t\tonClick={ ( event ) => {\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\tonNavigateToPreviousEntityRecord();\n\t\t\t\t\t\t} }\n\t\t\t\t\t\tsize=\"compact\"\n\t\t\t\t\t\tinitial={\n\t\t\t\t\t\t\tmountedRef.current\n\t\t\t\t\t\t\t\t? { opacity: 0, transform: 'translateX(15%)' }\n\t\t\t\t\t\t\t\t: false // Don't show entry animation when DocumentBar mounts.\n\t\t\t\t\t\t}\n\t\t\t\t\t\tanimate={ { opacity: 1, transform: 'translateX(0%)' } }\n\t\t\t\t\t\texit={ { opacity: 0, transform: 'translateX(15%)' } }\n\t\t\t\t\t\ttransition={\n\t\t\t\t\t\t\tisReducedMotion ? { duration: 0 } : undefined\n\t\t\t\t\t\t}\n\t\t\t\t\t>\n\t\t\t\t\t\t{ __( 'Back' ) }\n\t\t\t\t\t</MotionButton>\n\t\t\t\t) }\n\t\t\t</AnimatePresence>\n\t\t\t{ ! isTemplate && isTemplatePreview && ! hasBackButton && (\n\t\t\t\t<BlockIcon\n\t\t\t\t\ticon={ layout }\n\t\t\t\t\tclassName=\"editor-document-bar__icon-layout\"\n\t\t\t\t/>\n\t\t\t) }\n\t\t\t{ isNotFound ? (\n\t\t\t\t<Text>{ __( 'Document not found' ) }</Text>\n\t\t\t) : (\n\t\t\t\t<Button\n\t\t\t\t\tclassName=\"editor-document-bar__command\"\n\t\t\t\t\tonClick={ () => openCommandCenter() }\n\t\t\t\t\tsize=\"compact\"\n\t\t\t\t>\n\t\t\t\t\t<motion.div\n\t\t\t\t\t\tclassName=\"editor-document-bar__title\"\n\t\t\t\t\t\t// Force entry animation when the back button is added or removed.\n\t\t\t\t\t\tkey={ hasBackButton }\n\t\t\t\t\t\tinitial={\n\t\t\t\t\t\t\tmountedRef.current\n\t\t\t\t\t\t\t\t? {\n\t\t\t\t\t\t\t\t\t\topacity: 0,\n\t\t\t\t\t\t\t\t\t\ttransform: hasBackButton\n\t\t\t\t\t\t\t\t\t\t\t? 'translateX(15%)'\n\t\t\t\t\t\t\t\t\t\t\t: 'translateX(-15%)',\n\t\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t\t: false // Don't show entry animation when DocumentBar mounts.\n\t\t\t\t\t\t}\n\t\t\t\t\t\tanimate={ {\n\t\t\t\t\t\t\topacity: 1,\n\t\t\t\t\t\t\ttransform: 'translateX(0%)',\n\t\t\t\t\t\t} }\n\t\t\t\t\t\ttransition={\n\t\t\t\t\t\t\tisReducedMotion ? { duration: 0 } : undefined\n\t\t\t\t\t\t}\n\t\t\t\t\t>\n\t\t\t\t\t\t{ icon && <BlockIcon icon={ icon } /> }\n\t\t\t\t\t\t<Text size=\"body\" as=\"h1\">\n\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-title\">\n\t\t\t\t\t\t\t\t{ title\n\t\t\t\t\t\t\t\t\t? stripHTML( title )\n\t\t\t\t\t\t\t\t\t: __( 'No title' ) }\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t{ pageTypeBadge && (\n\t\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-type-label\">\n\t\t\t\t\t\t\t\t\t{ `· ${ pageTypeBadge }` }\n\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t\t{ postTypeLabel &&\n\t\t\t\t\t\t\t\t! props.title &&\n\t\t\t\t\t\t\t\t! pageTypeBadge && (\n\t\t\t\t\t\t\t\t\t<span className=\"editor-document-bar__post-type-label\">\n\t\t\t\t\t\t\t\t\t\t{ `· ${ decodeEntities(\n\t\t\t\t\t\t\t\t\t\t\tpostTypeLabel\n\t\t\t\t\t\t\t\t\t\t) }` }\n\t\t\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t\t) }\n\t\t\t\t\t\t</Text>\n\t\t\t\t\t</motion.div>\n\t\t\t\t\t<span className=\"editor-document-bar__shortcut\">\n\t\t\t\t\t\t{ displayShortcut.primary( 'k' ) }\n\t\t\t\t\t</span>\n\t\t\t\t</Button>\n\t\t\t) }\n\t\t</div>\n\t);\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["@wordpress/editor/src/hooks/index.js"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport './custom-sources-backwards-compatibility';\nimport './default-autocompleters';\nimport './media-upload';\nimport './pattern-overrides';\n"],"mappings":"AAAA;AACA;AACA;AACA,OAAO,0CAA0C;AACjD,OAAO,0BAA0B;AACjC,OAAO,gBAAgB;AACvB,OAAO,qBAAqB","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":[],"sources":["@wordpress/editor/src/hooks/index.js"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport './custom-sources-backwards-compatibility';\nimport './default-autocompleters';\nimport './media-upload';\nimport './pattern-overrides';\nimport './navigation-link-view-button';\n"],"mappings":"AAAA;AACA;AACA;AACA,OAAO,0CAA0C;AACjD,OAAO,0BAA0B;AACjC,OAAO,gBAAgB;AACvB,OAAO,qBAAqB;AAC5B,OAAO,+BAA+B","ignoreList":[]}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WordPress dependencies
|
|
3
|
+
*/
|
|
4
|
+
import { addFilter } from '@wordpress/hooks';
|
|
5
|
+
import { createHigherOrderComponent } from '@wordpress/compose';
|
|
6
|
+
import { useCallback } from '@wordpress/element';
|
|
7
|
+
import { __ } from '@wordpress/i18n';
|
|
8
|
+
import { __unstableBlockToolbarLastItem as BlockToolbarLastItem, store as blockEditorStore, useBlockEditingMode } from '@wordpress/block-editor';
|
|
9
|
+
import { ToolbarButton, ToolbarGroup } from '@wordpress/components';
|
|
10
|
+
import { useSelect } from '@wordpress/data';
|
|
11
|
+
|
|
12
|
+
// Target blocks that should have the View button.
|
|
13
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
+
const SUPPORTED_BLOCKS = ['core/navigation-link', 'core/navigation-submenu'];
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Component that renders the View button for navigation blocks.
|
|
18
|
+
*
|
|
19
|
+
* @param {Object} props Component props.
|
|
20
|
+
* @param {Object} props.attributes Block attributes.
|
|
21
|
+
* @return {JSX.Element|null} The View button component or null if not applicable.
|
|
22
|
+
*/
|
|
23
|
+
function NavigationViewButton({
|
|
24
|
+
attributes
|
|
25
|
+
}) {
|
|
26
|
+
const {
|
|
27
|
+
kind,
|
|
28
|
+
id,
|
|
29
|
+
type
|
|
30
|
+
} = attributes;
|
|
31
|
+
const blockEditingMode = useBlockEditingMode();
|
|
32
|
+
const onNavigateToEntityRecord = useSelect(select => select(blockEditorStore).getSettings().onNavigateToEntityRecord, []);
|
|
33
|
+
const onViewPage = useCallback(() => {
|
|
34
|
+
if (kind === 'post-type' && type === 'page' && id && onNavigateToEntityRecord) {
|
|
35
|
+
onNavigateToEntityRecord({
|
|
36
|
+
postId: id,
|
|
37
|
+
postType: type
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
}, [kind, id, type, onNavigateToEntityRecord]);
|
|
41
|
+
|
|
42
|
+
// Only show for page-type links, when navigation is available, and when in contentOnly mode.
|
|
43
|
+
if (kind !== 'post-type' || type !== 'page' || !id || !onNavigateToEntityRecord || blockEditingMode !== 'contentOnly') {
|
|
44
|
+
return null;
|
|
45
|
+
}
|
|
46
|
+
return /*#__PURE__*/_jsx(BlockToolbarLastItem, {
|
|
47
|
+
children: /*#__PURE__*/_jsx(ToolbarGroup, {
|
|
48
|
+
children: /*#__PURE__*/_jsx(ToolbarButton, {
|
|
49
|
+
name: "view",
|
|
50
|
+
title: __('View'),
|
|
51
|
+
onClick: onViewPage,
|
|
52
|
+
children: __('View')
|
|
53
|
+
})
|
|
54
|
+
})
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Higher-order component that adds the View button to navigation blocks.
|
|
60
|
+
*/
|
|
61
|
+
const withNavigationViewButton = createHigherOrderComponent(BlockEdit => props => {
|
|
62
|
+
const isSupportedBlock = SUPPORTED_BLOCKS.includes(props.name);
|
|
63
|
+
return /*#__PURE__*/_jsxs(_Fragment, {
|
|
64
|
+
children: [/*#__PURE__*/_jsx(BlockEdit, {
|
|
65
|
+
...props
|
|
66
|
+
}, "edit"), props.isSelected && isSupportedBlock && /*#__PURE__*/_jsx(NavigationViewButton, {
|
|
67
|
+
...props
|
|
68
|
+
})]
|
|
69
|
+
});
|
|
70
|
+
}, 'withNavigationViewButton');
|
|
71
|
+
|
|
72
|
+
// Register the filter.
|
|
73
|
+
addFilter('editor.BlockEdit', 'core/editor/with-navigation-view-button', withNavigationViewButton);
|
|
74
|
+
//# sourceMappingURL=navigation-link-view-button.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["addFilter","createHigherOrderComponent","useCallback","__","__unstableBlockToolbarLastItem","BlockToolbarLastItem","store","blockEditorStore","useBlockEditingMode","ToolbarButton","ToolbarGroup","useSelect","jsx","_jsx","Fragment","_Fragment","jsxs","_jsxs","SUPPORTED_BLOCKS","NavigationViewButton","attributes","kind","id","type","blockEditingMode","onNavigateToEntityRecord","select","getSettings","onViewPage","postId","postType","children","name","title","onClick","withNavigationViewButton","BlockEdit","props","isSupportedBlock","includes","isSelected"],"sources":["@wordpress/editor/src/hooks/navigation-link-view-button.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { addFilter } from '@wordpress/hooks';\nimport { createHigherOrderComponent } from '@wordpress/compose';\nimport { useCallback } from '@wordpress/element';\nimport { __ } from '@wordpress/i18n';\nimport {\n\t__unstableBlockToolbarLastItem as BlockToolbarLastItem,\n\tstore as blockEditorStore,\n\tuseBlockEditingMode,\n} from '@wordpress/block-editor';\nimport { ToolbarButton, ToolbarGroup } from '@wordpress/components';\nimport { useSelect } from '@wordpress/data';\n\n// Target blocks that should have the View button.\nconst SUPPORTED_BLOCKS = [ 'core/navigation-link', 'core/navigation-submenu' ];\n\n/**\n * Component that renders the View button for navigation blocks.\n *\n * @param {Object} props Component props.\n * @param {Object} props.attributes Block attributes.\n * @return {JSX.Element|null} The View button component or null if not applicable.\n */\nfunction NavigationViewButton( { attributes } ) {\n\tconst { kind, id, type } = attributes;\n\tconst blockEditingMode = useBlockEditingMode();\n\n\tconst onNavigateToEntityRecord = useSelect(\n\t\t( select ) =>\n\t\t\tselect( blockEditorStore ).getSettings().onNavigateToEntityRecord,\n\t\t[]\n\t);\n\n\tconst onViewPage = useCallback( () => {\n\t\tif (\n\t\t\tkind === 'post-type' &&\n\t\t\ttype === 'page' &&\n\t\t\tid &&\n\t\t\tonNavigateToEntityRecord\n\t\t) {\n\t\t\tonNavigateToEntityRecord( {\n\t\t\t\tpostId: id,\n\t\t\t\tpostType: type,\n\t\t\t} );\n\t\t}\n\t}, [ kind, id, type, onNavigateToEntityRecord ] );\n\n\t// Only show for page-type links, when navigation is available, and when in contentOnly mode.\n\tif (\n\t\tkind !== 'post-type' ||\n\t\ttype !== 'page' ||\n\t\t! id ||\n\t\t! onNavigateToEntityRecord ||\n\t\tblockEditingMode !== 'contentOnly'\n\t) {\n\t\treturn null;\n\t}\n\n\treturn (\n\t\t<BlockToolbarLastItem>\n\t\t\t<ToolbarGroup>\n\t\t\t\t<ToolbarButton\n\t\t\t\t\tname=\"view\"\n\t\t\t\t\ttitle={ __( 'View' ) }\n\t\t\t\t\tonClick={ onViewPage }\n\t\t\t\t>\n\t\t\t\t\t{ __( 'View' ) }\n\t\t\t\t</ToolbarButton>\n\t\t\t</ToolbarGroup>\n\t\t</BlockToolbarLastItem>\n\t);\n}\n\n/**\n * Higher-order component that adds the View button to navigation blocks.\n */\nconst withNavigationViewButton = createHigherOrderComponent(\n\t( BlockEdit ) => ( props ) => {\n\t\tconst isSupportedBlock = SUPPORTED_BLOCKS.includes( props.name );\n\n\t\treturn (\n\t\t\t<>\n\t\t\t\t<BlockEdit key=\"edit\" { ...props } />\n\t\t\t\t{ props.isSelected && isSupportedBlock && (\n\t\t\t\t\t<NavigationViewButton { ...props } />\n\t\t\t\t) }\n\t\t\t</>\n\t\t);\n\t},\n\t'withNavigationViewButton'\n);\n\n// Register the filter.\naddFilter(\n\t'editor.BlockEdit',\n\t'core/editor/with-navigation-view-button',\n\twithNavigationViewButton\n);\n"],"mappings":"AAAA;AACA;AACA;AACA,SAASA,SAAS,QAAQ,kBAAkB;AAC5C,SAASC,0BAA0B,QAAQ,oBAAoB;AAC/D,SAASC,WAAW,QAAQ,oBAAoB;AAChD,SAASC,EAAE,QAAQ,iBAAiB;AACpC,SACCC,8BAA8B,IAAIC,oBAAoB,EACtDC,KAAK,IAAIC,gBAAgB,EACzBC,mBAAmB,QACb,yBAAyB;AAChC,SAASC,aAAa,EAAEC,YAAY,QAAQ,uBAAuB;AACnE,SAASC,SAAS,QAAQ,iBAAiB;;AAE3C;AAAA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,QAAA,IAAAC,SAAA,EAAAC,IAAA,IAAAC,KAAA;AACA,MAAMC,gBAAgB,GAAG,CAAE,sBAAsB,EAAE,yBAAyB,CAAE;;AAE9E;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASC,oBAAoBA,CAAE;EAAEC;AAAW,CAAC,EAAG;EAC/C,MAAM;IAAEC,IAAI;IAAEC,EAAE;IAAEC;EAAK,CAAC,GAAGH,UAAU;EACrC,MAAMI,gBAAgB,GAAGhB,mBAAmB,CAAC,CAAC;EAE9C,MAAMiB,wBAAwB,GAAGd,SAAS,CACvCe,MAAM,IACPA,MAAM,CAAEnB,gBAAiB,CAAC,CAACoB,WAAW,CAAC,CAAC,CAACF,wBAAwB,EAClE,EACD,CAAC;EAED,MAAMG,UAAU,GAAG1B,WAAW,CAAE,MAAM;IACrC,IACCmB,IAAI,KAAK,WAAW,IACpBE,IAAI,KAAK,MAAM,IACfD,EAAE,IACFG,wBAAwB,EACvB;MACDA,wBAAwB,CAAE;QACzBI,MAAM,EAAEP,EAAE;QACVQ,QAAQ,EAAEP;MACX,CAAE,CAAC;IACJ;EACD,CAAC,EAAE,CAAEF,IAAI,EAAEC,EAAE,EAAEC,IAAI,EAAEE,wBAAwB,CAAG,CAAC;;EAEjD;EACA,IACCJ,IAAI,KAAK,WAAW,IACpBE,IAAI,KAAK,MAAM,IACf,CAAED,EAAE,IACJ,CAAEG,wBAAwB,IAC1BD,gBAAgB,KAAK,aAAa,EACjC;IACD,OAAO,IAAI;EACZ;EAEA,oBACCX,IAAA,CAACR,oBAAoB;IAAA0B,QAAA,eACpBlB,IAAA,CAACH,YAAY;MAAAqB,QAAA,eACZlB,IAAA,CAACJ,aAAa;QACbuB,IAAI,EAAC,MAAM;QACXC,KAAK,EAAG9B,EAAE,CAAE,MAAO,CAAG;QACtB+B,OAAO,EAAGN,UAAY;QAAAG,QAAA,EAEpB5B,EAAE,CAAE,MAAO;MAAC,CACA;IAAC,CACH;EAAC,CACM,CAAC;AAEzB;;AAEA;AACA;AACA;AACA,MAAMgC,wBAAwB,GAAGlC,0BAA0B,CACxDmC,SAAS,IAAQC,KAAK,IAAM;EAC7B,MAAMC,gBAAgB,GAAGpB,gBAAgB,CAACqB,QAAQ,CAAEF,KAAK,CAACL,IAAK,CAAC;EAEhE,oBACCf,KAAA,CAAAF,SAAA;IAAAgB,QAAA,gBACClB,IAAA,CAACuB,SAAS;MAAA,GAAiBC;IAAK,GAAjB,MAAqB,CAAC,EACnCA,KAAK,CAACG,UAAU,IAAIF,gBAAgB,iBACrCzB,IAAA,CAACM,oBAAoB;MAAA,GAAMkB;IAAK,CAAI,CACpC;EAAA,CACA,CAAC;AAEL,CAAC,EACD,0BACD,CAAC;;AAED;AACArC,SAAS,CACR,kBAAkB,EAClB,yCAAyC,EACzCmC,wBACD,CAAC","ignoreList":[]}
|
|
@@ -2316,7 +2316,8 @@ textarea.editor-post-text-editor:-ms-input-placeholder {
|
|
|
2316
2316
|
padding-inline-start: 0 !important;
|
|
2317
2317
|
}
|
|
2318
2318
|
|
|
2319
|
-
.editor-post-url__panel-toggle
|
|
2319
|
+
.editor-post-url__panel-toggle,
|
|
2320
|
+
.editor-post-parent__panel-toggle {
|
|
2320
2321
|
word-break: break-word;
|
|
2321
2322
|
}
|
|
2322
2323
|
|
package/build-style/style.css
CHANGED
|
@@ -2320,7 +2320,8 @@ textarea.editor-post-text-editor:-ms-input-placeholder {
|
|
|
2320
2320
|
padding-inline-start: 0 !important;
|
|
2321
2321
|
}
|
|
2322
2322
|
|
|
2323
|
-
.editor-post-url__panel-toggle
|
|
2323
|
+
.editor-post-url__panel-toggle,
|
|
2324
|
+
.editor-post-parent__panel-toggle {
|
|
2324
2325
|
word-break: break-word;
|
|
2325
2326
|
}
|
|
2326
2327
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"navigation-link-view-button.d.ts","sourceRoot":"","sources":["../../src/hooks/navigation-link-view-button.js"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/editor",
|
|
3
|
-
"version": "14.28.0",
|
|
3
|
+
"version": "14.28.1-next.0f6f9d12c.0",
|
|
4
4
|
"description": "Enhanced block editor for WordPress posts.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -34,41 +34,41 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@babel/runtime": "7.25.7",
|
|
37
|
-
"@wordpress/a11y": "^4.28.0",
|
|
38
|
-
"@wordpress/api-fetch": "^7.28.0",
|
|
39
|
-
"@wordpress/blob": "^4.28.0",
|
|
40
|
-
"@wordpress/block-editor": "^15.1.0",
|
|
41
|
-
"@wordpress/blocks": "^15.1.0",
|
|
42
|
-
"@wordpress/commands": "^1.28.0",
|
|
43
|
-
"@wordpress/components": "^30.1.0",
|
|
44
|
-
"@wordpress/compose": "^7.28.0",
|
|
45
|
-
"@wordpress/core-data": "^7.28.0",
|
|
46
|
-
"@wordpress/data": "^10.28.0",
|
|
47
|
-
"@wordpress/dataviews": "^
|
|
48
|
-
"@wordpress/date": "^5.28.0",
|
|
49
|
-
"@wordpress/deprecated": "^4.28.0",
|
|
50
|
-
"@wordpress/dom": "^4.28.0",
|
|
51
|
-
"@wordpress/element": "^6.28.0",
|
|
52
|
-
"@wordpress/fields": "^0.20.0",
|
|
53
|
-
"@wordpress/hooks": "^4.28.0",
|
|
54
|
-
"@wordpress/html-entities": "^4.28.0",
|
|
55
|
-
"@wordpress/i18n": "^6.1.0",
|
|
56
|
-
"@wordpress/icons": "^10.28.0",
|
|
57
|
-
"@wordpress/interface": "^9.13.0",
|
|
58
|
-
"@wordpress/keyboard-shortcuts": "^5.28.0",
|
|
59
|
-
"@wordpress/keycodes": "^4.28.0",
|
|
60
|
-
"@wordpress/media-utils": "^5.28.0",
|
|
61
|
-
"@wordpress/notices": "^5.28.0",
|
|
62
|
-
"@wordpress/patterns": "^2.28.0",
|
|
63
|
-
"@wordpress/plugins": "^7.28.0",
|
|
64
|
-
"@wordpress/preferences": "^4.28.0",
|
|
65
|
-
"@wordpress/private-apis": "^1.28.0",
|
|
66
|
-
"@wordpress/reusable-blocks": "^5.28.0",
|
|
67
|
-
"@wordpress/rich-text": "^7.28.0",
|
|
68
|
-
"@wordpress/server-side-render": "^6.4.0",
|
|
69
|
-
"@wordpress/url": "^4.28.0",
|
|
70
|
-
"@wordpress/warning": "^3.28.0",
|
|
71
|
-
"@wordpress/wordcount": "^4.28.0",
|
|
37
|
+
"@wordpress/a11y": "^4.28.1-next.0f6f9d12c.0",
|
|
38
|
+
"@wordpress/api-fetch": "^7.28.1-next.0f6f9d12c.0",
|
|
39
|
+
"@wordpress/blob": "^4.28.1-next.0f6f9d12c.0",
|
|
40
|
+
"@wordpress/block-editor": "^15.1.1-next.0f6f9d12c.0",
|
|
41
|
+
"@wordpress/blocks": "^15.1.1-next.0f6f9d12c.0",
|
|
42
|
+
"@wordpress/commands": "^1.28.1-next.0f6f9d12c.0",
|
|
43
|
+
"@wordpress/components": "^30.2.1-next.0f6f9d12c.0",
|
|
44
|
+
"@wordpress/compose": "^7.28.1-next.0f6f9d12c.0",
|
|
45
|
+
"@wordpress/core-data": "^7.28.1-next.0f6f9d12c.0",
|
|
46
|
+
"@wordpress/data": "^10.28.1-next.0f6f9d12c.0",
|
|
47
|
+
"@wordpress/dataviews": "^7.0.1-next.0f6f9d12c.0",
|
|
48
|
+
"@wordpress/date": "^5.28.1-next.0f6f9d12c.0",
|
|
49
|
+
"@wordpress/deprecated": "^4.28.1-next.0f6f9d12c.0",
|
|
50
|
+
"@wordpress/dom": "^4.28.1-next.0f6f9d12c.0",
|
|
51
|
+
"@wordpress/element": "^6.28.1-next.0f6f9d12c.0",
|
|
52
|
+
"@wordpress/fields": "^0.20.1-next.0f6f9d12c.0",
|
|
53
|
+
"@wordpress/hooks": "^4.28.1-next.0f6f9d12c.0",
|
|
54
|
+
"@wordpress/html-entities": "^4.28.1-next.0f6f9d12c.0",
|
|
55
|
+
"@wordpress/i18n": "^6.1.1-next.0f6f9d12c.0",
|
|
56
|
+
"@wordpress/icons": "^10.28.2-next.0f6f9d12c.0",
|
|
57
|
+
"@wordpress/interface": "^9.13.1-next.0f6f9d12c.0",
|
|
58
|
+
"@wordpress/keyboard-shortcuts": "^5.28.1-next.0f6f9d12c.0",
|
|
59
|
+
"@wordpress/keycodes": "^4.28.1-next.0f6f9d12c.0",
|
|
60
|
+
"@wordpress/media-utils": "^5.28.1-next.0f6f9d12c.0",
|
|
61
|
+
"@wordpress/notices": "^5.28.1-next.0f6f9d12c.0",
|
|
62
|
+
"@wordpress/patterns": "^2.28.1-next.0f6f9d12c.0",
|
|
63
|
+
"@wordpress/plugins": "^7.28.1-next.0f6f9d12c.0",
|
|
64
|
+
"@wordpress/preferences": "^4.28.1-next.0f6f9d12c.0",
|
|
65
|
+
"@wordpress/private-apis": "^1.28.1-next.0f6f9d12c.0",
|
|
66
|
+
"@wordpress/reusable-blocks": "^5.28.1-next.0f6f9d12c.0",
|
|
67
|
+
"@wordpress/rich-text": "^7.28.1-next.0f6f9d12c.0",
|
|
68
|
+
"@wordpress/server-side-render": "^6.4.1-next.0f6f9d12c.0",
|
|
69
|
+
"@wordpress/url": "^4.28.1-next.0f6f9d12c.0",
|
|
70
|
+
"@wordpress/warning": "^3.28.1-next.0f6f9d12c.0",
|
|
71
|
+
"@wordpress/wordcount": "^4.28.1-next.0f6f9d12c.0",
|
|
72
72
|
"change-case": "^4.1.2",
|
|
73
73
|
"client-zip": "^2.4.5",
|
|
74
74
|
"clsx": "^2.1.1",
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"publishConfig": {
|
|
89
89
|
"access": "public"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "7d4f4367e2f76deddf4a09b540e6b2f9f4c3fe9f"
|
|
92
92
|
}
|
|
@@ -161,7 +161,7 @@ export default function DocumentBar( props ) {
|
|
|
161
161
|
</MotionButton>
|
|
162
162
|
) }
|
|
163
163
|
</AnimatePresence>
|
|
164
|
-
{ ! isTemplate && isTemplatePreview && (
|
|
164
|
+
{ ! isTemplate && isTemplatePreview && ! hasBackButton && (
|
|
165
165
|
<BlockIcon
|
|
166
166
|
icon={ layout }
|
|
167
167
|
className="editor-document-bar__icon-layout"
|
package/src/hooks/index.js
CHANGED