Files
supabase/apps/studio/data/telemetry/send-groups-identify-mutation.ts
Alaister Young 2b419c70a1 chore: add usercentrics for consent management (#35384)
* chore: add usercentrics for consent management

* client component to make next.js happy

* address feedback

* move consent state to common

* fix import

* ensure page events are sent correctly

* add feature flag provider to ui library site

* fix ui lib 500 error

* skip in test env

---------

Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
Co-authored-by: Jordi Enric <jordi.err@gmail.com>
2025-05-05 13:18:48 +08:00

51 lines
1.5 KiB
TypeScript

import { useMutation, UseMutationOptions } from '@tanstack/react-query'
import { components } from 'api-types'
import { hasConsented } from 'common'
import { handleError, post } from 'data/fetchers'
import { IS_PLATFORM } from 'lib/constants'
import type { ResponseError } from 'types'
export type SendGroupsIdentifyVariables = components['schemas']['TelemetryGroupsIdentityBody']
export async function sendGroupsIdentify({ body }: { body: SendGroupsIdentifyVariables }) {
const consent = hasConsented()
if (!consent || !IS_PLATFORM) return undefined
const { data, error } = await post(`/platform/telemetry/groups/identify`, {
body,
credentials: 'include',
})
if (error) handleError(error)
return data
}
type SendGroupsIdentifyData = Awaited<ReturnType<typeof sendGroupsIdentify>>
export const useSendGroupsIdentifyMutation = ({
onSuccess,
onError,
...options
}: Omit<
UseMutationOptions<SendGroupsIdentifyData, ResponseError, SendGroupsIdentifyVariables>,
'mutationFn'
> = {}) => {
return useMutation<SendGroupsIdentifyData, ResponseError, SendGroupsIdentifyVariables>(
(vars) => sendGroupsIdentify({ body: vars }),
{
async onSuccess(data, variables, context) {
await onSuccess?.(data, variables, context)
},
async onError(data, variables, context) {
if (onError === undefined) {
console.error(`Failed to send Telemetry groups identify: ${data.message}`)
} else {
onError(data, variables, context)
}
},
...options,
}
)
}