mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 16:04:27 +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>
97 lines
2.7 KiB
TypeScript
97 lines
2.7 KiB
TypeScript
import { PermissionAction } from '@supabase/shared-types/out/constants'
|
|
import { Mail } from 'lucide-react'
|
|
import { toast } from 'sonner'
|
|
|
|
import { useParams } from 'common'
|
|
import { useUserInviteMutation } from 'data/auth/user-invite-mutation'
|
|
import { useCheckPermissions } from 'hooks/misc/useCheckPermissions'
|
|
import { Button, Form, Input, Modal } from 'ui'
|
|
|
|
export type InviteUserModalProps = {
|
|
visible: boolean
|
|
setVisible: (visible: boolean) => void
|
|
}
|
|
|
|
const InviteUserModal = ({ visible, setVisible }: InviteUserModalProps) => {
|
|
const { ref: projectRef } = useParams()
|
|
|
|
const handleToggle = () => setVisible(!visible)
|
|
const { mutate: inviteUser, isLoading: isInviting } = useUserInviteMutation({
|
|
onSuccess: (_, variables) => {
|
|
toast.success(`Sent invite email to ${variables.email}`)
|
|
setVisible(false)
|
|
},
|
|
})
|
|
const canInviteUsers = useCheckPermissions(PermissionAction.AUTH_EXECUTE, 'invite_user')
|
|
|
|
const validate = (values: any) => {
|
|
const errors: any = {}
|
|
const emailValidateRegex =
|
|
/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/
|
|
|
|
if (values.email.length === 0) {
|
|
errors.email = 'Please enter a valid email'
|
|
} else if (!emailValidateRegex.test(values.email)) {
|
|
errors.email = `${values.email} is an invalid email`
|
|
}
|
|
|
|
return errors
|
|
}
|
|
|
|
const onInviteUser = async (values: any) => {
|
|
if (!projectRef) return console.error('Project ref is required')
|
|
inviteUser({ projectRef, email: values.email })
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<Modal
|
|
closable
|
|
hideFooter
|
|
size="small"
|
|
key="invite-user-modal"
|
|
visible={visible}
|
|
header="Invite a new user"
|
|
onCancel={handleToggle}
|
|
>
|
|
<Form
|
|
validateOnBlur={false}
|
|
initialValues={{ email: '' }}
|
|
validate={validate}
|
|
onSubmit={onInviteUser}
|
|
>
|
|
{() => (
|
|
<>
|
|
<Modal.Content>
|
|
<Input
|
|
id="email"
|
|
className="w-full"
|
|
label="User email"
|
|
icon={<Mail />}
|
|
type="email"
|
|
name="email"
|
|
placeholder="User email"
|
|
/>
|
|
</Modal.Content>
|
|
|
|
<Modal.Content>
|
|
<Button
|
|
block
|
|
size="small"
|
|
htmlType="submit"
|
|
loading={isInviting}
|
|
disabled={!canInviteUsers || isInviting}
|
|
>
|
|
Invite user
|
|
</Button>
|
|
</Modal.Content>
|
|
</>
|
|
)}
|
|
</Form>
|
|
</Modal>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default InviteUserModal
|