-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement progress dialog for forms (#223)
* feat: implement progress dialog for forms * fix: revert tailwind config * chore: add header for notes
- Loading branch information
Showing
13 changed files
with
399 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
import { toast } from "sonner"; | ||
import dynamic from "next/dynamic"; | ||
import { useEffect, useState } from "react"; | ||
import { | ||
AlertDialog, | ||
AlertDialogAction, | ||
AlertDialogContent, | ||
AlertDialogDescription, | ||
AlertDialogFooter, | ||
AlertDialogHeader, | ||
AlertDialogTitle, | ||
} from "@umamin/ui/components/alert-dialog"; | ||
import { Progress } from "@umamin/ui/components/progress"; | ||
|
||
const AdContainer = dynamic(() => import("@umamin/ui/ad")); | ||
|
||
type Props = { | ||
type: string; | ||
description: string; | ||
open: boolean; | ||
onProgressComplete?: () => void; | ||
// eslint-disable-next-line no-unused-vars | ||
onOpenChange: (open: boolean) => void; | ||
}; | ||
|
||
export function ProgressDialog({ | ||
type, | ||
description, | ||
open, | ||
onOpenChange, | ||
onProgressComplete, | ||
}: Props) { | ||
const [progress, setProgress] = useState(0); | ||
|
||
useEffect(() => { | ||
if (open) { | ||
setProgress(0); | ||
|
||
const duration = 5000; | ||
const intervalTime = 100; | ||
const totalIntervals = duration / intervalTime; | ||
let currentInterval = 0; | ||
|
||
const interval = setInterval(() => { | ||
currentInterval += 1; | ||
setProgress(Math.min(100, (currentInterval / totalIntervals) * 100)); | ||
|
||
if (currentInterval >= totalIntervals) { | ||
clearInterval(interval); | ||
toast.success(`${type} sent successfully`); | ||
|
||
if (onProgressComplete) { | ||
onProgressComplete(); | ||
} | ||
} | ||
}, intervalTime); | ||
|
||
return () => clearInterval(interval); | ||
} | ||
}, [open, type]); | ||
|
||
return ( | ||
<AlertDialog open={open} onOpenChange={onOpenChange}> | ||
<AlertDialogContent className="px-0 max-w-full"> | ||
<AlertDialogHeader className="px-4"> | ||
<AlertDialogTitle> | ||
{progress === 100 ? `${type} Sent` : `Sending ${type}`} | ||
</AlertDialogTitle> | ||
<AlertDialogDescription>{description}</AlertDialogDescription> | ||
</AlertDialogHeader> | ||
|
||
<AdContainer className="w-full" slotId="9163326848" /> | ||
|
||
<AlertDialogFooter className="px-4"> | ||
{progress !== 100 ? ( | ||
<Progress value={progress} className="h-2" /> | ||
) : ( | ||
<AlertDialogAction disabled={progress !== 100}> | ||
Continue | ||
</AlertDialogAction> | ||
)} | ||
</AlertDialogFooter> | ||
</AlertDialogContent> | ||
</AlertDialog> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.