123456789101112131415161718192021222324252627282930313233343536 |
- import {useEffect} from 'react';
- import {Organization} from 'sentry/types';
- async function initSentryReplays() {
- const {SentryReplay} = await import('@sentry/replay');
- const replays = new SentryReplay({
- stickySession: true,
- });
- replays.setup();
- }
- /**
- * Load the Sentry Replay integration based on the feature flag.
- *
- * Can't use `useOrganization` because it throws on
- * `/settings/account/api/auth-token/` because organization is not *immediately*
- * set in context
- */
- export function SentryReplayInit({organization}: {organization: Organization | null}) {
- useEffect(() => {
- if (!organization) {
- return;
- }
- if (!organization.features.includes('session-replay-sdk')) {
- return;
- }
- initSentryReplays();
- }, [organization]);
- return null;
- }
|