-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathsdk.ts
executable file
·81 lines (73 loc) · 2.65 KB
/
sdk.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { VERSION } from '@angular/core';
import type { BrowserOptions } from '@sentry/browser';
import {
breadcrumbsIntegration,
browserSessionIntegration,
globalHandlersIntegration,
httpContextIntegration,
init as browserInit,
linkedErrorsIntegration,
setContext,
} from '@sentry/browser';
import type { Client, Integration } from '@sentry/core';
import {
applySdkMetadata,
dedupeIntegration,
functionToStringIntegration,
inboundFiltersIntegration,
logger,
} from '@sentry/core';
import { IS_DEBUG_BUILD } from './flags';
/**
* Get the default integrations for the Angular SDK.
*/
export function getDefaultIntegrations(_options: BrowserOptions = {}): Integration[] {
// Don't include the BrowserApiErrors integration as it interferes with the Angular SDK's `ErrorHandler`:
// BrowserApiErrors would catch certain errors before they reach the `ErrorHandler` and
// thus provide a lower fidelity error than what `SentryErrorHandler`
// (see errorhandler.ts) would provide.
//
// see:
// - https://github.com/getsentry/sentry-javascript/issues/5417#issuecomment-1453407097
// - https://github.com/getsentry/sentry-javascript/issues/2744
return [
// TODO(v10): Replace with `eventFiltersIntegration` once we remove the deprecated `inboundFiltersIntegration`
// eslint-disable-next-line deprecation/deprecation
inboundFiltersIntegration(),
functionToStringIntegration(),
breadcrumbsIntegration(),
globalHandlersIntegration(),
linkedErrorsIntegration(),
dedupeIntegration(),
httpContextIntegration(),
browserSessionIntegration(),
];
}
/**
* Inits the Angular SDK
*/
export function init(options: BrowserOptions): Client | undefined {
const opts = {
defaultIntegrations: getDefaultIntegrations(),
...options,
};
applySdkMetadata(opts, 'angular');
checkAndSetAngularVersion();
return browserInit(opts);
}
function checkAndSetAngularVersion(): void {
const ANGULAR_MINIMUM_VERSION = 14;
const angularVersion = VERSION?.major && parseInt(VERSION.major, 10);
if (angularVersion) {
if (angularVersion < ANGULAR_MINIMUM_VERSION) {
IS_DEBUG_BUILD &&
logger.warn(
`This Sentry SDK does not officially support Angular ${angularVersion}.`,
`This SDK only supports Angular ${ANGULAR_MINIMUM_VERSION} and above.`,
"If you're using lower Angular versions, check the Angular Version Compatibility table in our docs: https://docs.sentry.io/platforms/javascript/guides/angular/#angular-version-compatibility.",
'Otherwise, please consider upgrading your Angular version.',
);
}
setContext('angular', { version: angularVersion });
}
}