mirror of
https://github.com/supabase/supabase.git
synced 2026-05-27 14:58:19 +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>
67 lines
1.9 KiB
TypeScript
67 lines
1.9 KiB
TypeScript
import { useMutation, UseMutationOptions, useQueryClient } from '@tanstack/react-query'
|
|
import { toast } from 'sonner'
|
|
|
|
import { del, handleError } from 'data/fetchers'
|
|
import type { ResponseError } from 'types'
|
|
import { subscriptionKeys } from './keys'
|
|
import type { AddonVariantId } from './types'
|
|
|
|
export type ProjectAddonRemoveVariables = {
|
|
projectRef: string
|
|
variant: AddonVariantId
|
|
}
|
|
|
|
export async function removeSubscriptionAddon({
|
|
projectRef,
|
|
variant,
|
|
}: ProjectAddonRemoveVariables) {
|
|
if (!projectRef) throw new Error('projectRef is required')
|
|
if (!variant) throw new Error('variant is required')
|
|
|
|
const { data, error } = await del(`/platform/projects/{ref}/billing/addons/{addon_variant}`, {
|
|
params: {
|
|
path: {
|
|
ref: projectRef,
|
|
addon_variant: variant,
|
|
},
|
|
},
|
|
})
|
|
|
|
if (error) handleError(error)
|
|
return data
|
|
}
|
|
|
|
type ProjectAddonRemoveData = Awaited<ReturnType<typeof removeSubscriptionAddon>>
|
|
|
|
export const useProjectAddonRemoveMutation = ({
|
|
onSuccess,
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseMutationOptions<ProjectAddonRemoveData, ResponseError, ProjectAddonRemoveVariables>,
|
|
'mutationFn'
|
|
> = {}) => {
|
|
const queryClient = useQueryClient()
|
|
|
|
return useMutation<ProjectAddonRemoveData, ResponseError, ProjectAddonRemoveVariables>(
|
|
(vars) => removeSubscriptionAddon(vars),
|
|
{
|
|
async onSuccess(data, variables, context) {
|
|
const { projectRef } = variables
|
|
// [Joshen] Only invalidate addons, not subscriptions, as AddOn section in
|
|
// subscription page is using AddOn react query
|
|
await queryClient.invalidateQueries(subscriptionKeys.addons(projectRef))
|
|
await onSuccess?.(data, variables, context)
|
|
},
|
|
async onError(data, variables, context) {
|
|
if (onError === undefined) {
|
|
toast.error(`Failed to remove addon: ${data.message}`)
|
|
} else {
|
|
onError(data, variables, context)
|
|
}
|
|
},
|
|
...options,
|
|
}
|
|
)
|
|
}
|