12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import styled from '@emotion/styled';
- import beautify from 'js-beautify';
- import Alert from 'sentry/components/alert';
- import ExternalLink from 'sentry/components/links/externalLink';
- import TracePropagationMessage from 'sentry/components/onboarding/gettingStartedDoc/replay/tracePropagationMessage';
- import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import type {
- DocsParams,
- OnboardingConfig,
- } from 'sentry/components/onboarding/gettingStartedDoc/types';
- import {
- getReplayConfigureDescription,
- getReplayJsLoaderSdkSetupSnippet,
- } from 'sentry/components/onboarding/gettingStartedDoc/utils/replayOnboarding';
- import {t, tct} from 'sentry/locale';
- import {normalizeUrl} from 'sentry/utils/withDomainRequired';
- type Params = DocsParams;
- const getInstallConfig = (params: Params) => [
- {
- type: StepType.INSTALL,
- configurations: [
- {
- description: t('Add this script tag to the top of the page:'),
- language: 'html',
- code: beautify.html(
- `<script src="${params.cdn}" crossorigin="anonymous"></script>`,
- {indent_size: 2, wrap_attributes: 'force-expand-multiline'}
- ),
- additionalInfo: (
- <StyledAlert type="info" showIcon>
- {tct(
- 'Make sure that Session Replay is enabled in your [link:project settings].',
- {
- link: (
- <ExternalLink
- href={normalizeUrl(
- `/settings/${params.organization.slug}/projects/${params.projectSlug}/loader-script/`
- )}
- />
- ),
- }
- )}
- </StyledAlert>
- ),
- },
- ],
- },
- ];
- const replayOnboardingJsLoader: OnboardingConfig = {
- install: (params: Params) => getInstallConfig(params),
- configure: (params: Params) => [
- {
- type: StepType.CONFIGURE,
- description: getReplayConfigureDescription({
- link: 'https://docs.sentry.io/platforms/javascript/session-replay/',
- }),
- configurations: [
- {
- language: 'html',
- code: getReplayJsLoaderSdkSetupSnippet(params),
- },
- ],
- isOptional: true,
- additionalInfo: <TracePropagationMessage />,
- },
- ],
- verify: () => [],
- nextSteps: () => [],
- };
- const StyledAlert = styled(Alert)`
- margin: 0;
- `;
- export default replayOnboardingJsLoader;
|