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 ( <>
{ -mt-[12px] -mr-3 mb-10 -ml-[12px] rounded-md ${!commentsCount && !props.isEdit && !props.isReply && 'mt-0 ml-0 mr-0'} - ${isFormOpen ? 'cursor-default' : 'cursor-pointer'} + ${isFormReallyOpen ? 'cursor-default' : 'cursor-pointer'} ${(!props.isReply && !props.isEdit) && '-mt-[4px]'} ${(props.isReply || props.isEdit) && '-mt-[16px]'} ${shouldFormBeReduced && 'pl-1'} `}>
-
+
{ focus:outline-0 shadow-form hover:shadow-formxl dark:shadow-transparent ${commentsCount === 0 && 'placeholder:text-neutral-700'} - ${isFormOpen ? 'cursor-text min-h-[144px] pb-[68px] pt-2' : 'cursor-pointer overflow-hidden min-h-[48px] hover:border-slate-300'} + ${isFormReallyOpen ? 'cursor-text min-h-[144px] pb-[68px] pt-2' : 'cursor-pointer overflow-hidden min-h-[48px] hover:border-slate-300'} ${props.isEdit && 'cursor-text'} ${!memberName && 'pointer-events-none'} `}> @@ -346,7 +358,7 @@ const Form = (props) => {
+ ); diff --git a/apps/comments-ui/src/components/modals/AddDetailsDialog.js b/apps/comments-ui/src/components/modals/AddDetailsDialog.js index bb2217484d..6899f33c46 100644 --- a/apps/comments-ui/src/components/modals/AddDetailsDialog.js +++ b/apps/comments-ui/src/components/modals/AddDetailsDialog.js @@ -11,8 +11,9 @@ const AddNameDialog = (props) => { // const [bio, setBio] = useState(''); // TODO: needed for bio to be wired up const [error, setError] = useState({name: '', bio: ''}); - const close = () => { + const close = (succeeded) => { dispatchAction('closePopup'); + props.callback(succeeded); }; const submit = async () => { @@ -26,8 +27,7 @@ const AddNameDialog = (props) => { // bio // }); - props.callback(); - close(); + close(true); } else { setError({name: 'Enter your name'}); setName(''); @@ -126,7 +126,7 @@ const AddNameDialog = (props) => { Save - + close(false)} /> ); }; diff --git a/apps/comments-ui/src/components/modals/GenericDialog.js b/apps/comments-ui/src/components/modals/GenericDialog.js index 6a82550cbf..7c5042b9f6 100644 --- a/apps/comments-ui/src/components/modals/GenericDialog.js +++ b/apps/comments-ui/src/components/modals/GenericDialog.js @@ -9,6 +9,9 @@ const GenericDialog = (props) => { const close = (event) => { dispatchAction('closePopup'); + if (props.callback) { + props.callback(false); + } }; const stopPropagation = (event) => {