2021-09-03 20:14:28 +03:00
|
|
|
import EPMModalsService from 'ember-promise-modals/services/modals';
|
2021-09-16 22:07:32 +03:00
|
|
|
import {bind} from '@ember/runloop';
|
2021-09-03 20:14:28 +03:00
|
|
|
import {inject as service} from '@ember/service';
|
|
|
|
|
|
|
|
export default class ModalsService extends EPMModalsService {
|
|
|
|
@service dropdown;
|
|
|
|
|
2021-09-16 22:07:32 +03:00
|
|
|
// we manually close modals on backdrop clicks and escape rather than letting focus-trap
|
|
|
|
// handle it so we can intercept/abort closing for things like unsaved change confirmations
|
|
|
|
allowOutsideClick = true;
|
|
|
|
clickOutsideDeactivates = false;
|
|
|
|
escapeDeactivates = false;
|
2021-09-03 20:14:28 +03:00
|
|
|
|
2021-09-16 22:07:32 +03:00
|
|
|
_onFirstModalAdded() {
|
|
|
|
super._onFirstModalAdded(...arguments);
|
|
|
|
this.addEventHandlers();
|
|
|
|
this.dropdown.closeDropdowns();
|
|
|
|
}
|
|
|
|
|
|
|
|
_onLastModalRemoved() {
|
|
|
|
super._onLastModalRemoved(...arguments);
|
|
|
|
this.removeEventHandlers();
|
|
|
|
}
|
|
|
|
|
|
|
|
addEventHandlers() {
|
|
|
|
if (!this.backdropClickHandler) {
|
|
|
|
this.backdropClickHandler = bind(this, this.handleBackdropClick);
|
|
|
|
document.body.addEventListener('click', this.backdropClickHandler, {capture: true, passive: false});
|
2021-09-03 20:14:28 +03:00
|
|
|
}
|
|
|
|
|
2021-09-16 22:07:32 +03:00
|
|
|
if (!this.escapeKeyHandler) {
|
|
|
|
this.escapeKeyHandler = bind(this, this.handleEscapeKey);
|
|
|
|
document.addEventListener('keydown', this.escapeKeyHandler, {capture: true, passive: false});
|
|
|
|
}
|
2021-09-03 20:14:28 +03:00
|
|
|
}
|
|
|
|
|
2021-09-16 22:07:32 +03:00
|
|
|
removeEventHandlers() {
|
|
|
|
document.body.removeEventListener('click', this.backdropClickHandler, {capture: true, passive: false});
|
|
|
|
this.backdropClickHandler = null;
|
|
|
|
|
|
|
|
document.removeEventListener('keydown', this.escapeKeyHandler, {capture: true, passive: false});
|
|
|
|
this.escapeKeyHandler = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
handleBackdropClick(event) {
|
|
|
|
let shouldClose = true;
|
2021-09-03 20:14:28 +03:00
|
|
|
|
2021-09-16 22:07:32 +03:00
|
|
|
for (const elem of (event.path || event.composedPath())) {
|
|
|
|
if (elem.matches?.('.modal-content, .ember-basic-dropdown-content')) {
|
|
|
|
shouldClose = false;
|
2021-09-03 20:14:28 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-16 22:07:32 +03:00
|
|
|
if (shouldClose) {
|
|
|
|
this.top.close();
|
|
|
|
}
|
2021-09-03 20:14:28 +03:00
|
|
|
}
|
|
|
|
|
2021-09-16 22:07:32 +03:00
|
|
|
handleEscapeKey(event) {
|
|
|
|
if (event.key === 'Escape') {
|
|
|
|
this.top.close();
|
|
|
|
}
|
2021-09-03 20:14:28 +03:00
|
|
|
}
|
|
|
|
}
|