diff --git a/apps/comments-ui/src/components/Form.js b/apps/comments-ui/src/components/Form.js index d8bb85e108..2ffb7d10d7 100644 --- a/apps/comments-ui/src/components/Form.js +++ b/apps/comments-ui/src/components/Form.js @@ -14,6 +14,9 @@ const Form = (props) => { const formEl = useRef(null); const [progress, setProgress] = useState('default'); + // Prevent closing on blur (required when showing name dialog) + const [preventClosing, setPreventClosing] = useState(false); + const {comment, commentsCount} = props; const memberName = (props.isEdit ? comment.member.name : member.name); // const memberBio = false; // TODO: needed for bio to be wired up @@ -81,11 +84,17 @@ const Form = (props) => { const onFormFocus = useCallback(() => { if (!memberName && !props.isEdit) { + setPreventClosing(true); editor.commands.blur(); dispatchAction('openPopup', { type: 'addDetailsDialog', - callback: () => { - editor.commands.focus(); + callback: (succeeded) => { + if (succeeded) { + editor.commands.focus(); + } else { + props.close(); + } + setPreventClosing(false); } }); } else { @@ -152,7 +161,7 @@ const Form = (props) => { editor.on('blur', () => { if (editor?.isEmpty) { setFormOpen(false); - if (props.isReply && props.close) { + if (props.isReply && props.close && !preventClosing) { // TODO: we cannot toggle the form when this happens, because when the member doesn't have a name we'll always loose focus to input the name... // Need to find a different way for this behaviour props.close(); @@ -165,7 +174,7 @@ const Form = (props) => { editor?.off('focus'); editor?.off('blur'); }; - }, [editor, props, onFormFocus]); + }, [editor, props, onFormFocus, preventClosing]); const submitForm = async (event) => { event.preventDefault(); @@ -279,6 +288,9 @@ const Form = (props) => { const shouldFormBeReduced = (isMobile() && props.isReply) || (isMobile() && props.isEdit); + // Keep the form always open when replying or editing (hide on blur) + const isFormReallyOpen = props.isReply || props.isEdit || isFormOpen; + return ( <>