-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathutils.ts
91 lines (78 loc) · 2.3 KB
/
utils.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
82
83
84
85
86
87
88
89
90
91
import type {Transaction} from '@sentry/browser';
import qs from 'query-string';
export function sortBy<A>(arr: A[], comp: (v: A) => number): A[] {
return arr.sort((a, b) => {
const aComp = comp(a);
const bComp = comp(b);
if (aComp < bComp) {
return -1;
}
if (aComp > bComp) {
return 1;
}
return 0;
});
}
export const capitilize = (str: string) => {
return str.charAt(0).toUpperCase() + str.slice(1);
};
type Page = {
context: {
sidebar_order?: number;
sidebar_title?: string;
title?: string;
};
};
export const sortPages = (arr: any, extractor: (any) => Page = n => n): any[] => {
return arr.sort((a, b) => {
a = extractor(a);
b = extractor(b);
const aBase = a.context.sidebar_order ?? 10;
const bBase = b.context.sidebar_order ?? 10;
const aso = aBase >= 0 ? aBase : 10;
const bso = bBase >= 0 ? bBase : 10;
if (aso > bso) {
return 1;
}
if (bso > aso) {
return -1;
}
return (a.context.sidebar_title || a.context.title).localeCompare(
b.context.sidebar_title || b.context.title
);
});
};
type URLQueryObject = {
[key: string]: string;
};
const paramsToSync = [/utm_/i, /promo_/i, /gclid/i, /original_referrer/i];
export const marketingUrlParams = (): URLQueryObject => {
const query = qs.parse(window.location.search);
const marketingParams: Record<string, string> = Object.keys(query).reduce((a, k) => {
const matcher = paramsToSync.find(m => m.test(k));
return matcher ? {...a, [k]: query[k]} : a;
}, {});
// add in original_referrer
if (document.referrer && !marketingParams.original_referrer) {
marketingParams.original_referrer = document.referrer;
}
return marketingParams;
};
export function getCurrentTransaction(): Transaction | undefined {
try {
// getCurrentScope() may not be defined yet, as we are using the Loader Script
// so we guard defensively against all of these existing.
return window.Sentry.getCurrentScope().getTransaction();
} catch {
return undefined;
}
}
export function captureException(exception: unknown): void {
try {
// Sentry may not be available, as we are using the Loader Script
// so we guard defensively against all of these existing.
window.Sentry.captureException(exception);
} catch {
// ignore
}
}