forked from snowplow/snowplow-javascript-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelpers.ts
More file actions
277 lines (251 loc) · 9.25 KB
/
Copy pathhelpers.ts
File metadata and controls
277 lines (251 loc) · 9.25 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
* Copyright (c) 2021 Snowplow Analytics Ltd, 2010 Anthon Pang
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import {
getCssClasses,
addEventListener,
BrowserTracker,
FilterCriterion,
getFilterByClass,
getFilterByName,
} from '@snowplow/browser-tracker-core';
import {
resolveDynamicContext,
DynamicContext,
buildFormFocusOrChange,
buildFormSubmission,
} from '@snowplow/tracker-core';
/** The form tracking configuration */
export interface FormTrackingConfiguration {
/** The options which can be configured for the form tracking events */
options?: FormTrackingOptions;
/** The dyanmic context which will be evaluated for each form event */
context?: DynamicContext | null;
}
export interface FormTrackingOptions {
forms?: FilterCriterion<HTMLElement>;
fields?: FilterCriterion<TrackedHTMLElement> & { transform: transformFn };
}
export interface TrackedHTMLElementTagNameMap {
textarea: HTMLTextAreaElement;
input: HTMLInputElement;
select: HTMLSelectElement;
}
export type TrackedHTMLElement = TrackedHTMLElementTagNameMap[keyof TrackedHTMLElementTagNameMap];
export interface ElementData extends Record<string, string | null | undefined> {
name: string;
value: string | null;
nodeName: string;
type?: string;
}
export type transformFn = (x: string | null, elt: ElementData | TrackedHTMLElement) => string | null;
export const innerElementTags: Array<keyof TrackedHTMLElementTagNameMap> = ['textarea', 'input', 'select'];
const defaultTransformFn: transformFn = (x) => x;
interface FormConfiguration {
formFilter: (_: HTMLFormElement) => boolean;
fieldFilter: (_: TrackedHTMLElement) => boolean;
fieldTransform: transformFn;
}
/*
* Add submission event listeners to all form elements
* Add value change event listeners to all mutable inner form elements
*/
export function addFormListeners(tracker: BrowserTracker, configuration: FormTrackingConfiguration) {
const { options, context } = configuration,
trackingMarker = tracker.id + 'form',
config = getConfigurationForOptions(options);
Array.prototype.slice.call(document.getElementsByTagName('form')).forEach(function (form) {
if (config.formFilter(form) && !form[trackingMarker]) {
Array.prototype.slice.call(innerElementTags).forEach(function (tagname) {
Array.prototype.slice.call(form.getElementsByTagName(tagname)).forEach(function (innerElement) {
if (
config.fieldFilter(innerElement) &&
!(innerElement as any)[trackingMarker] &&
innerElement.type.toLowerCase() !== 'password'
) {
addEventListener(
innerElement,
'focus',
getFormChangeListener(tracker, config, 'focus_form', context),
false
);
addEventListener(
innerElement,
'change',
getFormChangeListener(tracker, config, 'change_form', context),
false
);
(innerElement as any)[trackingMarker] = true;
}
});
});
addEventListener(form, 'submit', getFormSubmissionListener(tracker, config, trackingMarker, context));
form[trackingMarker] = true;
}
});
}
/*
* Configures form tracking: which forms and fields will be tracked, and the context to attach
*/
function getConfigurationForOptions(options?: FormTrackingOptions) {
if (options) {
return {
formFilter: getFilterByClass(options.forms),
fieldFilter: getFilterByName<TrackedHTMLElement>(options.fields),
fieldTransform: getTransform(options.fields),
};
} else {
return {
formFilter: () => true,
fieldFilter: () => true,
fieldTransform: defaultTransformFn,
};
}
}
/**
* Convert a criterion object to a transform function
*
* @param object - criterion {transform: function (elt) {return the result of transform function applied to element}
*/
function getTransform(criterion?: { transform: transformFn }): transformFn {
if (criterion && Object.prototype.hasOwnProperty.call(criterion, 'transform')) {
return criterion.transform;
}
return defaultTransformFn;
}
/*
* Get an identifier for a form, input, textarea, or select element
*/
function getElementIdentifier(elt: Record<string, any>) {
const properties: Array<'name' | 'id' | 'type' | 'nodeName'> = ['name', 'id', 'type', 'nodeName'];
for (const propName of properties) {
if (elt[propName] != false && typeof elt[propName] === 'string') {
return elt[propName];
}
}
return null;
}
/*
* Identifies the parent form in which an element is contained
*/
function getParentFormIdentifier(elt: Node | null) {
while (elt && elt.nodeName && elt.nodeName.toUpperCase() !== 'HTML' && elt.nodeName.toUpperCase() !== 'FORM') {
elt = elt.parentNode;
}
if (elt && elt.nodeName && elt.nodeName.toUpperCase() === 'FORM') {
return getElementIdentifier(elt);
}
return null;
}
/*
* Returns a list of the input, textarea, and select elements inside a form along with their values
*/
function getInnerFormElements(trackingMarker: string, elt: HTMLFormElement) {
var innerElements: Array<ElementData> = [];
Array.prototype.slice.call(innerElementTags).forEach((tagname: 'textarea' | 'input' | 'select') => {
let trackedChildren = Array.prototype.slice.call(elt.getElementsByTagName(tagname)).filter(function (child) {
return child.hasOwnProperty(trackingMarker);
});
Array.prototype.slice.call(trackedChildren).forEach(function (child) {
if (child.type === 'submit') {
return;
}
var elementJson: ElementData = {
name: getElementIdentifier(child),
value: child.value,
nodeName: child.nodeName,
};
if (child.type && child.nodeName.toUpperCase() === 'INPUT') {
elementJson.type = child.type;
}
if ((child.type === 'checkbox' || child.type === 'radio') && !(child as HTMLInputElement).checked) {
elementJson.value = null;
}
innerElements.push(elementJson);
});
});
return innerElements;
}
/*
* Return function to handle form field change event
*/
function getFormChangeListener(
tracker: BrowserTracker,
config: FormConfiguration,
event_type: 'change_form' | 'focus_form',
context?: DynamicContext | null
) {
return function (e: Event) {
var elt = e.target as TrackedHTMLElement;
if (elt) {
var type = elt.nodeName && elt.nodeName.toUpperCase() === 'INPUT' ? elt.type : null;
var value =
elt.type === 'checkbox' && !(elt as HTMLInputElement).checked ? null : config.fieldTransform(elt.value, elt);
if (event_type === 'change_form' || (type !== 'checkbox' && type !== 'radio')) {
tracker.core.track(
buildFormFocusOrChange({
schema: event_type,
formId: getParentFormIdentifier(elt) ?? '',
elementId: getElementIdentifier(elt) ?? '',
nodeName: elt.nodeName,
type,
elementClasses: getCssClasses(elt),
value: value ?? null,
}),
resolveDynamicContext(context, elt, type, value)
);
}
}
};
}
/*
* Return function to handle form submission event
*/
function getFormSubmissionListener(
tracker: BrowserTracker,
config: FormConfiguration,
trackingMarker: string,
context?: DynamicContext | null
) {
return function (e: Event) {
var elt = e.target as HTMLFormElement;
var innerElements = getInnerFormElements(trackingMarker, elt);
innerElements.forEach(function (innerElement) {
innerElement.value = config.fieldTransform(innerElement.value, innerElement) ?? innerElement.value;
});
tracker.core.track(
buildFormSubmission({
formId: getElementIdentifier(elt) ?? '',
formClasses: getCssClasses(elt),
elements: innerElements,
}),
resolveDynamicContext(context, elt, innerElements)
);
};
}