* 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>
51 lines
1.5 KiB
TypeScript
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,
|
|
}
|
|
)
|
|
}
|