UNPKG

@wordpress/block-library

Version:
197 lines (195 loc) 5.59 kB
/** * External dependencies */ import clsx from 'clsx'; /** * WordPress dependencies */ import { InspectorControls, useBlockProps, __experimentalUseBorderProps as useBorderProps } from '@wordpress/block-editor'; import { PanelBody, RangeControl, ResizableBox, ToggleControl } from '@wordpress/components'; import { __, isRTL } from '@wordpress/i18n'; import { addQueryArgs, removeQueryArgs } from '@wordpress/url'; /** * Internal dependencies */ import { useUserAvatar, useCommentAvatar } from './hooks'; import UserControl from './user-control'; import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime"; const AvatarInspectorControls = ({ setAttributes, avatar, attributes, selectUser }) => /*#__PURE__*/_jsx(InspectorControls, { children: /*#__PURE__*/_jsxs(PanelBody, { title: __('Settings'), children: [/*#__PURE__*/_jsx(RangeControl, { __nextHasNoMarginBottom: true, __next40pxDefaultSize: true, label: __('Image size'), onChange: newSize => setAttributes({ size: newSize }), min: avatar.minSize, max: avatar.maxSize, initialPosition: attributes?.size, value: attributes?.size }), /*#__PURE__*/_jsx(ToggleControl, { __nextHasNoMarginBottom: true, label: __('Link to user profile'), onChange: () => setAttributes({ isLink: !attributes.isLink }), checked: attributes.isLink }), attributes.isLink && /*#__PURE__*/_jsx(ToggleControl, { __nextHasNoMarginBottom: true, label: __('Open in new tab'), onChange: value => setAttributes({ linkTarget: value ? '_blank' : '_self' }), checked: attributes.linkTarget === '_blank' }), selectUser && /*#__PURE__*/_jsx(UserControl, { value: attributes?.userId, onChange: value => { setAttributes({ userId: value }); } })] }) }); const ResizableAvatar = ({ setAttributes, attributes, avatar, blockProps, isSelected }) => { const borderProps = useBorderProps(attributes); const doubledSizedSrc = addQueryArgs(removeQueryArgs(avatar?.src, ['s']), { s: attributes?.size * 2 }); return /*#__PURE__*/_jsx("div", { ...blockProps, children: /*#__PURE__*/_jsx(ResizableBox, { size: { width: attributes.size, height: attributes.size }, showHandle: isSelected, onResizeStop: (event, direction, elt, delta) => { setAttributes({ size: parseInt(attributes.size + (delta.height || delta.width), 10) }); }, lockAspectRatio: true, enable: { top: false, right: !isRTL(), bottom: true, left: isRTL() }, minWidth: avatar.minSize, maxWidth: avatar.maxSize, children: /*#__PURE__*/_jsx("img", { src: doubledSizedSrc, alt: avatar.alt, className: clsx('avatar', 'avatar-' + attributes.size, 'photo', 'wp-block-avatar__image', borderProps.className), style: borderProps.style }) }) }); }; const CommentEdit = ({ attributes, context, setAttributes, isSelected }) => { const { commentId } = context; const blockProps = useBlockProps(); const avatar = useCommentAvatar({ commentId }); return /*#__PURE__*/_jsxs(_Fragment, { children: [/*#__PURE__*/_jsx(AvatarInspectorControls, { avatar: avatar, setAttributes: setAttributes, attributes: attributes, selectUser: false }), attributes.isLink ? /*#__PURE__*/_jsx("a", { href: "#avatar-pseudo-link", className: "wp-block-avatar__link", onClick: event => event.preventDefault(), children: /*#__PURE__*/_jsx(ResizableAvatar, { attributes: attributes, avatar: avatar, blockProps: blockProps, isSelected: isSelected, setAttributes: setAttributes }) }) : /*#__PURE__*/_jsx(ResizableAvatar, { attributes: attributes, avatar: avatar, blockProps: blockProps, isSelected: isSelected, setAttributes: setAttributes })] }); }; const UserEdit = ({ attributes, context, setAttributes, isSelected }) => { const { postId, postType } = context; const avatar = useUserAvatar({ userId: attributes?.userId, postId, postType }); const blockProps = useBlockProps(); return /*#__PURE__*/_jsxs(_Fragment, { children: [/*#__PURE__*/_jsx(AvatarInspectorControls, { selectUser: true, attributes: attributes, avatar: avatar, setAttributes: setAttributes }), attributes.isLink ? /*#__PURE__*/_jsx("a", { href: "#avatar-pseudo-link", className: "wp-block-avatar__link", onClick: event => event.preventDefault(), children: /*#__PURE__*/_jsx(ResizableAvatar, { attributes: attributes, avatar: avatar, blockProps: blockProps, isSelected: isSelected, setAttributes: setAttributes }) }) : /*#__PURE__*/_jsx(ResizableAvatar, { attributes: attributes, avatar: avatar, blockProps: blockProps, isSelected: isSelected, setAttributes: setAttributes })] }); }; export default function Edit(props) { // Don't show the Comment Edit controls if we have a comment ID set, or if we're in the Site Editor (where it is `null`). if (props?.context?.commentId || props?.context?.commentId === null) { return /*#__PURE__*/_jsx(CommentEdit, { ...props }); } return /*#__PURE__*/_jsx(UserEdit, { ...props }); } //# sourceMappingURL=edit.js.map