ember-source
Version:
A JavaScript framework for creating ambitious web applications
320 lines (306 loc) • 12.5 kB
JavaScript
import { getOwner } from '../../../owner/index.js';
import '../../../../debug/index.js';
import '../../../meta/lib/meta.js';
import '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
import { isDevelopingApp } from '@embroider/macros';
import '../../../../../@glimmer/destroyable/index.js';
import '../../../../../@glimmer/validator/index.js';
import '../../../../../@glimmer/manager/index.js';
import { g as get } from '../../../../../shared-chunks/cache-Djf2I3Za.js';
import { s as set } from '../../../../../shared-chunks/property_set-DS4X3Soy.js';
import '../../../../../shared-chunks/env-CwR5CFCu.js';
import EmberObject from '../../../../object/index.js';
import { getElementView } from './utils.js';
import ActionManager from './action_manager.js';
import { assert } from '../../../../debug/lib/assert.js';
/**
@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
*/
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 = {
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 = 'body';
_eventHandlers = Object.create(null);
_didSetup = false;
finalEventNameMapping = null;
_sanitizedRootElement = null;
lazyEvents = new Map();
_reverseEventNameMapping = 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, _rootElement) {
(isDevelopingApp() && !((() => {
let owner = getOwner(this);
(isDevelopingApp() && !(owner) && 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');
return environment.isInteractive;
})()) && assert('EventDispatcher should never be setup in fastboot mode. Please report this as an Ember bug.', (() => {
let owner = getOwner(this);
(isDevelopingApp() && !(owner) && assert('[BUG] Missing owner', owner));
let environment = owner.lookup('-environment:main');
return environment.isInteractive;
})()));
let events = 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 = typeof specifiedRootElement !== 'string' ? specifiedRootElement : document.querySelector(specifiedRootElement);
(isDevelopingApp() && !(rootElement) && assert(`Could not find rootElement (${specifiedRootElement})`, rootElement));
(isDevelopingApp() && !(!rootElement.classList.contains(ROOT_ELEMENT_CLASS)) && assert(`You cannot use the same root element (${specifiedRootElement}) multiple times in an Ember.Application`, !rootElement.classList.contains(ROOT_ELEMENT_CLASS)));
(isDevelopingApp() && !((() => {
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 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;
})()));
(isDevelopingApp() && !(!rootElement.querySelector(ROOT_ELEMENT_SELECTOR)) && 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);
(isDevelopingApp() && !(rootElement.classList.contains(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) {
(isDevelopingApp() && !(this.finalEventNameMapping) && assert('[BUG] Expected finalEventNameMapping to be set', this.finalEventNameMapping));
(isDevelopingApp() && !(this._sanitizedRootElement) && 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) {
(isDevelopingApp() && !(this._sanitizedRootElement) && 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, event, eventName) {
if (eventName === null || !this.lazyEvents.has(event)) {
return; // nothing to do
}
let viewHandler = (target, 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.handleEvent(eventName, event);
}
return result;
};
let actionHandler = (target, event) => {
let actionId = target.getAttribute('data-ember-action');
let actions;
// 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];
(isDevelopingApp() && !(action) && 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 => {
let target = event.target;
(isDevelopingApp() && !(target instanceof Element) && 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)';
}
}
export { EventDispatcher as default };