mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 11:14:34 +08:00
* inited. added disk config to a new page * add instances * move moar * moved things around. billing badges updated. compute added * tidy * new components * form now dynamically updating itself * updated compute form. moved warning panels. added collapsible for advanced options * review dialog now only showing what is relevant * Update DiskManagementForm.tsx * compute sizes now a reccomendation * fix old form * started adding flags * removed unused code. fixed issue with IOPS price showing on smaller compute * moar clearning * IOPS logic wrong way round * type fixes * start adding better error handling * TIDY * moved everything to own file * tidy * fix hydration issue * moved some components around * clean up * inline errors * update form message * Update DiskManagementForm.tsx * error fields fixed. some formatting issues. nano added as an option * fix constants * add some plan restrictions * moar * units updated. labels updated * Update DiskManagement.schema.ts * fix a ton of type issues * text udpates * add panel to suggest switching to io2 * more notice board stuff * number formatting. moved a file * Update DiskManagementForm.tsx * remove console logs * upgrade comms. more type fixes * add empty states for the old areas * more links * updated some label issues * hide labels when chart is active * Update DiskManagement.utils.ts * Delete next-env.d.ts * Update DiskManagementForm.tsx * Update DiskManagement.schema.ts * text updates * Update DiskManagement.constants.tsx * Update next-env.d.ts * Update next-env.d.ts * Small clean uop * Clean up empty files * Clean up spelling * Clean up more * Fix typo in file name * Clean up import statements * Update DiskManagementForm.tsx * fix issues * Update ProjectLayout.tsx * Remove unused import * Fix * Address nit * Update database.tsx * remove supress toast * Update DiskManagement.schema.ts * Update database.tsx * change upgrade comms * Update DiskManagementPanelForm.tsx * fixes * fix button size on old form * Update DiskManagementForm.tsx * Update StorageTypeField.tsx * update labels on compute * dont show banner when infra is FLY * update comms. hide disk config for FLY * Fix TS * Last round of clean upo * fix message state * fix message * Fix TS * Update DiskManagement.utils.ts * fix errors * Update BillingChangeBadge.tsx * fixed some label issues --------- Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
72 lines
2.0 KiB
TypeScript
72 lines
2.0 KiB
TypeScript
import { useMutation, UseMutationOptions, useQueryClient } from '@tanstack/react-query'
|
|
import { toast } from 'sonner'
|
|
|
|
import { handleError, post } from 'data/fetchers'
|
|
import type { ResponseError } from 'types'
|
|
import { subscriptionKeys } from './keys'
|
|
import type { AddonVariantId, ProjectAddonType } from './types'
|
|
|
|
export type ProjectAddonUpdateVariables = {
|
|
projectRef?: string
|
|
variant: AddonVariantId
|
|
type: ProjectAddonType
|
|
suppressToast?: boolean
|
|
}
|
|
|
|
export async function updateSubscriptionAddon({
|
|
projectRef,
|
|
variant,
|
|
type,
|
|
}: ProjectAddonUpdateVariables) {
|
|
if (!projectRef) throw new Error('projectRef is required')
|
|
if (!variant) throw new Error('variant is required')
|
|
if (!type) throw new Error('type is required')
|
|
|
|
const { data, error } = await post(`/platform/projects/{ref}/billing/addons`, {
|
|
params: {
|
|
path: {
|
|
ref: projectRef,
|
|
},
|
|
},
|
|
body: {
|
|
addon_type: type,
|
|
addon_variant: variant,
|
|
},
|
|
})
|
|
|
|
if (error) handleError(error)
|
|
return data
|
|
}
|
|
|
|
type ProjectAddonUpdateData = Awaited<ReturnType<typeof updateSubscriptionAddon>>
|
|
|
|
export const useProjectAddonUpdateMutation = ({
|
|
onSuccess,
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseMutationOptions<ProjectAddonUpdateData, ResponseError, ProjectAddonUpdateVariables>,
|
|
'mutationFn'
|
|
> & { suppressToast?: boolean } = {}) => {
|
|
const queryClient = useQueryClient()
|
|
|
|
return useMutation<ProjectAddonUpdateData, ResponseError, ProjectAddonUpdateVariables>(
|
|
(vars) => updateSubscriptionAddon(vars),
|
|
{
|
|
async onSuccess(data, variables, context) {
|
|
const { projectRef } = variables
|
|
await queryClient.invalidateQueries(subscriptionKeys.addons(projectRef))
|
|
await onSuccess?.(data, variables, context)
|
|
},
|
|
async onError(data, variables, context) {
|
|
if (onError === undefined) {
|
|
toast.error(`Failed to update addon: ${data.message}`)
|
|
} else {
|
|
onError(data, variables, context)
|
|
}
|
|
},
|
|
...options,
|
|
}
|
|
)
|
|
}
|