Files
supabase/apps/studio/data/feedback/support-ticket-send.ts
2024-03-04 20:48:22 +08:00

86 lines
2.0 KiB
TypeScript

import { useMutation, UseMutationOptions } from '@tanstack/react-query'
import { toast } from 'react-hot-toast'
import { post } from 'data/fetchers'
import type { ResponseError } from 'types'
export type sendSupportTicketVariables = {
subject: string
message: string
category: string
severity: string
projectRef?: string
organizationSlug?: string
library?: string
affectedServices?: string
browserInformation?: string
allowSupportAccess: boolean
siteUrl?: string
additionalRedirectUrls?: string
}
export async function sendSupportTicket({
subject,
message,
category,
severity,
projectRef,
organizationSlug,
library,
affectedServices,
browserInformation,
allowSupportAccess,
siteUrl,
additionalRedirectUrls,
}: sendSupportTicketVariables) {
const { data, error } = await post('/platform/feedback/send', {
body: {
subject,
message,
category,
severity,
projectRef,
organizationSlug,
library,
verified: true,
tags: ['dashboard-support-form'],
siteUrl,
additionalRedirectUrls,
affectedServices,
browserInformation,
allowSupportAccess,
},
})
if (error) throw error
return data
}
type sendSupportTicketData = Awaited<ReturnType<typeof sendSupportTicket>>
export const useSendSupportTicketMutation = ({
onSuccess,
onError,
...options
}: Omit<
UseMutationOptions<sendSupportTicketData, ResponseError, sendSupportTicketVariables>,
'mutationFn'
> = {}) => {
return useMutation<sendSupportTicketData, ResponseError, sendSupportTicketVariables>(
(vars) => sendSupportTicket(vars),
{
async onSuccess(data, variables, context) {
await onSuccess?.(data, variables, context)
},
async onError(data, variables, context) {
if (onError === undefined) {
toast.error(`Failed to submit support ticket: ${data.message}`)
} else {
onError(data, variables, context)
}
},
...options,
}
)
}