UNPKG

@wordpress/block-library

Version:
86 lines (85 loc) 2.74 kB
// packages/block-library/src/site-tagline/edit.js import clsx from "clsx"; import { useDispatch, useSelect } from "@wordpress/data"; import { store as coreStore } from "@wordpress/core-data"; import { AlignmentControl, useBlockProps, BlockControls, HeadingLevelDropdown, RichText } from "@wordpress/block-editor"; import { __ } from "@wordpress/i18n"; import { createBlock, getDefaultBlockName } from "@wordpress/blocks"; import { Fragment, jsx, jsxs } from "react/jsx-runtime"; function SiteTaglineEdit({ attributes, setAttributes, insertBlocksAfter }) { const { textAlign, level, levelOptions } = attributes; const { canUserEdit, tagline } = useSelect((select) => { const { canUser, getEntityRecord, getEditedEntityRecord } = select(coreStore); const canEdit = canUser("update", { kind: "root", name: "site" }); const settings = canEdit ? getEditedEntityRecord("root", "site") : {}; const readOnlySettings = getEntityRecord("root", "__unstableBase"); return { canUserEdit: canEdit, tagline: canEdit ? settings?.description : readOnlySettings?.description }; }, []); const TagName = level === 0 ? "p" : `h${level}`; const { editEntityRecord } = useDispatch(coreStore); function setTagline(newTagline) { editEntityRecord("root", "site", void 0, { description: newTagline }); } const blockProps = useBlockProps({ className: clsx({ [`has-text-align-${textAlign}`]: textAlign, "wp-block-site-tagline__placeholder": !canUserEdit && !tagline }) }); const siteTaglineContent = canUserEdit ? /* @__PURE__ */ jsx( RichText, { allowedFormats: [], onChange: setTagline, "aria-label": __("Site tagline text"), placeholder: __("Write site tagline\u2026"), tagName: TagName, value: tagline, disableLineBreaks: true, __unstableOnSplitAtEnd: () => insertBlocksAfter(createBlock(getDefaultBlockName())), ...blockProps } ) : /* @__PURE__ */ jsx(TagName, { ...blockProps, children: tagline || __("Site Tagline placeholder") }); return /* @__PURE__ */ jsxs(Fragment, { children: [ /* @__PURE__ */ jsxs(BlockControls, { group: "block", children: [ /* @__PURE__ */ jsx( HeadingLevelDropdown, { value: level, options: levelOptions, onChange: (newLevel) => setAttributes({ level: newLevel }) } ), /* @__PURE__ */ jsx( AlignmentControl, { onChange: (newAlign) => setAttributes({ textAlign: newAlign }), value: textAlign } ) ] }), siteTaglineContent ] }); } export { SiteTaglineEdit as default }; //# sourceMappingURL=edit.js.map