From 2c2c174874924f5a464d4ec720267a4950d51fde Mon Sep 17 00:00:00 2001 From: keiko233 Date: Sat, 21 Oct 2023 16:47:39 +0800 Subject: [PATCH] feat: profile-viewer: handleOk with loading state --- src/components/profile/profile-viewer.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/profile/profile-viewer.tsx b/src/components/profile/profile-viewer.tsx index f928053..cdb190e 100644 --- a/src/components/profile/profile-viewer.tsx +++ b/src/components/profile/profile-viewer.tsx @@ -40,6 +40,7 @@ export const ProfileViewer = forwardRef( const { t } = useTranslation(); const [open, setOpen] = useState(false); const [openType, setOpenType] = useState<"new" | "edit">("new"); + const [loading, setLoading] = useState(false); // file input const fileDataRef = useRef(null); @@ -87,6 +88,7 @@ export const ProfileViewer = forwardRef( const handleOk = useLockFn( formIns.handleSubmit(async (form) => { + setLoading(true); try { if (!form.type) throw new Error("`Type` should not be null"); if (form.type === "remote" && !form.url) { @@ -111,11 +113,13 @@ export const ProfileViewer = forwardRef( await patchProfile(form.uid, item); } setOpen(false); + setLoading(false); setTimeout(() => formIns.reset(), 500); fileDataRef.current = null; props.onChange(); } catch (err: any) { Notice.error(err.message || err.toString()); + setLoading(false); } }) ); @@ -149,6 +153,7 @@ export const ProfileViewer = forwardRef( onClose={handleClose} onCancel={handleClose} onOk={handleOk} + loading={loading} >