mirror of
https://github.com/supabase/supabase.git
synced 2026-06-14 14:08:31 +08:00
105 lines
2.5 KiB
TypeScript
105 lines
2.5 KiB
TypeScript
import { useMutation } from '@tanstack/react-query'
|
|
import { toast } from 'sonner'
|
|
|
|
// End of third-party imports
|
|
|
|
import type { ExtendedSupportCategories } from '@/components/interfaces/Support/Support.constants'
|
|
import { handleError, post } from '@/data/fetchers'
|
|
import type { ResponseError, UseCustomMutationOptions } from '@/types'
|
|
|
|
export type sendSupportTicketVariables = {
|
|
subject: string
|
|
message: string
|
|
category: ExtendedSupportCategories
|
|
severity: string
|
|
projectRef?: string
|
|
organizationSlug?: string
|
|
library?: string
|
|
affectedServices?: string
|
|
browserInformation?: string
|
|
allowSupportAccess: boolean
|
|
siteUrl?: string
|
|
additionalRedirectUrls?: string
|
|
dashboardSentryIssueId?: string
|
|
dashboardLogs?: string
|
|
dashboardStudioVersion?: string
|
|
}
|
|
|
|
export async function sendSupportTicket({
|
|
subject,
|
|
message,
|
|
category,
|
|
severity,
|
|
projectRef,
|
|
organizationSlug,
|
|
library,
|
|
affectedServices,
|
|
browserInformation,
|
|
allowSupportAccess,
|
|
siteUrl,
|
|
additionalRedirectUrls,
|
|
dashboardSentryIssueId,
|
|
dashboardLogs,
|
|
dashboardStudioVersion,
|
|
}: 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,
|
|
dashboardSentryIssueId,
|
|
dashboardLogs,
|
|
dashboardStudioVersion,
|
|
},
|
|
})
|
|
|
|
if (error) {
|
|
handleError(error, {
|
|
alwaysCapture: true,
|
|
sentryContext: {
|
|
tags: {
|
|
dashboardSupportForm: true,
|
|
},
|
|
},
|
|
})
|
|
}
|
|
return data
|
|
}
|
|
|
|
type sendSupportTicketData = Awaited<ReturnType<typeof sendSupportTicket>>
|
|
|
|
export const useSendSupportTicketMutation = ({
|
|
onSuccess,
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseCustomMutationOptions<sendSupportTicketData, ResponseError, sendSupportTicketVariables>,
|
|
'mutationFn'
|
|
> = {}) => {
|
|
return useMutation<sendSupportTicketData, ResponseError, sendSupportTicketVariables>({
|
|
mutationFn: (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,
|
|
})
|
|
}
|