mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 02:54:28 +08:00
* Update the design of the sonner toasts. Add the close button by default. * Migrate studio and www apps to use the SonnerToaster. * Migrate all toasts from studio. * Migrate all leftover toasts in studio. * Add a new toast component with progress. Use it in studio. * Migrate the design-system app. * Refactor the consent toast to use sonner. * Switch docs to use the new sonner toasts. * Remove toast examples from the design-system app. * Remove all toast-related components and old code. * Fix the progress bar in the toast progress component. Also make the bottom components vertically centered. * Fix the width of the toast progress. * Use text-foreground-lighter instead of muted for ToastProgress text * Rename ToastProgress to SonnerProgress. * Shorten the text in sonner progress. * Use the correct classes for the close button. Add a const var for the default toast duration. Remove the custom width class from sonner. * Set the position for all progress toasts to bottom right. Set the duration for all toasts to the default (when reusing a toast id from loading/progress toast, the duration is set to infinity). * Fix the playwright tests. * Refactor imports to use ui instead of @ui. * Change all imports of react-hot-toast with sonner. These components were merged since the last commit to this branch. * Remove react-hot-toast lib. --------- Co-authored-by: Joshen Lim <joshenlimek@gmail.com> Co-authored-by: Jonathan Summers-Muir <MildTomato@users.noreply.github.com>
54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
import { useParams } from 'common'
|
|
import { toast } from 'sonner'
|
|
import { Modal } from 'ui'
|
|
|
|
import { useDisableReadOnlyModeMutation } from 'data/config/project-temp-disable-read-only-mutation'
|
|
|
|
interface ConfirmDisableReadOnlyModeModalProps {
|
|
visible: boolean
|
|
onClose: () => void
|
|
}
|
|
|
|
const ConfirmDisableReadOnlyModeModal = ({
|
|
visible,
|
|
onClose,
|
|
}: ConfirmDisableReadOnlyModeModalProps) => {
|
|
const { ref } = useParams()
|
|
const { mutate: disableReadOnlyMode, isLoading } = useDisableReadOnlyModeMutation({
|
|
onSuccess: () => {
|
|
toast.success('Successfully disabled read-only mode for 15 minutes')
|
|
onClose()
|
|
},
|
|
})
|
|
|
|
return (
|
|
<Modal
|
|
alignFooter="right"
|
|
visible={visible}
|
|
onCancel={onClose}
|
|
loading={isLoading}
|
|
confirmText="Disable read-only mode"
|
|
header="Confirm to temporarily disable read-only mode"
|
|
onConfirm={() => {
|
|
if (!ref) return console.error('Project ref is required')
|
|
disableReadOnlyMode({ projectRef: ref })
|
|
}}
|
|
>
|
|
<Modal.Content className="space-y-2">
|
|
<p className="text-sm">
|
|
This will temporarily allow writes to your database for the{' '}
|
|
<span className="text-amber-900">next 15 minutes</span>, during which you can reduce your
|
|
database size. After deleting data, you should run a vacuum to reclaim as much space as
|
|
possible.
|
|
</p>
|
|
<p className="text-sm">
|
|
If your database size has not been sufficiently reduced after 15 minutes, read-only mode
|
|
will be toggled back on. Otherwise, it will stay disabled.
|
|
</p>
|
|
</Modal.Content>
|
|
</Modal>
|
|
)
|
|
}
|
|
|
|
export default ConfirmDisableReadOnlyModeModal
|