import { h } from 'preact'; import PropTypes from 'prop-types'; import { useLayoutEffect, useRef } from 'preact/hooks'; import { Toolbar } from './Toolbar'; import { handleImagePasted } from './pasteImageHelpers'; import { handleImageDrop, handleImageFailure, onDragOver, onDragExit, } from './dragAndDropHelpers'; import { usePasteImage } from '@utilities/pasteImage'; import { useDragAndDrop } from '@utilities/dragAndDrop'; import { fetchSearch } from '@utilities/search'; import { MentionAutocompleteTextArea } from '@crayons/MentionAutocompleteTextArea'; function handleImageSuccess(textAreaRef) { return function (response) { // Function is within the component to be able to access // textarea ref. const editableBodyElement = textAreaRef.current; const { links } = response; const markdownImageLink = `![Image description](${links[0]})\n`; const { selectionStart, selectionEnd, value } = editableBodyElement; const before = value.substring(0, selectionStart); const after = value.substring(selectionEnd, value.length); editableBodyElement.value = `${before + markdownImageLink} ${after}`; editableBodyElement.selectionStart = selectionStart + markdownImageLink.length; editableBodyElement.selectionEnd = editableBodyElement.selectionStart; // Dispatching a new event so that linkstate, https://github.com/developit/linkstate, // the function used to create the onChange prop gets called correctly. editableBodyElement.dispatchEvent(new Event('input')); }; } export const EditorBody = ({ onChange, defaultValue, switchHelpContext, version, }) => { const textAreaRef = useRef(null); const { setElement } = useDragAndDrop({ onDrop: handleImageDrop( handleImageSuccess(textAreaRef), handleImageFailure, ), onDragOver, onDragExit, }); const setPasteElement = usePasteImage({ onPaste: handleImagePasted( handleImageSuccess(textAreaRef), handleImageFailure, ), }); useLayoutEffect(() => { if (textAreaRef.current) { setElement(textAreaRef.current); setPasteElement(textAreaRef.current); } }); return (
fetchSearch('usernames', { username })} autoResize onChange={onChange} onFocus={switchHelpContext} aria-label="Post Content" name="body_markdown" id="article_body_markdown" defaultValue={defaultValue} placeholder="Write your post content here..." className="crayons-textfield crayons-textfield--ghost crayons-article-form__body__field ff-monospace fs-l h-100" />
); }; EditorBody.propTypes = { onChange: PropTypes.func.isRequired, defaultValue: PropTypes.string.isRequired, switchHelpContext: PropTypes.func.isRequired, version: PropTypes.string.isRequired, }; EditorBody.displayName = 'EditorBody';