-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patherror.ts
55 lines (48 loc) · 1.64 KB
/
error.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
import * as Rollbar from "rollbar"; // When using Typescript < 3.6.0.
// `import Rollbar from 'rollbar';` is the required syntax for Typescript 3.6.x.
// However, it will only work when setting either `allowSyntheticDefaultImports`
// or `esModuleInterop` in your Typescript options.
import {
Injectable,
Inject,
InjectionToken,
ErrorHandler
} from "@angular/core";
import {environment} from "../environments/environment";
import {NotificationService} from "./services/notification.service";
const rollbarConfig = {
accessToken: "d22c641642f94b619b51f31de651e7b9",
captureUncaught: true,
captureUnhandledRejections: true,
};
export const RollbarService = new InjectionToken<Rollbar>("rollbar");
@Injectable()
export class RollbarErrorHandler implements ErrorHandler {
constructor(@Inject(RollbarService) private rollbar: Rollbar, private _notify: NotificationService) {
// window.onerror = (message, file, line, col, e) => {
// this.handleError(message);
// return false;
// };
// window.addEventListener("error", (e) => {
// this.handleError(e.error || e);
// e.preventDefault();
// });
// window.addEventListener("unhandledrejection", (e) => {
// this.handleError(e.reason || e);
// e.preventDefault();
// });
}
handleError(err: any): void {
if (environment.rollbar) {
this.rollbar.error(err.originalError || err);
}
if (environment.showErrors) {
this._notify.error(err.originalError || err);
} else {
console.error(err.originalError || err);
}
}
}
export function rollbarFactory() {
return new Rollbar(rollbarConfig);
}