-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbehaviors.js
256 lines (224 loc) · 13 KB
/
behaviors.js
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
function _objIsSerializable(obj) {
// TODO: add more thorough check like _.deepEqual(obj, JSON.parse(JSON.stringify(obj)))
const json_str = JSON.stringify(obj);
return json_str.startsWith('{') && json_str.endsWith('}');
}
function _validateBehaviorEventObject(event) {
if (!event?.type || typeof event.type !== 'string') {
throw new Error(`Event must have a string type, got ${JSON.stringify(event.type)}`);
}
if (![...event.type].every(letter => letter.match(/[A-Z0-9_]/))) {
throw new Error(`Event type must be [A-Z0-9_] uppercase letters and underscores only (e.g. PAGE_LOAD), got ${event.type}`);
}
if (typeof event.metadata !== 'object' || event.metadata === null) {
throw new Error(`Event metadata must be an object, got ${JSON.stringify(event.metadata)}`);
}
if (typeof event.metadata.id !== 'string' || !event.metadata.id.match(/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/)) {
throw new Error(`Event metadata.id must be a valid UUID4, got ${event.metadata.id}`);
}
if (typeof event.metadata.timestamp !== 'number' || isNaN(event.metadata.timestamp) || event.metadata.timestamp < 0) {
throw new Error(`Event metadata.timestamp must be a non-negative number, got ${event.metadata.timestamp}`);
}
if (!Array.isArray(event.metadata.path) || !event.metadata.path.every(sender => typeof sender === 'string' && sender.match(/^[a-zA-Z0-9_]+$/))) {
throw new Error(`Event metadata.path must be an array of strings like ["window", "puppeteer", "serviceWorker"], got ${JSON.stringify(event.metadata.path)}`);
}
if (!_objIsSerializable(event)) {
throw new Error('Event object must be serializable with JSON.stringify(event), make sure it doesn\'t contain any non-standard types (e.g. DOM elements, window object, etc.)');
}
return event;
}
// and it validates that events are objects containing a {type: 'EVENT_NAME'} key
class BehaviorEvent extends CustomEvent {
// BehaviorEvent('PAGE_LOAD', {url: 'https://example.com', ...detail}, {id: '1234-...', path: ['page'], ...})
constructor(dispatch_type, event_object = {}, extra_metadata = {}) {
if (typeof dispatch_type === 'object') {
// if they called BehaviorEvent({type: 'PAGE_LOAD', url: 'https://example.com'}, {...})
// with a raw event object as the first arg (instead of string event type as first arg + event object as second arg)
event_object = {...dispatch_type, ...(event_object || {}), ...(extra_metadata || {}), ...(dispatch_type?.detail || {}), ...(event_object.detail || {})};
dispatch_type = event_object.type;
}
if (event_object?.type && (event_object.type !== dispatch_type) && (dispatch_type !== '*')) {
throw new Error(`BehaviorEvent(${dispatch_type}, {type: "${event_object.type}", ...}) dispatch_type doesn't match {type} set inside event object`);
}
const {type=dispatch_type, metadata, ...detail} = event_object
const full_event_object = {
type, // e.g. 'PAGE_LOAD'
metadata: {
schema: '[email protected]',
id: crypto.randomUUID(), // e.g. '1234-5678-90ab-cdef'
timestamp: Date.now(), // e.g. 1715177600000
path: [], // e.g. ['window', 'puppeteer'], or ['serviceWorker', 'window', 'puppeteer']
...(metadata || {}), // e.g. ...{id: '1234-...', timestamp: ..., path: [...], ...} (from provided event.detail.metadata, if present)
...(extra_metadata || {}), // e.g. ...{id: '1234-...', timestamp: ..., path: [...], ...} (from provided extra_metadata arg, if one is passed)
},
...detail, // e.g. ...{url: 'https://example.com', selector: '#video', xpath: '//video', ...}
}
super(dispatch_type, {detail: full_event_object}); // new CustomEvent('PAGE_LOAD', {type: 'PAGE_LOAD', metadata: {...}, ...detail})
_validateBehaviorEventObject(this.detail);
this.metadata = this.detail.metadata; // shortcut so that (new BehaviorEvent(...)).metadata === {...event}.metadata
}
}
// Base class for behaviors event bus, handles consuming/emitting events and triggering event listeners (+ dependency-injects bus & context args)
class BaseBehaviorBus extends EventTarget {
schema = '[email protected]';
constructor(behaviors=null, context=null) {
super();
this.context = null; // e.g. window={navigator, window, document, BehaviorBus, ...}, puppeteer={browser, page, BehaviorBus, ...}, serviceWorker={navigator, BehaviorBus, ...}
this.behaviors = null; // e.g. [{hooks: {window: {PAGE_LOAD: (event, BehaviorBus, window) => {}}}}, {hooks: {puppeteer: {FOUND_CONTENT: (event, BehaviorBus, page) => {}}}}]
this._wrappedListeners = new Map();
this.name = this.constructor.name || this.name || 'BaseBehaviorBus';
if (this.name === 'BaseBehaviorBus' || this.name === null) {
throw new Error(`BaseBehaviorBus cannot be instantiated directly, use a subclass like WindowBehaviorBus, PuppeteerBehaviorBus, or ServiceWorkerBehaviorBus instead`);
}
if (!['PuppeteerBehaviorBus', 'WindowBehaviorBus', 'ServiceWorkerBehaviorBus'].includes(this.name)) {
throw new Error(`BehaviorBus subclass name must be one of ['PuppeteerBehaviorBus', 'WindowBehaviorBus', 'ServiceWorkerBehaviorBus'], got ${this.name}`);
}
this.attachBehaviors(behaviors);
this.attachContext(context);
}
attachBehaviors(behaviors) { // e.g. WindowBehaviorBus.attachBehaviors([{hooks: {window: {PAGE_LOAD: (event, BehaviorBus, window) => {}}}}])
if (!behaviors) return;
this.behaviors = [...(this.behaviors || []), ...behaviors]
for (const behavior of behaviors) {
const handlers_for_this_context = behavior.hooks[this.name] || behavior.hooks[this.name.toLowerCase().replace('behaviorbus', '')] || {}; // accept {hooks: {window: {...}}} OR {hooks: {WindowBehaviorBus: {...}}}
for (const [eventName, handler] of Object.entries(handlers_for_this_context)) {
this.addEventListener(eventName, handler, {behavior_name: behavior.name || 'UNKNOWN_BEHAVIOR'});
}
}
this._notifyIfReady()
}
attachContext(context) { // e.g. WindowBehaviorBus.attachContext(window)
if (!context) return;
this.context = context;
this._notifyIfReady();
}
_notifyIfReady() {
const is_ready = (this.context !== null) && (this.behaviors !== null)
if (is_ready && this._resolveReady) this._resolveReady();
}
async waitUntilReady() {
const is_ready = (this.context !== null) && (this.behaviors !== null);
if (is_ready) return;
this._readyPromise = this._readyPromise || new Promise((resolve) => {this._resolveReady = resolve});
await this._readyPromise; // block until context and behaviors are both attached to bus
}
_getListenerWithBusAndContextArgsPopulated(handler, behavior_name='UNKNOWN') {
// wrap the event listener function so that this BehaviorBus and its context are automatically dependency-injected via args when it fires
const wrappedListener = async (event) => {
await this.waitUntilReady();
const BehaviorBus = this;
const context = this.context;
const additional_breadcrumbs = event.detail.metadata.path.includes(behavior_name) ? [] : [behavior_name] // add the name of the behavior that defined this handler to the event's metadata for easier flow tracing
const event_detail = {
...event.detail,
metadata: {
...event.detail.metadata,
path: [...event.detail.metadata.path, ...additional_breadcrumbs],
},
};
await handler(event_detail, BehaviorBus, context);
};
return wrappedListener
}
addEventListener(event_type, listener, {behavior_name='UNKNOWN', ...options}={}) {
const wrappedListener = this._getListenerWithBusAndContextArgsPopulated(listener, behavior_name);
this._wrappedListeners.set(listener, wrappedListener);
super.addEventListener(event_type, wrappedListener, options);
}
removeEventListener(event_type, listener, {behavior_name='UNKNOWN', ...options}={}) {
const wrappedListener = this._wrappedListeners.get(listener)
super.removeEventListener(event_type, listener, options);
super.removeEventListener(event_type, wrappedListener, options);
this._wrappedListeners.delete(wrappedListener);
this._wrappedListeners.delete(listener);
}
dispatchEvent(event) { // BehaviorBus.dispatchEvent(new BehaviorEvent('PAGE_LOAD', {url: 'https://example.com'}))
if (event?.detail) {
event = new BehaviorEvent(event.type, event.detail);
} else if (event?.type) {
event = new BehaviorEvent(event.type, event);
} else {
throw new Error(`BehaviorBus.dispatchEvent() takes either a BehaviorEvent or a raw event object with a {type} property, got ${JSON.stringify(event)}`);
}
if (!['WindowBehaviorBus', 'PuppeteerBehaviorBus', 'ServiceWorkerBehaviorBus'].includes(this.name)) {
throw new Error(`BehaviorBus.dispatchEvent() called on a bus with an invalid name: ${this.name}`);
}
// check if this event has already been handled by this bus, then dispatch it to handler listeners
if (!event.detail.metadata.path.includes(this.name)) {
event.detail.metadata.path.push(this.name);
// trigger handlers listening on the specific event type
super.dispatchEvent(event);
// send to external listeners listening for all events (aka listeners listening on '*')
const broadcastEvent = new BehaviorEvent('*', event.detail);
super.dispatchEvent(broadcastEvent)
}
}
// aliases
on(type, handler) {this.addEventListener(type, handler);}
emit(event) {this.dispatchEvent(event);}
dispatch(event) {this.dispatchEvent(event);}
}
class WindowBehaviorBus extends BaseBehaviorBus {
name = 'WindowBehaviorBus';
constructor(behaviors, window=globalThis.window) {
super();
window.BehaviorBus = this;
this.attachBehaviors(behaviors);
this.attachContext(window);
this.addEventListener('*', (event, BehaviorBus, window) => {
console.log(`[window] -> [LOG] : ${JSON.stringify(event)}`);
}, {behavior_name: this.name});
console.log(`[window] initialized window.BehaviorBus = WindowBehaviorBus()`);
}
}
class ServiceWorkerBehaviorBus extends BaseBehaviorBus {
name = 'ServiceWorkerBehaviorBus';
constructor(behaviors, window=globalThis.window) {
super();
window.BehaviorBus = this;
this.attachBehaviors(behaviors);
this.attachContext(window);
// listen for chrome.runtime.onMessage events from content scripts
window.chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (message._is_behaviorbus_event) {
BehaviorBus.dispatchEvent(message.event);
}
}, {behavior_name: this.name});
// log all events to the console
this.addEventListener('*', (event, BehaviorBus, window) => {
console.log(`[serviceWorker] -> [LOG] : ${JSON.stringify(event)}`);
}, {behavior_name: this.name});
console.log(`[serviceWorker] initialized window.BehaviorBus = ServiceWorkerBehaviorBus()`);
}
}
class PuppeteerBehaviorBus extends BaseBehaviorBus {
name = 'PuppeteerBehaviorBus';
constructor(behaviors, page) {
super();
page.BehaviorBus = this;
this.attachBehaviors(behaviors);
this.attachContext(page);
// log all events to the console
this.addEventListener('*', (event, BehaviorBus, page) => {
console.log(`[puppeteer] -> [LOG] : ${JSON.stringify(event)}`);
}, {behavior_name: this.name});
console.log(`[puppeteer] initialized page.BehaviorBus = PuppeteerBehaviorBus()`);
}
}
global.BehaviorBus = new WindowBehaviorBus(global.BEHAVIORS || [], global)
var all_exports = { BehaviorEvent, WindowBehaviorBus, PuppeteerBehaviorBus, ServiceWorkerBehaviorBus }
if (globalThis.navigator) {
// loaded from browser, running in window
console.log(`[window] importing src/behaviors.js ...`);
for (const key of Object.keys(all_exports)) {
globalThis[key] = all_exports[key];
console.log(`[window] loaded window.${key}`);
}
} else {
// loaded from node, running in puppeteer
console.log(`[puppeteer] importing src/behaviors.js ...`);
for (const key of Object.keys(all_exports)) {
console.log(`[puppeteer] loaded global.${key}`);
}
}
export { BehaviorEvent, WindowBehaviorBus, PuppeteerBehaviorBus, ServiceWorkerBehaviorBus };