Files
supabase/apps/studio/data/projects/project-pause-mutation.ts
Ivan Vasilov 436bdb10ae chore: Move the studio app to apps/studio (#18915)
* Move all studio files from /studio to /apps/studio.

* Move studio specific prettier ignores.

* Fix the ui references from studio.

* Fix the css imports.

* Fix all package.json issues.

* Fix the prettier setup for the studio app.

* Add .turbo folder to prettierignore.

* Fix the github workflows.
2023-11-15 12:38:55 +01:00

46 lines
1.2 KiB
TypeScript

import { useMutation, UseMutationOptions } from '@tanstack/react-query'
import { toast } from 'react-hot-toast'
import { post } from 'data/fetchers'
import { ResponseError } from 'types'
export type ProjectPauseVariables = {
ref: string
}
export async function pauseProject({ ref }: ProjectPauseVariables) {
const { data, error } = await post('/platform/projects/{ref}/pause', {
params: { path: { ref } },
})
if (error) throw error
return data
}
type ProjectPauseData = Awaited<ReturnType<typeof pauseProject>>
export const useProjectPauseMutation = ({
onSuccess,
onError,
...options
}: Omit<
UseMutationOptions<ProjectPauseData, ResponseError, ProjectPauseVariables>,
'mutationFn'
> = {}) => {
return useMutation<ProjectPauseData, ResponseError, ProjectPauseVariables>(
(vars) => pauseProject(vars),
{
async onSuccess(data, variables, context) {
await onSuccess?.(data, variables, context)
},
async onError(data, variables, context) {
if (onError === undefined) {
toast.error(`Failed to pause project: ${data.message}`)
} else {
onError(data, variables, context)
}
},
...options,
}
)
}