@wordpress/editor
Version:
Enhanced block editor for WordPress posts.
174 lines (169 loc) • 6.41 kB
JavaScript
/**
* External dependencies
*/
import clsx from 'clsx';
/**
* WordPress dependencies
*/
import { __, isRTL } from '@wordpress/i18n';
import { useSelect, useDispatch } from '@wordpress/data';
import { Button, __experimentalText as Text, __unstableMotion as motion, __unstableAnimatePresence as AnimatePresence } from '@wordpress/components';
import { BlockIcon } from '@wordpress/block-editor';
import { chevronLeftSmall, chevronRightSmall } from '@wordpress/icons';
import { displayShortcut } from '@wordpress/keycodes';
import { store as coreStore } from '@wordpress/core-data';
import { store as commandsStore } from '@wordpress/commands';
import { useRef, useEffect } from '@wordpress/element';
import { useReducedMotion } from '@wordpress/compose';
import { decodeEntities } from '@wordpress/html-entities';
/**
* Internal dependencies
*/
import { TEMPLATE_POST_TYPES, GLOBAL_POST_TYPES } from '../../store/constants';
import { store as editorStore } from '../../store';
/** @typedef {import("@wordpress/components").IconType} IconType */
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
const MotionButton = motion(Button);
/**
* This component renders a navigation bar at the top of the editor. It displays the title of the current document,
* a back button (if applicable), and a command center button. It also handles different states of the document,
* such as "not found" or "unsynced".
*
* @example
* ```jsx
* <DocumentBar />
* ```
* @param {Object} props The component props.
* @param {string} props.title A title for the document, defaulting to the document or
* template title currently being edited.
* @param {IconType} props.icon An icon for the document, no default.
* (A default icon indicating the document post type is no longer used.)
*
* @return {JSX.Element} The rendered DocumentBar component.
*/
export default function DocumentBar(props) {
const {
postType,
postTypeLabel,
documentTitle,
isNotFound,
isUnsyncedPattern,
templateTitle,
onNavigateToPreviousEntityRecord
} = useSelect(select => {
const {
getCurrentPostType,
getCurrentPostId,
getEditorSettings,
__experimentalGetTemplateInfo: getTemplateInfo
} = select(editorStore);
const {
getEditedEntityRecord,
getPostType,
isResolving: isResolvingSelector
} = select(coreStore);
const _postType = getCurrentPostType();
const _postId = getCurrentPostId();
const _document = getEditedEntityRecord('postType', _postType, _postId);
const _templateInfo = getTemplateInfo(_document);
const _postTypeLabel = getPostType(_postType)?.labels?.singular_name;
return {
postType: _postType,
postTypeLabel: _postTypeLabel,
documentTitle: _document.title,
isNotFound: !_document && !isResolvingSelector('getEditedEntityRecord', 'postType', _postType, _postId),
isUnsyncedPattern: _document?.wp_pattern_sync_status === 'unsynced',
templateTitle: _templateInfo.title,
onNavigateToPreviousEntityRecord: getEditorSettings().onNavigateToPreviousEntityRecord
};
}, []);
const {
open: openCommandCenter
} = useDispatch(commandsStore);
const isReducedMotion = useReducedMotion();
const isTemplate = TEMPLATE_POST_TYPES.includes(postType);
const isGlobalEntity = GLOBAL_POST_TYPES.includes(postType);
const hasBackButton = !!onNavigateToPreviousEntityRecord;
const entityTitle = isTemplate ? templateTitle : documentTitle;
const title = props.title || entityTitle;
const icon = props.icon;
const mountedRef = useRef(false);
useEffect(() => {
mountedRef.current = true;
}, []);
return /*#__PURE__*/_jsxs("div", {
className: clsx('editor-document-bar', {
'has-back-button': hasBackButton,
'is-global': isGlobalEntity && !isUnsyncedPattern
}),
children: [/*#__PURE__*/_jsx(AnimatePresence, {
children: hasBackButton && /*#__PURE__*/_jsx(MotionButton, {
className: "editor-document-bar__back",
icon: isRTL() ? chevronRightSmall : chevronLeftSmall,
onClick: event => {
event.stopPropagation();
onNavigateToPreviousEntityRecord();
},
size: "compact",
initial: mountedRef.current ? {
opacity: 0,
transform: 'translateX(15%)'
} : false // Don't show entry animation when DocumentBar mounts.
,
animate: {
opacity: 1,
transform: 'translateX(0%)'
},
exit: {
opacity: 0,
transform: 'translateX(15%)'
},
transition: isReducedMotion ? {
duration: 0
} : undefined,
children: __('Back')
})
}), isNotFound ? /*#__PURE__*/_jsx(Text, {
children: __('Document not found')
}) : /*#__PURE__*/_jsxs(Button, {
className: "editor-document-bar__command",
onClick: () => openCommandCenter(),
size: "compact",
children: [/*#__PURE__*/_jsxs(motion.div, {
className: "editor-document-bar__title"
// Force entry animation when the back button is added or removed.
,
initial: mountedRef.current ? {
opacity: 0,
transform: hasBackButton ? 'translateX(15%)' : 'translateX(-15%)'
} : false // Don't show entry animation when DocumentBar mounts.
,
animate: {
opacity: 1,
transform: 'translateX(0%)'
},
transition: isReducedMotion ? {
duration: 0
} : undefined,
children: [icon && /*#__PURE__*/_jsx(BlockIcon, {
icon: icon
}), /*#__PURE__*/_jsxs(Text, {
size: "body",
as: "h1",
children: [/*#__PURE__*/_jsx("span", {
className: "editor-document-bar__post-title",
children: title ? decodeEntities(title) : __('No title')
}), postTypeLabel && !props.title && /*#__PURE__*/_jsx("span", {
className: "editor-document-bar__post-type-label",
children: '· ' + decodeEntities(postTypeLabel)
})]
})]
}, hasBackButton), /*#__PURE__*/_jsx("span", {
className: "editor-document-bar__shortcut",
children: displayShortcut.primary('k')
})]
})]
});
}
//# sourceMappingURL=index.js.map