Files
supabase/apps/studio/data/feedback/exit-survey-send.ts
Joshen Lim e539b892a6 Chore/more refactoring of data fetchers methods (#33553)
* Update postgres-service-status-query, password-strength, and free-project-limit-check-query

* Update exit-survey-send

* Update project-postgrest-config-query

* Update project-disk-resize-mutation

* Update project-update-mutation

* Update project-postgrest-config-update-mutation

* Update organization-audit-logs-query

* Fix types

* Update bucket-object-download-mutation

* Update organization-member-delete-invitation

* remove console log

* Add integer validation for disk size (enforced on the API, but lacking client side validation)

* Fix audit logs
2025-02-13 13:34:12 +08:00

58 lines
1.5 KiB
TypeScript

import { useMutation, UseMutationOptions } from '@tanstack/react-query'
import { toast } from 'sonner'
import { handleError, post } from 'data/fetchers'
import type { ResponseError } from 'types'
export type SendDowngradeFeedbackVariables = {
projectRef?: string
orgSlug?: string
reasons: string
message: string
exitAction: 'downgrade' | 'delete'
}
export async function sendDowngradeFeedback({
projectRef,
orgSlug,
reasons,
message,
exitAction,
}: SendDowngradeFeedbackVariables) {
const { data, error } = await post('/platform/feedback/downgrade', {
body: {
...(projectRef !== undefined && { projectRef }),
...(orgSlug !== undefined && { orgSlug }),
reasons,
additionalFeedback: message,
exitAction,
},
})
if (error) handleError(error)
return data
}
type SendDowngradeFeedbackData = Awaited<ReturnType<typeof sendDowngradeFeedback>>
export const useSendDowngradeFeedbackMutation = ({
onError,
...options
}: Omit<
UseMutationOptions<SendDowngradeFeedbackData, ResponseError, SendDowngradeFeedbackVariables>,
'mutationFn'
> = {}) => {
return useMutation<SendDowngradeFeedbackData, ResponseError, SendDowngradeFeedbackVariables>(
(vars) => sendDowngradeFeedback(vars),
{
async onError(data, variables, context) {
if (onError === undefined) {
toast.error(`Failed to submit exit survey: ${data.message}`)
} else {
onError(data, variables, context)
}
},
...options,
}
)
}