123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- import {Layout, LayoutProps} from 'sentry/components/onboarding/gettingStartedDoc/layout';
- import {ModuleProps} from 'sentry/components/onboarding/gettingStartedDoc/sdkDocumentation';
- import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import {PlatformOption} from 'sentry/components/onboarding/gettingStartedDoc/types';
- import {getUploadSourceMapsStep} from 'sentry/components/onboarding/gettingStartedDoc/utils';
- import {useUrlPlatformOptions} from 'sentry/components/onboarding/platformOptionsControl';
- import {ProductSolution} from 'sentry/components/onboarding/productSelection';
- import {t, tct} from 'sentry/locale';
- import type {Organization, PlatformKey} from 'sentry/types';
- export enum AngularVersion {
- V10 = 'v10',
- V12 = 'v12',
- }
- type PlaformOptionKey = 'angularVersion';
- type StepProps = {
- angularVersion: AngularVersion;
- errorHandlerProviders: string;
- sentryInitContent: string;
- newOrg?: boolean;
- organization?: Organization;
- platformKey?: PlatformKey;
- projectId?: string;
- };
- // Configuration Start
- const platformOptions: Record<PlaformOptionKey, PlatformOption> = {
- angularVersion: {
- label: t('Spring Boot Version'),
- items: [
- {
- label: t('Angular 12+'),
- value: AngularVersion.V12,
- },
- {
- label: t('Angular 10 and 11'),
- value: AngularVersion.V10,
- },
- ],
- },
- };
- const replayIntegration = `
- new Sentry.Replay(),
- `;
- const replayOtherConfig = `
- // Session Replay
- replaysSessionSampleRate: 0.1, // This sets the sample rate at 10%. You may want to change it to 100% while in development and then sample at a lower rate in production.
- replaysOnErrorSampleRate: 1.0, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.
- `;
- const performanceIntegration = `
- new Sentry.BrowserTracing({
- // Set 'tracePropagationTargets' to control for which URLs distributed tracing should be enabled
- tracePropagationTargets: ["localhost", /^https:\\/\\/yourserver\\.io\\/api/],
- routingInstrumentation: Sentry.routingInstrumentation,
- }),
- `;
- const performanceOtherConfig = `
- // Performance Monitoring
- tracesSampleRate: 1.0, // Capture 100% of the transactions`;
- const performanceErrorHandler = `
- {
- provide: Sentry.TraceService,
- deps: [Router],
- },
- {
- provide: APP_INITIALIZER,
- useFactory: () => () => {},
- deps: [Sentry.TraceService],
- multi: true,
- },
- `;
- function getNpmPackage(angularVersion: AngularVersion) {
- return angularVersion === AngularVersion.V12
- ? '@sentry/angular-ivy'
- : '@sentry/angular';
- }
- export const steps = ({
- sentryInitContent,
- errorHandlerProviders,
- angularVersion,
- ...props
- }: StepProps): LayoutProps['steps'] => [
- {
- type: StepType.INSTALL,
- description: (
- <p>
- {tct(
- 'Add the Sentry SDK as a dependency using [codeNpm:npm] or [codeYarn:yarn]:',
- {
- codeYarn: <code />,
- codeNpm: <code />,
- }
- )}
- </p>
- ),
- configurations: [
- {
- language: 'bash',
- code: [
- {
- label: 'npm',
- value: 'npm',
- language: 'bash',
- code: `npm install --save ${getNpmPackage(angularVersion)}`,
- },
- {
- label: 'yarn',
- value: 'yarn',
- language: 'bash',
- code: `yarn add ${getNpmPackage(angularVersion)}`,
- },
- ],
- },
- ],
- },
- {
- type: StepType.CONFIGURE,
- description: t(
- 'You should init the Sentry browser SDK in your main.ts file as soon as possible during application load up, before initializing Angular:'
- ),
- configurations: [
- {
- language: 'javascript',
- code: `
- import { enableProdMode } from "@angular/core";
- import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
- import * as Sentry from "${getNpmPackage(angularVersion)}";
- import { AppModule } from "./app/app.module";
- Sentry.init({
- ${sentryInitContent}
- });
- enableProdMode();
- platformBrowserDynamic()
- .bootstrapModule(AppModule)
- .then((success) => console.log('Bootstrap success'))
- .catch((err) => console.error(err));
- `,
- },
- {
- description: t(
- "The Sentry Angular SDK exports a function to instantiate ErrorHandler provider that will automatically send JavaScript errors captured by the Angular's error handler."
- ),
- language: 'javascript',
- code: `
- import { APP_INITIALIZER, ErrorHandler, NgModule } from "@angular/core";
- import { Router } from "@angular/router";
- import * as Sentry from "${getNpmPackage(angularVersion)}";
- @NgModule({
- // ...
- providers: [
- {
- provide: ErrorHandler,
- useValue: Sentry.createErrorHandler({
- showDialog: true,
- }),
- },${errorHandlerProviders}
- ],
- // ...
- })
- export class AppModule {}`,
- },
- ],
- },
- getUploadSourceMapsStep({
- guideLink: 'https://docs.sentry.io/platforms/javascript/guides/angular/sourcemaps/',
- ...props,
- }),
- {
- type: StepType.VERIFY,
- description: t(
- "This snippet contains an intentional error and can be used as a test to make sure that everything's working as expected."
- ),
- configurations: [
- {
- language: 'javascript',
- code: `myUndefinedFunction();`,
- },
- ],
- },
- ];
- export const nextSteps = [
- {
- id: 'angular-features',
- name: t('Angular Features'),
- description: t('Learn about our first class integration with the Angular framework.'),
- link: 'https://docs.sentry.io/platforms/javascript/guides/angular/features/',
- },
- {
- id: 'performance-monitoring',
- name: t('Performance Monitoring'),
- description: t(
- 'Track down transactions to connect the dots between 10-second page loads and poor-performing API calls or slow database queries.'
- ),
- link: 'https://docs.sentry.io/platforms/javascript/guides/angular/performance/',
- },
- {
- id: 'session-replay',
- name: t('Session Replay'),
- description: t(
- 'Get to the root cause of an error or latency issue faster by seeing all the technical details related to that issue in one visual replay on your web application.'
- ),
- link: 'https://docs.sentry.io/platforms/javascript/guides/angular/session-replay/',
- },
- ];
- // Configuration End
- export function GettingStartedWithAngular({
- dsn,
- activeProductSelection = [],
- organization,
- newOrg,
- platformKey,
- projectId,
- ...props
- }: ModuleProps) {
- const optionValues = useUrlPlatformOptions(platformOptions);
- const integrations: string[] = [];
- const otherConfigs: string[] = [];
- let nextStepDocs = [...nextSteps];
- const errorHandlerProviders: string[] = [];
- if (activeProductSelection.includes(ProductSolution.PERFORMANCE_MONITORING)) {
- integrations.push(performanceIntegration.trim());
- otherConfigs.push(performanceOtherConfig.trim());
- errorHandlerProviders.push(performanceErrorHandler.trim());
- nextStepDocs = nextStepDocs.filter(
- step => step.id !== ProductSolution.PERFORMANCE_MONITORING
- );
- }
- if (activeProductSelection.includes(ProductSolution.SESSION_REPLAY)) {
- integrations.push(replayIntegration.trim());
- otherConfigs.push(replayOtherConfig.trim());
- nextStepDocs = nextStepDocs.filter(
- step => step.id !== ProductSolution.SESSION_REPLAY
- );
- }
- let sentryInitContent: string[] = [`dsn: "${dsn}",`];
- if (integrations.length > 0) {
- sentryInitContent = sentryInitContent.concat('integrations: [', integrations, '],');
- }
- if (otherConfigs.length > 0) {
- sentryInitContent = sentryInitContent.concat(otherConfigs);
- }
- return (
- <Layout
- steps={steps({
- sentryInitContent: sentryInitContent.join('\n'),
- errorHandlerProviders: errorHandlerProviders.join('\n'),
- angularVersion: optionValues.angularVersion as AngularVersion,
- organization,
- newOrg,
- platformKey,
- projectId,
- })}
- nextSteps={nextStepDocs}
- platformOptions={platformOptions}
- newOrg={newOrg}
- platformKey={platformKey}
- {...props}
- />
- );
- }
- export default GettingStartedWithAngular;
|