@openreplay/tracker 4.1.11 → 5.0.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +3 -0
- package/CHANGELOG.md +25 -0
- package/README.md +22 -18
- package/cjs/app/guards.d.ts +11 -12
- package/cjs/app/guards.js +2 -1
- package/cjs/app/index.d.ts +11 -8
- package/cjs/app/index.js +27 -8
- package/cjs/app/logger.d.ts +3 -3
- package/cjs/app/messages.gen.d.ts +8 -6
- package/cjs/app/messages.gen.js +116 -94
- package/cjs/app/nodes.d.ts +1 -1
- package/cjs/app/observer/iframe_offsets.d.ts +1 -1
- package/cjs/app/observer/observer.js +5 -5
- package/cjs/app/observer/top_observer.d.ts +2 -2
- package/cjs/app/observer/top_observer.js +1 -1
- package/cjs/app/session.d.ts +2 -2
- package/cjs/app/ticker.d.ts +1 -1
- package/cjs/common/interaction.d.ts +5 -5
- package/cjs/common/messages.gen.d.ts +104 -86
- package/cjs/index.d.ts +6 -2
- package/cjs/index.js +7 -5
- package/cjs/modules/cssrules.js +1 -1
- package/cjs/modules/focus.js +2 -2
- package/cjs/modules/fonts.js +2 -2
- package/cjs/modules/img.js +6 -5
- package/cjs/modules/input.d.ts +1 -1
- package/cjs/modules/input.js +15 -23
- package/cjs/modules/mouse.js +9 -19
- package/cjs/modules/network.d.ts +28 -0
- package/cjs/modules/network.js +203 -0
- package/cjs/modules/timing.js +7 -3
- package/cjs/modules/viewport.js +3 -1
- package/cjs/vendors/finder/finder.d.ts +1 -1
- package/jest.config.js +11 -0
- package/lib/app/guards.d.ts +11 -12
- package/lib/app/guards.js +2 -1
- package/lib/app/index.d.ts +11 -8
- package/lib/app/index.js +28 -9
- package/lib/app/logger.d.ts +3 -3
- package/lib/app/messages.gen.d.ts +8 -6
- package/lib/app/messages.gen.js +107 -87
- package/lib/app/nodes.d.ts +1 -1
- package/lib/app/observer/iframe_offsets.d.ts +1 -1
- package/lib/app/observer/observer.js +5 -5
- package/lib/app/observer/top_observer.d.ts +2 -2
- package/lib/app/observer/top_observer.js +1 -1
- package/lib/app/session.d.ts +2 -2
- package/lib/app/ticker.d.ts +1 -1
- package/lib/common/interaction.d.ts +5 -5
- package/lib/common/messages.gen.d.ts +104 -86
- package/lib/common/tsconfig.tsbuildinfo +1 -1
- package/lib/index.d.ts +6 -2
- package/lib/index.js +8 -6
- package/lib/modules/cssrules.js +1 -1
- package/lib/modules/focus.js +2 -2
- package/lib/modules/fonts.js +2 -2
- package/lib/modules/img.js +6 -5
- package/lib/modules/input.d.ts +1 -1
- package/lib/modules/input.js +15 -23
- package/lib/modules/mouse.js +9 -19
- package/lib/modules/network.d.ts +28 -0
- package/lib/modules/network.js +200 -0
- package/lib/modules/timing.js +8 -4
- package/lib/modules/viewport.js +3 -1
- package/lib/vendors/finder/finder.d.ts +1 -1
- package/package.json +9 -3
- package/tsconfig-base.json +2 -1
- package/cjs/app/messages.d.ts +0 -52
- package/cjs/app/messages.js +0 -234
- package/lib/app/messages.d.ts +0 -52
- package/lib/app/messages.js +0 -181
package/cjs/modules/input.js
CHANGED
|
@@ -4,18 +4,18 @@ exports.getInputLabel = void 0;
|
|
|
4
4
|
const utils_js_1 = require("../utils.js");
|
|
5
5
|
const guards_js_1 = require("../app/guards.js");
|
|
6
6
|
const messages_gen_js_1 = require("../app/messages.gen.js");
|
|
7
|
-
const INPUT_TYPES = ['text', 'password', 'email', 'search', 'number', 'range', 'date'];
|
|
7
|
+
const INPUT_TYPES = ['text', 'password', 'email', 'search', 'number', 'range', 'date', 'tel'];
|
|
8
8
|
function isTextEditable(node) {
|
|
9
|
-
if ((0, guards_js_1.hasTag)(node, '
|
|
9
|
+
if ((0, guards_js_1.hasTag)(node, 'textarea')) {
|
|
10
10
|
return true;
|
|
11
11
|
}
|
|
12
|
-
if (!(0, guards_js_1.hasTag)(node, '
|
|
12
|
+
if (!(0, guards_js_1.hasTag)(node, 'input')) {
|
|
13
13
|
return false;
|
|
14
14
|
}
|
|
15
15
|
return INPUT_TYPES.includes(node.type);
|
|
16
16
|
}
|
|
17
17
|
function isCheckable(node) {
|
|
18
|
-
if (!(0, guards_js_1.hasTag)(node, '
|
|
18
|
+
if (!(0, guards_js_1.hasTag)(node, 'input')) {
|
|
19
19
|
return false;
|
|
20
20
|
}
|
|
21
21
|
const type = node.type;
|
|
@@ -25,7 +25,7 @@ const labelElementFor = utils_js_1.IN_BROWSER && 'labels' in HTMLInputElement.pr
|
|
|
25
25
|
? (node) => {
|
|
26
26
|
let p = node;
|
|
27
27
|
while ((p = p.parentNode) !== null) {
|
|
28
|
-
if ((0, guards_js_1.hasTag)(p, '
|
|
28
|
+
if ((0, guards_js_1.hasTag)(p, 'label')) {
|
|
29
29
|
return p;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -37,7 +37,7 @@ const labelElementFor = utils_js_1.IN_BROWSER && 'labels' in HTMLInputElement.pr
|
|
|
37
37
|
: (node) => {
|
|
38
38
|
let p = node;
|
|
39
39
|
while ((p = p.parentNode) !== null) {
|
|
40
|
-
if ((0, guards_js_1.hasTag)(p, '
|
|
40
|
+
if ((0, guards_js_1.hasTag)(p, 'label')) {
|
|
41
41
|
return p;
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -68,7 +68,7 @@ function default_1(app, opts) {
|
|
|
68
68
|
const options = Object.assign({
|
|
69
69
|
obscureInputNumbers: true,
|
|
70
70
|
obscureInputEmails: true,
|
|
71
|
-
defaultInputMode:
|
|
71
|
+
defaultInputMode: 1 /* InputMode.Obscured */,
|
|
72
72
|
obscureInputDates: false,
|
|
73
73
|
}, opts);
|
|
74
74
|
function sendInputTarget(id, node) {
|
|
@@ -81,22 +81,22 @@ function default_1(app, opts) {
|
|
|
81
81
|
let value = node.value;
|
|
82
82
|
let inputMode = options.defaultInputMode;
|
|
83
83
|
if (node.type === 'password' || app.sanitizer.isHidden(id)) {
|
|
84
|
-
inputMode = 2 /* Hidden */;
|
|
84
|
+
inputMode = 2 /* InputMode.Hidden */;
|
|
85
85
|
}
|
|
86
86
|
else if (app.sanitizer.isObscured(id) ||
|
|
87
|
-
(inputMode === 0 /* Plain */ &&
|
|
87
|
+
(inputMode === 0 /* InputMode.Plain */ &&
|
|
88
88
|
((options.obscureInputNumbers && node.type !== 'date' && /\d\d\d\d/.test(value)) ||
|
|
89
89
|
(options.obscureInputDates && node.type === 'date') ||
|
|
90
90
|
(options.obscureInputEmails && (node.type === 'email' || !!~value.indexOf('@')))))) {
|
|
91
|
-
inputMode = 1 /* Obscured */;
|
|
91
|
+
inputMode = 1 /* InputMode.Obscured */;
|
|
92
92
|
}
|
|
93
93
|
let mask = 0;
|
|
94
94
|
switch (inputMode) {
|
|
95
|
-
case 2 /* Hidden */:
|
|
95
|
+
case 2 /* InputMode.Hidden */:
|
|
96
96
|
mask = -1;
|
|
97
97
|
value = '';
|
|
98
98
|
break;
|
|
99
|
-
case 1 /* Obscured */:
|
|
99
|
+
case 1 /* InputMode.Obscured */:
|
|
100
100
|
mask = value.length;
|
|
101
101
|
value = '';
|
|
102
102
|
break;
|
|
@@ -115,11 +115,7 @@ function default_1(app, opts) {
|
|
|
115
115
|
inputValues.forEach((value, id) => {
|
|
116
116
|
const node = app.nodes.getNode(id);
|
|
117
117
|
if (!node)
|
|
118
|
-
return;
|
|
119
|
-
if (!isTextEditable(node)) {
|
|
120
|
-
inputValues.delete(id);
|
|
121
|
-
return;
|
|
122
|
-
}
|
|
118
|
+
return inputValues.delete(id);
|
|
123
119
|
if (value !== node.value) {
|
|
124
120
|
inputValues.set(id, node.value);
|
|
125
121
|
if (!registeredTargets.has(id)) {
|
|
@@ -132,11 +128,7 @@ function default_1(app, opts) {
|
|
|
132
128
|
checkableValues.forEach((checked, id) => {
|
|
133
129
|
const node = app.nodes.getNode(id);
|
|
134
130
|
if (!node)
|
|
135
|
-
return;
|
|
136
|
-
if (!isCheckable(node)) {
|
|
137
|
-
checkableValues.delete(id);
|
|
138
|
-
return;
|
|
139
|
-
}
|
|
131
|
+
return checkableValues.delete(id);
|
|
140
132
|
if (checked !== node.checked) {
|
|
141
133
|
checkableValues.set(id, node.checked);
|
|
142
134
|
app.send((0, messages_gen_js_1.SetInputChecked)(id, node.checked));
|
|
@@ -150,7 +142,7 @@ function default_1(app, opts) {
|
|
|
150
142
|
return;
|
|
151
143
|
}
|
|
152
144
|
// TODO: support multiple select (?): use selectedOptions; Need send target?
|
|
153
|
-
if ((0, guards_js_1.hasTag)(node, '
|
|
145
|
+
if ((0, guards_js_1.hasTag)(node, 'select')) {
|
|
154
146
|
sendInputValue(id, node);
|
|
155
147
|
app.attachEventListener(node, 'change', () => {
|
|
156
148
|
sendInputValue(id, node);
|
package/cjs/modules/mouse.js
CHANGED
|
@@ -4,25 +4,15 @@ const guards_js_1 = require("../app/guards.js");
|
|
|
4
4
|
const utils_js_1 = require("../utils.js");
|
|
5
5
|
const messages_gen_js_1 = require("../app/messages.gen.js");
|
|
6
6
|
const input_js_1 = require("./input.js");
|
|
7
|
+
const finder_1 = require("@medv/finder");
|
|
7
8
|
function _getSelector(target, document) {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
el.className
|
|
16
|
-
.split(' ')
|
|
17
|
-
.map((cn) => cn.trim())
|
|
18
|
-
.filter((cn) => cn !== '')
|
|
19
|
-
.reduce((sel, cn) => `${sel}.${cn}`, el.tagName.toLowerCase()) +
|
|
20
|
-
(selector ? ` > ${selector}` : '');
|
|
21
|
-
if (el === document.body) {
|
|
22
|
-
return selector;
|
|
23
|
-
}
|
|
24
|
-
el = el.parentElement;
|
|
25
|
-
} while (el !== document.body && el !== null);
|
|
9
|
+
const selector = (0, finder_1.finder)(target, {
|
|
10
|
+
root: document.body,
|
|
11
|
+
seedMinLength: 3,
|
|
12
|
+
optimizedMinLength: 2,
|
|
13
|
+
threshold: 1000,
|
|
14
|
+
maxNumberOfTries: 10000,
|
|
15
|
+
});
|
|
26
16
|
return selector;
|
|
27
17
|
}
|
|
28
18
|
function isClickable(element) {
|
|
@@ -80,7 +70,7 @@ function default_1(app) {
|
|
|
80
70
|
if (dl !== null) {
|
|
81
71
|
return dl;
|
|
82
72
|
}
|
|
83
|
-
if ((0, guards_js_1.hasTag)(target, '
|
|
73
|
+
if ((0, guards_js_1.hasTag)(target, 'input')) {
|
|
84
74
|
return (0, input_js_1.getInputLabel)(target);
|
|
85
75
|
}
|
|
86
76
|
if (isClickable(target)) {
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type App from '../app/index.js';
|
|
2
|
+
type XHRRequestBody = Parameters<XMLHttpRequest['send']>[0];
|
|
3
|
+
type FetchRequestBody = RequestInit['body'];
|
|
4
|
+
interface RequestData {
|
|
5
|
+
body: XHRRequestBody | FetchRequestBody;
|
|
6
|
+
headers: Record<string, string>;
|
|
7
|
+
}
|
|
8
|
+
interface ResponseData {
|
|
9
|
+
body: any;
|
|
10
|
+
headers: Record<string, string>;
|
|
11
|
+
}
|
|
12
|
+
interface RequestResponseData {
|
|
13
|
+
readonly status: number;
|
|
14
|
+
readonly method: string;
|
|
15
|
+
url: string;
|
|
16
|
+
request: RequestData;
|
|
17
|
+
response: ResponseData;
|
|
18
|
+
}
|
|
19
|
+
type Sanitizer = (data: RequestResponseData) => RequestResponseData | null;
|
|
20
|
+
export interface Options {
|
|
21
|
+
sessionTokenHeader: string | boolean;
|
|
22
|
+
failuresOnly: boolean;
|
|
23
|
+
ignoreHeaders: Array<string> | boolean;
|
|
24
|
+
capturePayload: boolean;
|
|
25
|
+
sanitizer?: Sanitizer;
|
|
26
|
+
}
|
|
27
|
+
export default function (app: App, opts?: Partial<Options>): void;
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const messages_gen_js_1 = require("../app/messages.gen.js");
|
|
4
|
+
const utils_js_1 = require("../utils.js");
|
|
5
|
+
function getXHRRequestDataObject(xhr) {
|
|
6
|
+
// @ts-ignore this is 3x faster than using Map<XHR, XHRRequestData>
|
|
7
|
+
if (!xhr.__or_req_data__) {
|
|
8
|
+
// @ts-ignore
|
|
9
|
+
xhr.__or_req_data__ = { body: undefined, headers: {} };
|
|
10
|
+
}
|
|
11
|
+
// @ts-ignore
|
|
12
|
+
return xhr.__or_req_data__;
|
|
13
|
+
}
|
|
14
|
+
function strMethod(method) {
|
|
15
|
+
return typeof method === 'string' ? method.toUpperCase() : 'GET';
|
|
16
|
+
}
|
|
17
|
+
function default_1(app, opts = {}) {
|
|
18
|
+
const options = Object.assign({
|
|
19
|
+
failuresOnly: false,
|
|
20
|
+
ignoreHeaders: ['Cookie', 'Set-Cookie', 'Authorization'],
|
|
21
|
+
capturePayload: false,
|
|
22
|
+
sessionTokenHeader: false,
|
|
23
|
+
}, opts);
|
|
24
|
+
const ignoreHeaders = options.ignoreHeaders;
|
|
25
|
+
const isHIgnored = Array.isArray(ignoreHeaders)
|
|
26
|
+
? (name) => ignoreHeaders.includes(name)
|
|
27
|
+
: () => ignoreHeaders;
|
|
28
|
+
const stHeader = options.sessionTokenHeader === true ? 'X-OpenReplay-SessionToken' : options.sessionTokenHeader;
|
|
29
|
+
function setSessionTokenHeader(setRequestHeader) {
|
|
30
|
+
if (stHeader) {
|
|
31
|
+
const sessionToken = app.getSessionToken();
|
|
32
|
+
if (sessionToken) {
|
|
33
|
+
app.safe(setRequestHeader)(stHeader, sessionToken);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
function sanitize(reqResInfo) {
|
|
38
|
+
if (!options.capturePayload) {
|
|
39
|
+
delete reqResInfo.request.body;
|
|
40
|
+
delete reqResInfo.response.body;
|
|
41
|
+
}
|
|
42
|
+
if (options.sanitizer) {
|
|
43
|
+
const resBody = reqResInfo.response.body;
|
|
44
|
+
if (typeof resBody === 'string') {
|
|
45
|
+
// Parse response in order to have handy view in sanitisation function
|
|
46
|
+
try {
|
|
47
|
+
reqResInfo.response.body = JSON.parse(resBody);
|
|
48
|
+
}
|
|
49
|
+
catch (_a) { }
|
|
50
|
+
}
|
|
51
|
+
return options.sanitizer(reqResInfo);
|
|
52
|
+
}
|
|
53
|
+
return reqResInfo;
|
|
54
|
+
}
|
|
55
|
+
function stringify(r) {
|
|
56
|
+
if (r && typeof r.body !== 'string') {
|
|
57
|
+
try {
|
|
58
|
+
r.body = JSON.stringify(r.body);
|
|
59
|
+
}
|
|
60
|
+
catch (_a) {
|
|
61
|
+
r.body = '<unable to stringify>';
|
|
62
|
+
app.notify.warn("Openreplay fetch couldn't stringify body:", r.body);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
return JSON.stringify(r);
|
|
66
|
+
}
|
|
67
|
+
/* ====== Fetch ====== */
|
|
68
|
+
const origFetch = window.fetch.bind(window);
|
|
69
|
+
window.fetch = (input, init = {}) => {
|
|
70
|
+
if (!(typeof input === 'string' || input instanceof URL) || app.isServiceURL(String(input))) {
|
|
71
|
+
return origFetch(input, init);
|
|
72
|
+
}
|
|
73
|
+
setSessionTokenHeader(function (name, value) {
|
|
74
|
+
if (init.headers === undefined) {
|
|
75
|
+
init.headers = {};
|
|
76
|
+
}
|
|
77
|
+
if (init.headers instanceof Headers) {
|
|
78
|
+
init.headers.append(name, value);
|
|
79
|
+
}
|
|
80
|
+
else if (Array.isArray(init.headers)) {
|
|
81
|
+
init.headers.push([name, value]);
|
|
82
|
+
}
|
|
83
|
+
else {
|
|
84
|
+
init.headers[name] = value;
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
const startTime = performance.now();
|
|
88
|
+
return origFetch(input, init).then((response) => {
|
|
89
|
+
const duration = performance.now() - startTime;
|
|
90
|
+
if (options.failuresOnly && response.status < 400) {
|
|
91
|
+
return response;
|
|
92
|
+
}
|
|
93
|
+
const r = response.clone();
|
|
94
|
+
r.text()
|
|
95
|
+
.then((text) => {
|
|
96
|
+
const reqHs = {};
|
|
97
|
+
const resHs = {};
|
|
98
|
+
if (ignoreHeaders !== true) {
|
|
99
|
+
// request headers
|
|
100
|
+
const writeReqHeader = ([n, v]) => {
|
|
101
|
+
if (!isHIgnored(n)) {
|
|
102
|
+
reqHs[n] = v;
|
|
103
|
+
}
|
|
104
|
+
};
|
|
105
|
+
if (init.headers instanceof Headers) {
|
|
106
|
+
init.headers.forEach((v, n) => writeReqHeader([n, v]));
|
|
107
|
+
}
|
|
108
|
+
else if (Array.isArray(init.headers)) {
|
|
109
|
+
init.headers.forEach(writeReqHeader);
|
|
110
|
+
}
|
|
111
|
+
else if (typeof init.headers === 'object') {
|
|
112
|
+
Object.entries(init.headers).forEach(writeReqHeader);
|
|
113
|
+
}
|
|
114
|
+
// response headers
|
|
115
|
+
r.headers.forEach((v, n) => {
|
|
116
|
+
if (!isHIgnored(n))
|
|
117
|
+
resHs[n] = v;
|
|
118
|
+
});
|
|
119
|
+
}
|
|
120
|
+
const method = strMethod(init.method);
|
|
121
|
+
const reqResInfo = sanitize({
|
|
122
|
+
url: String(input),
|
|
123
|
+
method,
|
|
124
|
+
status: r.status,
|
|
125
|
+
request: {
|
|
126
|
+
headers: reqHs,
|
|
127
|
+
body: init.body,
|
|
128
|
+
},
|
|
129
|
+
response: {
|
|
130
|
+
headers: resHs,
|
|
131
|
+
body: text,
|
|
132
|
+
},
|
|
133
|
+
});
|
|
134
|
+
if (!reqResInfo) {
|
|
135
|
+
return;
|
|
136
|
+
}
|
|
137
|
+
app.send((0, messages_gen_js_1.NetworkRequest)('fetch', method, String(reqResInfo.url), stringify(reqResInfo.request), stringify(reqResInfo.response), r.status, startTime + (0, utils_js_1.getTimeOrigin)(), duration));
|
|
138
|
+
})
|
|
139
|
+
.catch((e) => app.debug.error('Could not process Fetch response:', e));
|
|
140
|
+
return response;
|
|
141
|
+
});
|
|
142
|
+
};
|
|
143
|
+
/* ====== <> ====== */
|
|
144
|
+
/* ====== XHR ====== */
|
|
145
|
+
const nativeOpen = XMLHttpRequest.prototype.open;
|
|
146
|
+
XMLHttpRequest.prototype.open = function (initMethod, url) {
|
|
147
|
+
const xhr = this;
|
|
148
|
+
setSessionTokenHeader((name, value) => xhr.setRequestHeader(name, value));
|
|
149
|
+
let startTime = 0;
|
|
150
|
+
xhr.addEventListener('loadstart', (e) => {
|
|
151
|
+
startTime = e.timeStamp;
|
|
152
|
+
});
|
|
153
|
+
xhr.addEventListener('load', app.safe((e) => {
|
|
154
|
+
const { headers: reqHs, body: reqBody } = getXHRRequestDataObject(xhr);
|
|
155
|
+
const duration = startTime > 0 ? e.timeStamp - startTime : 0;
|
|
156
|
+
const hString = ignoreHeaders ? '' : xhr.getAllResponseHeaders(); // might be null (though only if no response received though)
|
|
157
|
+
const resHs = hString
|
|
158
|
+
? hString
|
|
159
|
+
.split('\r\n')
|
|
160
|
+
.map((h) => h.split(':'))
|
|
161
|
+
.filter((entry) => !isHIgnored(entry[0]))
|
|
162
|
+
.reduce((hds, [name, value]) => (Object.assign(Object.assign({}, hds), { [name]: value })), {})
|
|
163
|
+
: {};
|
|
164
|
+
const method = strMethod(initMethod);
|
|
165
|
+
const reqResInfo = sanitize({
|
|
166
|
+
url: String(url),
|
|
167
|
+
method,
|
|
168
|
+
status: xhr.status,
|
|
169
|
+
request: {
|
|
170
|
+
headers: reqHs,
|
|
171
|
+
body: reqBody,
|
|
172
|
+
},
|
|
173
|
+
response: {
|
|
174
|
+
headers: resHs,
|
|
175
|
+
body: xhr.response,
|
|
176
|
+
},
|
|
177
|
+
});
|
|
178
|
+
if (!reqResInfo) {
|
|
179
|
+
return;
|
|
180
|
+
}
|
|
181
|
+
app.send((0, messages_gen_js_1.NetworkRequest)('xhr', method, String(reqResInfo.url), stringify(reqResInfo.request), stringify(reqResInfo.response), xhr.status, startTime + (0, utils_js_1.getTimeOrigin)(), duration));
|
|
182
|
+
}));
|
|
183
|
+
//TODO: handle error (though it has no Error API nor any useful information)
|
|
184
|
+
//xhr.addEventListener('error', (e) => {})
|
|
185
|
+
return nativeOpen.apply(this, arguments);
|
|
186
|
+
};
|
|
187
|
+
const nativeSend = XMLHttpRequest.prototype.send;
|
|
188
|
+
XMLHttpRequest.prototype.send = function (body) {
|
|
189
|
+
const rdo = getXHRRequestDataObject(this);
|
|
190
|
+
rdo.body = body;
|
|
191
|
+
return nativeSend.apply(this, arguments);
|
|
192
|
+
};
|
|
193
|
+
const nativeSetRequestHeader = XMLHttpRequest.prototype.setRequestHeader;
|
|
194
|
+
XMLHttpRequest.prototype.setRequestHeader = function (name, value) {
|
|
195
|
+
if (!isHIgnored(name)) {
|
|
196
|
+
const rdo = getXHRRequestDataObject(this);
|
|
197
|
+
rdo.headers[name] = value;
|
|
198
|
+
}
|
|
199
|
+
return nativeSetRequestHeader.apply(this, arguments);
|
|
200
|
+
};
|
|
201
|
+
/* ====== <> ====== */
|
|
202
|
+
}
|
|
203
|
+
exports.default = default_1;
|
package/cjs/modules/timing.js
CHANGED
|
@@ -10,7 +10,7 @@ function getPaintBlocks(resources) {
|
|
|
10
10
|
for (let i = 0; i < elements.length; i++) {
|
|
11
11
|
const element = elements[i];
|
|
12
12
|
let src = '';
|
|
13
|
-
if ((0, guards_js_1.hasTag)(element, '
|
|
13
|
+
if ((0, guards_js_1.hasTag)(element, 'img')) {
|
|
14
14
|
src = element.currentSrc || element.src;
|
|
15
15
|
}
|
|
16
16
|
if (!src) {
|
|
@@ -75,7 +75,7 @@ function default_1(app, opts) {
|
|
|
75
75
|
if (resources !== null) {
|
|
76
76
|
resources[entry.name] = entry.startTime + entry.duration;
|
|
77
77
|
}
|
|
78
|
-
app.send((0, messages_gen_js_1.ResourceTiming)(entry.startTime +
|
|
78
|
+
app.send((0, messages_gen_js_1.ResourceTiming)(entry.startTime + (0, utils_js_1.getTimeOrigin)(), entry.duration, entry.responseStart && entry.startTime ? entry.responseStart - entry.startTime : 0, entry.transferSize > entry.encodedBodySize ? entry.transferSize - entry.encodedBodySize : 0, entry.encodedBodySize || 0, entry.decodedBodySize || 0, entry.name, entry.initiatorType));
|
|
79
79
|
}
|
|
80
80
|
const observer = new PerformanceObserver((list) => list.getEntries().forEach(resourceTiming));
|
|
81
81
|
let prevSessionID;
|
|
@@ -112,7 +112,11 @@ function default_1(app, opts) {
|
|
|
112
112
|
}
|
|
113
113
|
if (performance.timing.loadEventEnd || performance.now() > 30000) {
|
|
114
114
|
pageLoadTimingSent = true;
|
|
115
|
-
const {
|
|
115
|
+
const {
|
|
116
|
+
// should be ok to use here, (https://github.com/mdn/content/issues/4713)
|
|
117
|
+
// since it is compared with the values obtained on the page load (before any possible sleep state)
|
|
118
|
+
// deprecated though
|
|
119
|
+
navigationStart, requestStart, responseStart, responseEnd, domContentLoadedEventStart, domContentLoadedEventEnd, loadEventStart, loadEventEnd, } = performance.timing;
|
|
116
120
|
app.send((0, messages_gen_js_1.PageLoadTiming)(requestStart - navigationStart || 0, responseStart - navigationStart || 0, responseEnd - navigationStart || 0, domContentLoadedEventStart - navigationStart || 0, domContentLoadedEventEnd - navigationStart || 0, loadEventStart - navigationStart || 0, loadEventEnd - navigationStart || 0, firstPaint, firstContentfulPaint));
|
|
117
121
|
}
|
|
118
122
|
}, 30);
|
package/cjs/modules/viewport.js
CHANGED
|
@@ -5,12 +5,14 @@ const messages_gen_js_1 = require("../app/messages.gen.js");
|
|
|
5
5
|
function default_1(app) {
|
|
6
6
|
let url, width, height;
|
|
7
7
|
let navigationStart;
|
|
8
|
+
let referrer = document.referrer;
|
|
8
9
|
const sendSetPageLocation = app.safe(() => {
|
|
9
10
|
const { URL } = document;
|
|
10
11
|
if (URL !== url) {
|
|
11
12
|
url = URL;
|
|
12
|
-
app.send((0, messages_gen_js_1.SetPageLocation)(url,
|
|
13
|
+
app.send((0, messages_gen_js_1.SetPageLocation)(url, referrer, navigationStart));
|
|
13
14
|
navigationStart = 0;
|
|
15
|
+
referrer = url;
|
|
14
16
|
}
|
|
15
17
|
});
|
|
16
18
|
const sendSetViewportSize = app.safe(() => {
|
package/jest.config.js
ADDED
package/lib/app/guards.d.ts
CHANGED
|
@@ -4,18 +4,17 @@ export declare function isElementNode(node: Node): node is Element;
|
|
|
4
4
|
export declare function isTextNode(node: Node): node is Text;
|
|
5
5
|
export declare function isDocument(node: Node): node is Document;
|
|
6
6
|
export declare function isRootNode(node: Node): node is Document | DocumentFragment;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
LINK: HTMLLinkElement;
|
|
7
|
+
type TagTypeMap = {
|
|
8
|
+
html: HTMLHtmlElement;
|
|
9
|
+
body: HTMLBodyElement;
|
|
10
|
+
img: HTMLImageElement;
|
|
11
|
+
input: HTMLInputElement;
|
|
12
|
+
textarea: HTMLTextAreaElement;
|
|
13
|
+
select: HTMLSelectElement;
|
|
14
|
+
label: HTMLLabelElement;
|
|
15
|
+
iframe: HTMLIFrameElement;
|
|
16
|
+
style: HTMLStyleElement | SVGStyleElement;
|
|
17
|
+
link: HTMLLinkElement;
|
|
19
18
|
};
|
|
20
19
|
export declare function hasTag<T extends keyof TagTypeMap>(el: Node, tagName: T): el is TagTypeMap[typeof tagName];
|
|
21
20
|
export {};
|
package/lib/app/guards.js
CHANGED
|
@@ -18,5 +18,6 @@ export function isRootNode(node) {
|
|
|
18
18
|
return node.nodeType === Node.DOCUMENT_NODE || node.nodeType === Node.DOCUMENT_FRAGMENT_NODE;
|
|
19
19
|
}
|
|
20
20
|
export function hasTag(el, tagName) {
|
|
21
|
-
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
return el.localName === tagName;
|
|
22
23
|
}
|
package/lib/app/index.d.ts
CHANGED
|
@@ -22,19 +22,19 @@ interface OnStartInfo {
|
|
|
22
22
|
userUUID: string;
|
|
23
23
|
}
|
|
24
24
|
declare const CANCELED: "canceled";
|
|
25
|
-
|
|
25
|
+
type SuccessfulStart = OnStartInfo & {
|
|
26
26
|
success: true;
|
|
27
27
|
};
|
|
28
|
-
|
|
28
|
+
type UnsuccessfulStart = {
|
|
29
29
|
reason: typeof CANCELED | string;
|
|
30
30
|
success: false;
|
|
31
31
|
};
|
|
32
32
|
declare const UnsuccessfulStart: (reason: string) => UnsuccessfulStart;
|
|
33
33
|
declare const SuccessfulStart: (body: OnStartInfo) => SuccessfulStart;
|
|
34
|
-
export
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
34
|
+
export type StartPromiseReturn = SuccessfulStart | UnsuccessfulStart;
|
|
35
|
+
type StartCallback = (i: OnStartInfo) => void;
|
|
36
|
+
type CommitCallback = (messages: Array<Message>) => void;
|
|
37
|
+
type AppOptions = {
|
|
38
38
|
revID: string;
|
|
39
39
|
node_id: string;
|
|
40
40
|
session_reset_key: string;
|
|
@@ -51,7 +51,7 @@ declare type AppOptions = {
|
|
|
51
51
|
sessionStorage: Storage | null;
|
|
52
52
|
onStart?: StartCallback;
|
|
53
53
|
} & WebworkerOptions & SessOptions;
|
|
54
|
-
export
|
|
54
|
+
export type Options = AppOptions & ObserverOptions & SanitizerOptions;
|
|
55
55
|
export declare const DEFAULT_INGEST_POINT = "https://api.openreplay.com/ingest";
|
|
56
56
|
export default class App {
|
|
57
57
|
readonly nodes: Nodes;
|
|
@@ -75,6 +75,7 @@ export default class App {
|
|
|
75
75
|
private readonly worker?;
|
|
76
76
|
constructor(projectKey: string, sessionToken: string | undefined, options: Partial<Options>);
|
|
77
77
|
private _debug;
|
|
78
|
+
private _usingOldFetchPlugin;
|
|
78
79
|
send(message: Message, urgent?: boolean): void;
|
|
79
80
|
private commit;
|
|
80
81
|
private delay;
|
|
@@ -100,7 +101,9 @@ export default class App {
|
|
|
100
101
|
};
|
|
101
102
|
getSessionToken(): string | undefined;
|
|
102
103
|
getSessionID(): string | undefined;
|
|
103
|
-
getSessionURL(
|
|
104
|
+
getSessionURL(options?: {
|
|
105
|
+
withCurrentTime?: boolean;
|
|
106
|
+
}): string | undefined;
|
|
104
107
|
getHost(): string;
|
|
105
108
|
getProjectKey(): string;
|
|
106
109
|
getBaseHref(): string;
|