forked from exceptionless/Exceptionless.JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrowserExceptionlessClient.ts
More file actions
32 lines (27 loc) · 1.51 KB
/
BrowserExceptionlessClient.ts
File metadata and controls
32 lines (27 loc) · 1.51 KB
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
import { ExceptionlessClient } from "@exceptionless/core";
import { BrowserConfiguration } from "./configuration/BrowserConfiguration.js";
import { BrowserGlobalHandlerPlugin } from "./plugins/BrowserGlobalHandlerPlugin.js";
import { BrowserLifeCyclePlugin } from "./plugins/BrowserLifeCyclePlugin.js";
import { BrowserWrapFunctions } from "./plugins/BrowserWrapFunctions.js";
import { BrowserErrorParser } from "./services/BrowserErrorParser.js";
import { BrowserModuleCollector } from "./services/BrowserModuleCollector.js";
import { BrowserRequestInfoCollector } from "./services/BrowserRequestInfoCollector.js";
import { BrowserFetchSubmissionClient } from "./submission/BrowserFetchSubmissionClient.js";
export class BrowserExceptionlessClient extends ExceptionlessClient {
constructor() {
super(new BrowserConfiguration());
}
public async startup(configurationOrApiKey?: (config: BrowserConfiguration) => void | string): Promise<void> {
const config = this.config;
if (configurationOrApiKey) {
config.addPlugin(new BrowserGlobalHandlerPlugin());
config.addPlugin(new BrowserLifeCyclePlugin());
config.addPlugin(new BrowserWrapFunctions());
config.services.errorParser = new BrowserErrorParser();
config.services.moduleCollector = new BrowserModuleCollector();
config.services.requestInfoCollector = new BrowserRequestInfoCollector();
config.services.submissionClient = new BrowserFetchSubmissionClient(config);
}
await super.startup(configurationOrApiKey);
}
}