-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
event_dispatcher.ts
374 lines (310 loc) · 11.4 KB
/
event_dispatcher.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
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
import { getOwner } from '@ember/-internals/owner';
import { assert } from '@ember/debug';
import { get, set } from '@ember/-internals/metal';
import EmberObject from '@ember/object';
import { getElementView } from '@ember/-internals/views';
import ActionManager from './action_manager';
import type { BootEnvironment } from '@ember/-internals/glimmer/lib/views/outlet';
import type Component from '@ember/component';
import type { ActionState } from '@ember/-internals/glimmer/lib/modifiers/action';
/**
@module ember
*/
const ROOT_ELEMENT_CLASS = 'ember-application';
const ROOT_ELEMENT_SELECTOR = `.${ROOT_ELEMENT_CLASS}`;
/**
`Ember.EventDispatcher` handles delegating browser events to their
corresponding `Ember.Views.` For example, when you click on a view,
`Ember.EventDispatcher` ensures that that view's `mouseDown` method gets
called.
@class EventDispatcher
@namespace Ember
@private
@extends EmberObject
*/
export default class EventDispatcher extends EmberObject {
/**
The set of events names (and associated handler function names) to be setup
and dispatched by the `EventDispatcher`. Modifications to this list can be done
at setup time, generally via the `Application.customEvents` hash.
To add new events to be listened to:
```javascript
import Application from '@ember/application';
let App = Application.create({
customEvents: {
paste: 'paste'
}
});
```
To prevent default events from being listened to:
```javascript
import Application from '@ember/application';
let App = Application.create({
customEvents: {
mouseenter: null,
mouseleave: null
}
});
```
@property events
@type Object
@private
*/
events: Record<string, string> = {
touchstart: 'touchStart',
touchmove: 'touchMove',
touchend: 'touchEnd',
touchcancel: 'touchCancel',
keydown: 'keyDown',
keyup: 'keyUp',
keypress: 'keyPress',
mousedown: 'mouseDown',
mouseup: 'mouseUp',
contextmenu: 'contextMenu',
click: 'click',
dblclick: 'doubleClick',
focusin: 'focusIn',
focusout: 'focusOut',
submit: 'submit',
input: 'input',
change: 'change',
dragstart: 'dragStart',
drag: 'drag',
dragenter: 'dragEnter',
dragleave: 'dragLeave',
dragover: 'dragOver',
drop: 'drop',
dragend: 'dragEnd',
};
/**
The root DOM element to which event listeners should be attached. Event
listeners will be attached to the document unless this is overridden.
Can be specified as a DOMElement or a selector string.
The default body is a string since this may be evaluated before document.body
exists in the DOM.
@private
@property rootElement
@type DOMElement
@default 'body'
*/
rootElement: string | Element = 'body';
_eventHandlers = Object.create(null);
_didSetup = false;
finalEventNameMapping: Record<string, string> | null = null;
_sanitizedRootElement: Element | null = null;
lazyEvents: Map<string, string | null> = new Map();
_reverseEventNameMapping: Record<string, string> | null = null;
/**
Sets up event listeners for standard browser events.
This will be called after the browser sends a `DOMContentReady` event. By
default, it will set up all of the listeners on the document body. If you
would like to register the listeners on a different element, set the event
dispatcher's `root` property.
@private
@method setup
@param addedEvents {Object}
*/
setup(addedEvents: Record<string, string | null>, _rootElement: string | Element | null): void {
assert(
'EventDispatcher should never be setup in fastboot mode. Please report this as an Ember bug.',
(() => {
let owner = getOwner(this);
assert('[BUG] Missing owner', owner);
// SAFETY: This is not guaranteed to be safe, but this is what we expect to be returned.
let environment = owner.lookup('-environment:main') as BootEnvironment;
return environment.isInteractive;
})()
);
let events: Record<string, string | null> = (this.finalEventNameMapping = {
...get(this, 'events'),
...addedEvents,
});
this._reverseEventNameMapping = Object.keys(events).reduce((result, key) => {
let eventName = events[key];
return eventName ? { ...result, [eventName]: key } : result;
}, {});
let lazyEvents = this.lazyEvents;
if (_rootElement !== undefined && _rootElement !== null) {
set(this, 'rootElement', _rootElement);
}
let specifiedRootElement = get(this, 'rootElement');
let rootElement: Element | null =
typeof specifiedRootElement !== 'string'
? specifiedRootElement
: document.querySelector(specifiedRootElement);
assert(`Could not find rootElement (${specifiedRootElement})`, rootElement);
assert(
`You cannot use the same root element (${specifiedRootElement}) multiple times in an Ember.Application`,
!rootElement.classList.contains(ROOT_ELEMENT_CLASS)
);
assert(
'You cannot make a new Ember.Application using a root element that is a descendent of an existing Ember.Application',
(() => {
let target = rootElement.parentNode;
while (target instanceof Element) {
if (target.classList.contains(ROOT_ELEMENT_CLASS)) {
return false;
}
target = target.parentNode;
}
return true;
})()
);
assert(
'You cannot make a new Ember.Application using a root element that is an ancestor of an existing Ember.Application',
!rootElement.querySelector(ROOT_ELEMENT_SELECTOR)
);
rootElement.classList.add(ROOT_ELEMENT_CLASS);
assert(
`Unable to add '${ROOT_ELEMENT_CLASS}' class to root element (${
get(this, 'rootElement') || rootElement.tagName
}). Make sure you set rootElement to the body or an element in the body.`,
rootElement.classList.contains(ROOT_ELEMENT_CLASS)
);
// save off the final sanitized root element (for usage in setupHandler)
this._sanitizedRootElement = rootElement;
// setup event listeners for the non-lazily setup events
for (let event in events) {
if (Object.prototype.hasOwnProperty.call(events, event)) {
lazyEvents.set(event, events[event] ?? null);
}
}
this._didSetup = true;
}
/**
Setup event listeners for the given browser event name
@private
@method setupHandlerForBrowserEvent
@param event the name of the event in the browser
*/
setupHandlerForBrowserEvent(event: string) {
assert('[BUG] Expected finalEventNameMapping to be set', this.finalEventNameMapping);
assert('[BUG] Expected _santizedRootElement to be set', this._sanitizedRootElement);
this.setupHandler(this._sanitizedRootElement, event, this.finalEventNameMapping[event] ?? null);
}
/**
Setup event listeners for the given Ember event name (camel case)
@private
@method setupHandlerForEmberEvent
@param eventName
*/
setupHandlerForEmberEvent(eventName: string) {
assert('[BUG] Expected _sanitizedRootElement to be set', this._sanitizedRootElement);
let event = this._reverseEventNameMapping?.[eventName];
if (event) {
this.setupHandler(this._sanitizedRootElement, event, eventName);
}
}
/**
Registers an event listener on the rootElement. If the given event is
triggered, the provided event handler will be triggered on the target view.
If the target view does not implement the event handler, or if the handler
returns `false`, the parent view will be called. The event will continue to
bubble to each successive parent view until it reaches the top.
@private
@method setupHandler
@param {Element} rootElement
@param {String} event the name of the event in the browser
@param {String} eventName the name of the method to call on the view
*/
setupHandler(rootElement: Element, event: string, eventName: string | null) {
if (eventName === null || !this.lazyEvents.has(event)) {
return; // nothing to do
}
let viewHandler = (target: Element, event: Event) => {
let view = getElementView(target);
let result = true;
if (view) {
// SAFETY: As currently written, this is not safe. Though it seems to always be true.
result = (view as Component).handleEvent(eventName, event);
}
return result;
};
let actionHandler = (target: Element, event: Event) => {
let actionId = target.getAttribute('data-ember-action');
let actions: Array<ActionState> | undefined;
// In Glimmer2 this attribute is set to an empty string and an additional
// attribute it set for each action on a given element. In this case, the
// attributes need to be read so that a proper set of action handlers can
// be coalesced.
if (actionId === '') {
actions = [];
for (let attr of target.attributes) {
let attrName = attr.name;
if (attrName.indexOf('data-ember-action-') === 0) {
let action = ActionManager.registeredActions[attr.value];
assert('[BUG] Missing action', action);
actions.push(action);
}
}
} else if (actionId) {
// FIXME: This branch is never called in tests. Improve tests or remove
let actionState = ActionManager.registeredActions[actionId];
if (actionState) {
actions = [actionState];
}
}
// We have to check for actions here since in some cases, jQuery will trigger
// an event on `removeChild` (i.e. focusout) after we've already torn down the
// action handlers for the view.
if (!actions) {
// FIXME: This branch is never called in tests. Improve tests or remove
return;
}
let result = true;
for (let index = 0; index < actions.length; index++) {
let action = actions[index];
if (action && action.eventName === eventName) {
// return false if any of the action handlers returns false
result = action.handler(event) && result;
}
}
return result;
};
let handleEvent = (this._eventHandlers[event] = (event: Event) => {
let target = event.target;
assert(
`[BUG] Received event without an Element target: ${event.type}, ${target}`,
target instanceof Element
);
do {
if (getElementView(target)) {
if (viewHandler(target, event) === false) {
event.preventDefault();
event.stopPropagation();
break;
} else if (event.cancelBubble === true) {
break;
}
} else if (
typeof target.hasAttribute === 'function' &&
target.hasAttribute('data-ember-action')
) {
if (actionHandler(target, event) === false) {
break;
}
}
target = target.parentNode;
} while (target instanceof Element);
});
rootElement.addEventListener(event, handleEvent);
this.lazyEvents.delete(event);
}
destroy() {
if (this._didSetup === false) {
return;
}
let rootElement = this._sanitizedRootElement;
if (!rootElement) {
return;
}
for (let event in this._eventHandlers) {
rootElement.removeEventListener(event, this._eventHandlers[event]);
}
rootElement.classList.remove(ROOT_ELEMENT_CLASS);
return this._super(...arguments);
}
toString() {
return '(EventDispatcher)';
}
}