feat: add file drag and drop
This commit is contained in:
parent
212415d5ef
commit
0e8a6abe82
@ -1703,6 +1703,11 @@ export default function Home() {
|
|||||||
onSubmit(e);
|
onSubmit(e);
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
onDrag={e => e.preventDefault()}
|
||||||
|
onDrop={e => {
|
||||||
|
e.preventDefault();
|
||||||
|
handleFileChange({ target: { files: e.dataTransfer?.files } } as React.ChangeEvent<HTMLInputElement>);
|
||||||
|
}}
|
||||||
className={`
|
className={`
|
||||||
${hasSubmitted ? 'fixed bottom-4 left-1/2 -translate-x-1/2 max-w-[90%] sm:max-w-2xl' : 'max-w-full'}
|
${hasSubmitted ? 'fixed bottom-4 left-1/2 -translate-x-1/2 max-w-[90%] sm:max-w-2xl' : 'max-w-full'}
|
||||||
${attachments.length > 0 || uploadingAttachments.length > 0 ? 'rounded-2xl' : 'rounded-full'}
|
${attachments.length > 0 || uploadingAttachments.length > 0 ? 'rounded-2xl' : 'rounded-full'}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user