twbs--bootstrap/js/dist/modal.js

753 lines
24 KiB
JavaScript
Raw Normal View History

2018-11-13 06:41:12 +00:00
/*!
2021-03-23 16:26:54 +00:00
* Bootstrap modal.js v5.0.0-beta3 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2020-06-16 18:50:01 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2018-11-13 06:41:12 +00:00
*/
2018-07-24 00:51:14 +00:00
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./dom/data.js'), require('./dom/event-handler.js'), require('./dom/manipulator.js'), require('./dom/selector-engine.js'), require('./base-component.js')) :
typeof define === 'function' && define.amd ? define(['./dom/data', './dom/event-handler', './dom/manipulator', './dom/selector-engine', './base-component'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Modal = factory(global.Data, global.EventHandler, global.Manipulator, global.SelectorEngine, global.Base));
}(this, (function (Data, EventHandler, Manipulator, SelectorEngine, BaseComponent) { 'use strict';
2018-07-24 00:51:14 +00:00
2020-09-14 15:12:06 +00:00
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var Data__default = /*#__PURE__*/_interopDefaultLegacy(Data);
var EventHandler__default = /*#__PURE__*/_interopDefaultLegacy(EventHandler);
var Manipulator__default = /*#__PURE__*/_interopDefaultLegacy(Manipulator);
var SelectorEngine__default = /*#__PURE__*/_interopDefaultLegacy(SelectorEngine);
var BaseComponent__default = /*#__PURE__*/_interopDefaultLegacy(BaseComponent);
2019-03-01 16:31:34 +00:00
/**
* --------------------------------------------------------------------------
2021-03-23 16:26:54 +00:00
* Bootstrap (v5.0.0-beta3): util/index.js
2020-06-16 18:50:01 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2019-03-01 16:31:34 +00:00
* --------------------------------------------------------------------------
*/
2021-03-23 16:26:54 +00:00
const MILLISECONDS_MULTIPLIER = 1000;
const TRANSITION_END = 'transitionend'; // Shoutout AngusCroll (https://goo.gl/pxwQGp)
2019-03-01 16:31:34 +00:00
2021-03-23 16:26:54 +00:00
const toType = obj => {
2020-03-28 10:29:08 +00:00
if (obj === null || obj === undefined) {
2021-03-23 16:26:54 +00:00
return `${obj}`;
2020-03-28 10:29:08 +00:00
}
2019-03-01 16:31:34 +00:00
return {}.toString.call(obj).match(/\s([a-z]+)/i)[1].toLowerCase();
};
2021-03-23 16:26:54 +00:00
const getSelector = element => {
let selector = element.getAttribute('data-bs-target');
2019-03-01 16:31:34 +00:00
if (!selector || selector === '#') {
2021-03-23 16:26:54 +00:00
let hrefAttr = element.getAttribute('href'); // The only valid content that could double as a selector are IDs or classes,
// so everything starting with `#` or `.`. If a "real" URL is used as the selector,
// `document.querySelector` will rightfully complain it is invalid.
// See https://github.com/twbs/bootstrap/issues/32273
if (!hrefAttr || !hrefAttr.includes('#') && !hrefAttr.startsWith('.')) {
return null;
} // Just in case some CMS puts out a full URL with the anchor appended
if (hrefAttr.includes('#') && !hrefAttr.startsWith('#')) {
hrefAttr = '#' + hrefAttr.split('#')[1];
}
2019-08-27 13:03:21 +00:00
selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : null;
2019-03-01 16:31:34 +00:00
}
2019-08-27 13:03:21 +00:00
return selector;
};
2021-03-23 16:26:54 +00:00
const getElementFromSelector = element => {
const selector = getSelector(element);
2019-08-27 13:03:21 +00:00
return selector ? document.querySelector(selector) : null;
2019-03-01 16:31:34 +00:00
};
2021-03-23 16:26:54 +00:00
const getTransitionDurationFromElement = element => {
2019-03-01 16:31:34 +00:00
if (!element) {
return 0;
} // Get transition-duration of the element
2021-03-23 16:26:54 +00:00
let {
transitionDuration,
transitionDelay
} = window.getComputedStyle(element);
const floatTransitionDuration = Number.parseFloat(transitionDuration);
const floatTransitionDelay = Number.parseFloat(transitionDelay); // Return 0 if element or transition duration is not found
2019-03-01 16:31:34 +00:00
if (!floatTransitionDuration && !floatTransitionDelay) {
return 0;
} // If multiple durations are defined, take the first
transitionDuration = transitionDuration.split(',')[0];
transitionDelay = transitionDelay.split(',')[0];
2020-11-23 13:17:16 +00:00
return (Number.parseFloat(transitionDuration) + Number.parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER;
2019-03-01 16:31:34 +00:00
};
2021-03-23 16:26:54 +00:00
const triggerTransitionEnd = element => {
2020-03-28 10:29:08 +00:00
element.dispatchEvent(new Event(TRANSITION_END));
2019-03-01 16:31:34 +00:00
};
2021-03-23 16:26:54 +00:00
const isElement = obj => (obj[0] || obj).nodeType;
2019-03-01 16:31:34 +00:00
2021-03-23 16:26:54 +00:00
const emulateTransitionEnd = (element, duration) => {
let called = false;
const durationPadding = 5;
const emulatedDuration = duration + durationPadding;
2019-03-01 16:31:34 +00:00
function listener() {
called = true;
element.removeEventListener(TRANSITION_END, listener);
}
element.addEventListener(TRANSITION_END, listener);
2021-03-23 16:26:54 +00:00
setTimeout(() => {
2019-03-01 16:31:34 +00:00
if (!called) {
triggerTransitionEnd(element);
}
}, emulatedDuration);
};
2021-03-23 16:26:54 +00:00
const typeCheckConfig = (componentName, config, configTypes) => {
Object.keys(configTypes).forEach(property => {
const expectedTypes = configTypes[property];
const value = config[property];
const valueType = value && isElement(value) ? 'element' : toType(value);
2019-03-01 16:31:34 +00:00
if (!new RegExp(expectedTypes).test(valueType)) {
2021-03-23 16:26:54 +00:00
throw new TypeError(`${componentName.toUpperCase()}: ` + `Option "${property}" provided type "${valueType}" ` + `but expected type "${expectedTypes}".`);
2019-03-01 16:31:34 +00:00
}
});
};
2021-03-23 16:26:54 +00:00
const isVisible = element => {
2019-03-01 16:31:34 +00:00
if (!element) {
return false;
}
if (element.style && element.parentNode && element.parentNode.style) {
2021-03-23 16:26:54 +00:00
const elementStyle = getComputedStyle(element);
const parentNodeStyle = getComputedStyle(element.parentNode);
2019-11-08 08:11:23 +00:00
return elementStyle.display !== 'none' && parentNodeStyle.display !== 'none' && elementStyle.visibility !== 'hidden';
2019-03-01 16:31:34 +00:00
}
return false;
};
2021-03-23 16:26:54 +00:00
const reflow = element => element.offsetHeight;
2019-03-01 16:31:34 +00:00
2021-03-23 16:26:54 +00:00
const getjQuery = () => {
const {
jQuery
} = window;
2019-08-27 13:03:21 +00:00
2020-11-23 13:17:16 +00:00
if (jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {
2019-08-27 13:03:21 +00:00
return jQuery;
}
return null;
};
2021-03-23 16:26:54 +00:00
const onDOMContentLoaded = callback => {
2020-11-11 17:07:37 +00:00
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', callback);
} else {
callback();
}
};
2021-03-23 16:26:54 +00:00
const isRTL = () => document.documentElement.dir === 'rtl';
2020-12-03 13:08:31 +00:00
2021-03-23 16:26:54 +00:00
const defineJQueryPlugin = (name, plugin) => {
onDOMContentLoaded(() => {
const $ = getjQuery();
/* istanbul ignore if */
2020-12-03 14:18:59 +00:00
if ($) {
2021-03-23 16:26:54 +00:00
const JQUERY_NO_CONFLICT = $.fn[name];
$.fn[name] = plugin.jQueryInterface;
$.fn[name].Constructor = plugin;
2020-12-03 14:18:59 +00:00
2021-03-23 16:26:54 +00:00
$.fn[name].noConflict = () => {
$.fn[name] = JQUERY_NO_CONFLICT;
return plugin.jQueryInterface;
};
2020-12-03 14:18:59 +00:00
}
});
};
2020-12-03 14:18:59 +00:00
2021-03-23 16:26:54 +00:00
/**
* --------------------------------------------------------------------------
* Bootstrap (v5.0.0-beta3): modal.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
2020-12-03 14:18:59 +00:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
2021-03-23 16:26:54 +00:00
const NAME = 'modal';
const DATA_KEY = 'bs.modal';
const EVENT_KEY = `.${DATA_KEY}`;
const DATA_API_KEY = '.data-api';
const ESCAPE_KEY = 'Escape';
const Default = {
2018-11-13 06:41:12 +00:00
backdrop: true,
keyboard: true,
2020-12-03 14:18:59 +00:00
focus: true
2018-11-13 06:41:12 +00:00
};
2021-03-23 16:26:54 +00:00
const DefaultType = {
2018-11-13 06:41:12 +00:00
backdrop: '(boolean|string)',
keyboard: 'boolean',
2020-12-03 14:18:59 +00:00
focus: 'boolean'
2018-11-13 06:41:12 +00:00
};
2021-03-23 16:26:54 +00:00
const EVENT_HIDE = `hide${EVENT_KEY}`;
const EVENT_HIDE_PREVENTED = `hidePrevented${EVENT_KEY}`;
const EVENT_HIDDEN = `hidden${EVENT_KEY}`;
const EVENT_SHOW = `show${EVENT_KEY}`;
const EVENT_SHOWN = `shown${EVENT_KEY}`;
const EVENT_FOCUSIN = `focusin${EVENT_KEY}`;
const EVENT_RESIZE = `resize${EVENT_KEY}`;
const EVENT_CLICK_DISMISS = `click.dismiss${EVENT_KEY}`;
const EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`;
const EVENT_MOUSEUP_DISMISS = `mouseup.dismiss${EVENT_KEY}`;
const EVENT_MOUSEDOWN_DISMISS = `mousedown.dismiss${EVENT_KEY}`;
const EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`;
const CLASS_NAME_SCROLLBAR_MEASURER = 'modal-scrollbar-measure';
const CLASS_NAME_BACKDROP = 'modal-backdrop';
const CLASS_NAME_OPEN = 'modal-open';
const CLASS_NAME_FADE = 'fade';
const CLASS_NAME_SHOW = 'show';
const CLASS_NAME_STATIC = 'modal-static';
const SELECTOR_DIALOG = '.modal-dialog';
const SELECTOR_MODAL_BODY = '.modal-body';
const SELECTOR_DATA_TOGGLE = '[data-bs-toggle="modal"]';
const SELECTOR_DATA_DISMISS = '[data-bs-dismiss="modal"]';
const SELECTOR_FIXED_CONTENT = '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top';
const SELECTOR_STICKY_CONTENT = '.sticky-top';
2019-10-08 06:39:10 +00:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2018-11-13 06:41:12 +00:00
2021-03-23 16:26:54 +00:00
class Modal extends BaseComponent__default['default'] {
constructor(element, config) {
super(element);
this._config = this._getConfig(config);
this._dialog = SelectorEngine__default['default'].findOne(SELECTOR_DIALOG, this._element);
this._backdrop = null;
this._isShown = false;
this._isBodyOverflowing = false;
this._ignoreBackdropClick = false;
this._isTransitioning = false;
this._scrollbarWidth = 0;
2018-11-13 06:41:12 +00:00
} // Getters
2021-03-23 16:26:54 +00:00
static get Default() {
return Default;
}
2018-11-13 06:41:12 +00:00
2021-03-23 16:26:54 +00:00
static get DATA_KEY() {
return DATA_KEY;
} // Public
2015-08-13 04:12:03 +00:00
2021-03-23 16:26:54 +00:00
toggle(relatedTarget) {
return this._isShown ? this.hide() : this.show(relatedTarget);
}
show(relatedTarget) {
2018-11-13 06:41:12 +00:00
if (this._isShown || this._isTransitioning) {
return;
}
2021-03-23 16:26:54 +00:00
if (this._isAnimated()) {
2018-11-13 06:41:12 +00:00
this._isTransitioning = true;
}
2021-03-23 16:26:54 +00:00
const showEvent = EventHandler__default['default'].trigger(this._element, EVENT_SHOW, {
relatedTarget
2018-11-13 06:41:12 +00:00
});
2016-10-10 00:26:51 +00:00
2019-03-01 16:31:34 +00:00
if (this._isShown || showEvent.defaultPrevented) {
2018-11-13 06:41:12 +00:00
return;
}
2018-11-13 06:41:12 +00:00
this._isShown = true;
2016-11-01 04:14:23 +00:00
2018-11-13 06:41:12 +00:00
this._checkScrollbar();
2018-11-13 06:41:12 +00:00
this._setScrollbar();
2016-12-02 18:13:36 +00:00
2018-11-13 06:41:12 +00:00
this._adjustDialog();
2017-04-02 02:18:29 +00:00
2018-11-13 06:41:12 +00:00
this._setEscapeEvent();
2018-11-13 06:41:12 +00:00
this._setResizeEvent();
2017-04-02 02:18:29 +00:00
2021-03-23 16:26:54 +00:00
EventHandler__default['default'].on(this._element, EVENT_CLICK_DISMISS, SELECTOR_DATA_DISMISS, event => this.hide(event));
EventHandler__default['default'].on(this._dialog, EVENT_MOUSEDOWN_DISMISS, () => {
EventHandler__default['default'].one(this._element, EVENT_MOUSEUP_DISMISS, event => {
if (event.target === this._element) {
this._ignoreBackdropClick = true;
2018-11-13 06:41:12 +00:00
}
2018-07-24 00:51:14 +00:00
});
2018-11-13 06:41:12 +00:00
});
2021-03-23 16:26:54 +00:00
this._showBackdrop(() => this._showElement(relatedTarget));
}
2021-03-23 16:26:54 +00:00
hide(event) {
2018-11-13 06:41:12 +00:00
if (event) {
event.preventDefault();
}
2018-11-13 06:41:12 +00:00
if (!this._isShown || this._isTransitioning) {
return;
}
2021-03-23 16:26:54 +00:00
const hideEvent = EventHandler__default['default'].trigger(this._element, EVENT_HIDE);
if (hideEvent.defaultPrevented) {
2018-11-13 06:41:12 +00:00
return;
}
2017-10-15 22:51:44 +00:00
2018-11-13 06:41:12 +00:00
this._isShown = false;
2019-03-01 16:31:34 +00:00
2021-03-23 16:26:54 +00:00
const isAnimated = this._isAnimated();
2017-04-02 02:18:29 +00:00
2021-03-23 16:26:54 +00:00
if (isAnimated) {
2018-11-13 06:41:12 +00:00
this._isTransitioning = true;
}
2018-11-13 06:41:12 +00:00
this._setEscapeEvent();
2018-11-13 06:41:12 +00:00
this._setResizeEvent();
2016-10-10 00:26:51 +00:00
2020-09-14 15:12:06 +00:00
EventHandler__default['default'].off(document, EVENT_FOCUSIN);
2019-03-01 16:31:34 +00:00
2020-03-28 10:29:08 +00:00
this._element.classList.remove(CLASS_NAME_SHOW);
2019-03-01 16:31:34 +00:00
2020-09-14 15:12:06 +00:00
EventHandler__default['default'].off(this._element, EVENT_CLICK_DISMISS);
EventHandler__default['default'].off(this._dialog, EVENT_MOUSEDOWN_DISMISS);
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
if (isAnimated) {
const transitionDuration = getTransitionDurationFromElement(this._element);
EventHandler__default['default'].one(this._element, 'transitionend', event => this._hideModal(event));
2019-03-01 16:31:34 +00:00
emulateTransitionEnd(this._element, transitionDuration);
2018-11-13 06:41:12 +00:00
} else {
this._hideModal();
}
2021-03-23 16:26:54 +00:00
}
2020-12-03 14:18:59 +00:00
2021-03-23 16:26:54 +00:00
dispose() {
[window, this._element, this._dialog].forEach(htmlElement => EventHandler__default['default'].off(htmlElement, EVENT_KEY));
super.dispose();
2018-11-13 06:41:12 +00:00
/**
2020-03-28 10:29:08 +00:00
* `document` has 2 events `EVENT_FOCUSIN` and `EVENT_CLICK_DATA_API`
2018-11-13 06:41:12 +00:00
* Do not move `document` in `htmlElements` array
2020-03-28 10:29:08 +00:00
* It will remove `EVENT_CLICK_DATA_API` event that should remain
2018-11-13 06:41:12 +00:00
*/
2017-03-26 18:26:31 +00:00
2020-09-14 15:12:06 +00:00
EventHandler__default['default'].off(document, EVENT_FOCUSIN);
2018-11-13 06:41:12 +00:00
this._config = null;
this._dialog = null;
this._backdrop = null;
this._isShown = null;
this._isBodyOverflowing = null;
this._ignoreBackdropClick = null;
this._isTransitioning = null;
this._scrollbarWidth = null;
2021-03-23 16:26:54 +00:00
}
2016-10-10 00:26:51 +00:00
2021-03-23 16:26:54 +00:00
handleUpdate() {
2018-11-13 06:41:12 +00:00
this._adjustDialog();
2019-01-04 16:29:45 +00:00
} // Private
2016-10-10 00:26:51 +00:00
2021-03-23 16:26:54 +00:00
_getConfig(config) {
config = { ...Default,
...config
};
2019-03-01 16:31:34 +00:00
typeCheckConfig(NAME, config, DefaultType);
2018-11-13 06:41:12 +00:00
return config;
2021-03-23 16:26:54 +00:00
}
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
_showElement(relatedTarget) {
const isAnimated = this._isAnimated();
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
const modalBody = SelectorEngine__default['default'].findOne(SELECTOR_MODAL_BODY, this._dialog);
2019-08-27 13:03:21 +00:00
2018-11-13 06:41:12 +00:00
if (!this._element.parentNode || this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {
// Don't move modal's DOM position
document.body.appendChild(this._element);
}
2017-09-30 21:28:03 +00:00
2018-11-13 06:41:12 +00:00
this._element.style.display = 'block';
2017-09-30 21:28:03 +00:00
2018-11-13 06:41:12 +00:00
this._element.removeAttribute('aria-hidden');
2018-12-15 23:13:22 +00:00
this._element.setAttribute('aria-modal', true);
2020-06-13 22:40:28 +00:00
this._element.setAttribute('role', 'dialog');
2020-05-13 18:53:43 +00:00
this._element.scrollTop = 0;
if (modalBody) {
2019-08-27 13:03:21 +00:00
modalBody.scrollTop = 0;
}
2021-03-23 16:26:54 +00:00
if (isAnimated) {
2019-03-01 16:31:34 +00:00
reflow(this._element);
2018-11-13 06:41:12 +00:00
}
2020-03-28 10:29:08 +00:00
this._element.classList.add(CLASS_NAME_SHOW);
2018-07-24 00:51:14 +00:00
2018-11-13 06:41:12 +00:00
if (this._config.focus) {
this._enforceFocus();
}
2021-03-23 16:26:54 +00:00
const transitionComplete = () => {
if (this._config.focus) {
this._element.focus();
2017-09-06 04:05:12 +00:00
}
2021-03-23 16:26:54 +00:00
this._isTransitioning = false;
EventHandler__default['default'].trigger(this._element, EVENT_SHOWN, {
relatedTarget
2019-03-01 16:31:34 +00:00
});
2017-09-30 21:28:03 +00:00
};
2021-03-23 16:26:54 +00:00
if (isAnimated) {
const transitionDuration = getTransitionDurationFromElement(this._dialog);
EventHandler__default['default'].one(this._dialog, 'transitionend', transitionComplete);
2019-03-01 16:31:34 +00:00
emulateTransitionEnd(this._dialog, transitionDuration);
2018-11-13 06:41:12 +00:00
} else {
transitionComplete();
}
2021-03-23 16:26:54 +00:00
}
2021-03-23 16:26:54 +00:00
_enforceFocus() {
2020-09-14 15:12:06 +00:00
EventHandler__default['default'].off(document, EVENT_FOCUSIN); // guard against infinite focus loop
2019-03-01 16:31:34 +00:00
2021-03-23 16:26:54 +00:00
EventHandler__default['default'].on(document, EVENT_FOCUSIN, event => {
if (document !== event.target && this._element !== event.target && !this._element.contains(event.target)) {
this._element.focus();
}
2018-11-13 06:41:12 +00:00
});
2021-03-23 16:26:54 +00:00
}
2016-10-10 00:26:51 +00:00
2021-03-23 16:26:54 +00:00
_setEscapeEvent() {
2020-03-28 10:29:08 +00:00
if (this._isShown) {
2021-03-23 16:26:54 +00:00
EventHandler__default['default'].on(this._element, EVENT_KEYDOWN_DISMISS, event => {
if (this._config.keyboard && event.key === ESCAPE_KEY) {
2020-03-28 10:29:08 +00:00
event.preventDefault();
2021-03-23 16:26:54 +00:00
this.hide();
} else if (!this._config.keyboard && event.key === ESCAPE_KEY) {
this._triggerBackdropTransition();
2018-11-13 06:41:12 +00:00
}
});
} else {
2020-09-14 15:12:06 +00:00
EventHandler__default['default'].off(this._element, EVENT_KEYDOWN_DISMISS);
2018-11-13 06:41:12 +00:00
}
2021-03-23 16:26:54 +00:00
}
2021-03-23 16:26:54 +00:00
_setResizeEvent() {
2018-11-13 06:41:12 +00:00
if (this._isShown) {
2021-03-23 16:26:54 +00:00
EventHandler__default['default'].on(window, EVENT_RESIZE, () => this._adjustDialog());
2018-11-13 06:41:12 +00:00
} else {
2020-09-14 15:12:06 +00:00
EventHandler__default['default'].off(window, EVENT_RESIZE);
2018-11-13 06:41:12 +00:00
}
2021-03-23 16:26:54 +00:00
}
2021-03-23 16:26:54 +00:00
_hideModal() {
2018-11-13 06:41:12 +00:00
this._element.style.display = 'none';
2018-11-13 06:41:12 +00:00
this._element.setAttribute('aria-hidden', true);
2018-12-15 23:13:22 +00:00
this._element.removeAttribute('aria-modal');
2020-06-13 22:40:28 +00:00
this._element.removeAttribute('role');
2018-11-13 06:41:12 +00:00
this._isTransitioning = false;
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
this._showBackdrop(() => {
2020-03-28 10:29:08 +00:00
document.body.classList.remove(CLASS_NAME_OPEN);
2021-03-23 16:26:54 +00:00
this._resetAdjustments();
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
this._resetScrollbar();
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
EventHandler__default['default'].trigger(this._element, EVENT_HIDDEN);
2018-11-13 06:41:12 +00:00
});
2021-03-23 16:26:54 +00:00
}
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
_removeBackdrop() {
this._backdrop.parentNode.removeChild(this._backdrop);
2019-03-01 16:31:34 +00:00
this._backdrop = null;
2021-03-23 16:26:54 +00:00
}
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
_showBackdrop(callback) {
const isAnimated = this._isAnimated();
2018-11-13 06:41:12 +00:00
if (this._isShown && this._config.backdrop) {
this._backdrop = document.createElement('div');
2020-03-28 10:29:08 +00:00
this._backdrop.className = CLASS_NAME_BACKDROP;
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
if (isAnimated) {
this._backdrop.classList.add(CLASS_NAME_FADE);
2018-11-13 06:41:12 +00:00
}
2019-03-01 16:31:34 +00:00
document.body.appendChild(this._backdrop);
2021-03-23 16:26:54 +00:00
EventHandler__default['default'].on(this._element, EVENT_CLICK_DISMISS, event => {
if (this._ignoreBackdropClick) {
this._ignoreBackdropClick = false;
return;
}
2017-09-06 04:05:12 +00:00
2018-11-13 06:41:12 +00:00
if (event.target !== event.currentTarget) {
return;
}
2021-03-23 16:26:54 +00:00
if (this._config.backdrop === 'static') {
this._triggerBackdropTransition();
2020-11-23 13:17:16 +00:00
} else {
2021-03-23 16:26:54 +00:00
this.hide();
2020-11-23 13:17:16 +00:00
}
2018-11-13 06:41:12 +00:00
});
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
if (isAnimated) {
2019-03-01 16:31:34 +00:00
reflow(this._backdrop);
2018-11-13 06:41:12 +00:00
}
2020-03-28 10:29:08 +00:00
this._backdrop.classList.add(CLASS_NAME_SHOW);
2021-03-23 16:26:54 +00:00
if (!isAnimated) {
2017-09-30 21:28:03 +00:00
callback();
2018-11-13 06:41:12 +00:00
return;
}
2016-10-10 00:26:51 +00:00
2021-03-23 16:26:54 +00:00
const backdropTransitionDuration = getTransitionDurationFromElement(this._backdrop);
EventHandler__default['default'].one(this._backdrop, 'transitionend', callback);
2019-03-01 16:31:34 +00:00
emulateTransitionEnd(this._backdrop, backdropTransitionDuration);
2018-11-13 06:41:12 +00:00
} else if (!this._isShown && this._backdrop) {
2020-03-28 10:29:08 +00:00
this._backdrop.classList.remove(CLASS_NAME_SHOW);
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
const callbackRemove = () => {
this._removeBackdrop();
2017-09-30 21:28:03 +00:00
callback();
2018-11-13 06:41:12 +00:00
};
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
if (isAnimated) {
const backdropTransitionDuration = getTransitionDurationFromElement(this._backdrop);
EventHandler__default['default'].one(this._backdrop, 'transitionend', callbackRemove);
2021-03-23 16:26:54 +00:00
emulateTransitionEnd(this._backdrop, backdropTransitionDuration);
2018-11-13 06:41:12 +00:00
} else {
callbackRemove();
2018-07-24 00:51:14 +00:00
}
} else {
2018-11-13 06:41:12 +00:00
callback();
}
2021-03-23 16:26:54 +00:00
}
2019-11-08 08:11:23 +00:00
2021-03-23 16:26:54 +00:00
_isAnimated() {
return this._element.classList.contains(CLASS_NAME_FADE);
}
2019-11-08 08:11:23 +00:00
2021-03-23 16:26:54 +00:00
_triggerBackdropTransition() {
const hideEvent = EventHandler__default['default'].trigger(this._element, EVENT_HIDE_PREVENTED);
2019-11-08 08:11:23 +00:00
2020-11-23 13:17:16 +00:00
if (hideEvent.defaultPrevented) {
return;
}
2019-11-08 08:11:23 +00:00
2021-03-23 16:26:54 +00:00
const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight;
2020-09-14 15:12:06 +00:00
2020-11-23 13:17:16 +00:00
if (!isModalOverflowing) {
this._element.style.overflowY = 'hidden';
}
2020-09-14 15:12:06 +00:00
2020-11-23 13:17:16 +00:00
this._element.classList.add(CLASS_NAME_STATIC);
2019-11-08 08:11:23 +00:00
2021-03-23 16:26:54 +00:00
const modalTransitionDuration = getTransitionDurationFromElement(this._dialog);
EventHandler__default['default'].off(this._element, 'transitionend');
2021-03-23 16:26:54 +00:00
EventHandler__default['default'].one(this._element, 'transitionend', () => {
this._element.classList.remove(CLASS_NAME_STATIC);
2020-09-14 15:12:06 +00:00
2020-11-23 13:17:16 +00:00
if (!isModalOverflowing) {
2021-03-23 16:26:54 +00:00
EventHandler__default['default'].one(this._element, 'transitionend', () => {
this._element.style.overflowY = '';
2020-11-23 13:17:16 +00:00
});
2021-03-23 16:26:54 +00:00
emulateTransitionEnd(this._element, modalTransitionDuration);
2020-11-23 13:17:16 +00:00
}
});
emulateTransitionEnd(this._element, modalTransitionDuration);
2019-11-08 08:11:23 +00:00
2020-11-23 13:17:16 +00:00
this._element.focus();
2019-01-04 16:29:45 +00:00
} // ----------------------------------------------------------------------
2018-11-13 06:41:12 +00:00
// the following methods are used to handle overflowing modals
// ----------------------------------------------------------------------
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
_adjustDialog() {
const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight;
if (!this._isBodyOverflowing && isModalOverflowing && !isRTL() || this._isBodyOverflowing && !isModalOverflowing && isRTL()) {
this._element.style.paddingLeft = `${this._scrollbarWidth}px`;
2018-11-13 06:41:12 +00:00
}
2021-03-23 16:26:54 +00:00
if (this._isBodyOverflowing && !isModalOverflowing && !isRTL() || !this._isBodyOverflowing && isModalOverflowing && isRTL()) {
this._element.style.paddingRight = `${this._scrollbarWidth}px`;
2018-11-13 06:41:12 +00:00
}
2021-03-23 16:26:54 +00:00
}
2018-11-13 06:41:12 +00:00
2021-03-23 16:26:54 +00:00
_resetAdjustments() {
2018-11-13 06:41:12 +00:00
this._element.style.paddingLeft = '';
this._element.style.paddingRight = '';
2021-03-23 16:26:54 +00:00
}
2018-11-13 06:41:12 +00:00
2021-03-23 16:26:54 +00:00
_checkScrollbar() {
const rect = document.body.getBoundingClientRect();
2020-05-13 18:53:43 +00:00
this._isBodyOverflowing = Math.round(rect.left + rect.right) < window.innerWidth;
2018-11-13 06:41:12 +00:00
this._scrollbarWidth = this._getScrollbarWidth();
2021-03-23 16:26:54 +00:00
}
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
_setScrollbar() {
2018-11-13 06:41:12 +00:00
if (this._isBodyOverflowing) {
2021-03-23 16:26:54 +00:00
this._setElementAttributes(SELECTOR_FIXED_CONTENT, 'paddingRight', calculatedValue => calculatedValue + this._scrollbarWidth);
2021-03-23 16:26:54 +00:00
this._setElementAttributes(SELECTOR_STICKY_CONTENT, 'marginRight', calculatedValue => calculatedValue - this._scrollbarWidth);
2021-03-23 16:26:54 +00:00
this._setElementAttributes('body', 'paddingRight', calculatedValue => calculatedValue + this._scrollbarWidth);
2018-11-13 06:41:12 +00:00
}
2018-11-24 16:22:59 +00:00
2020-03-28 10:29:08 +00:00
document.body.classList.add(CLASS_NAME_OPEN);
2021-03-23 16:26:54 +00:00
}
2017-04-08 20:22:53 +00:00
2021-03-23 16:26:54 +00:00
_setElementAttributes(selector, styleProp, callback) {
SelectorEngine__default['default'].find(selector).forEach(element => {
if (element !== document.body && window.innerWidth > element.clientWidth + this._scrollbarWidth) {
return;
}
const actualValue = element.style[styleProp];
const calculatedValue = window.getComputedStyle(element)[styleProp];
Manipulator__default['default'].setDataAttribute(element, styleProp, actualValue);
element.style[styleProp] = callback(Number.parseFloat(calculatedValue)) + 'px';
});
2021-03-23 16:26:54 +00:00
}
2018-11-13 06:41:12 +00:00
2021-03-23 16:26:54 +00:00
_resetScrollbar() {
this._resetElementAttributes(SELECTOR_FIXED_CONTENT, 'paddingRight');
2019-03-01 16:31:34 +00:00
this._resetElementAttributes(SELECTOR_STICKY_CONTENT, 'marginRight');
2018-11-13 06:41:12 +00:00
this._resetElementAttributes('body', 'paddingRight');
2021-03-23 16:26:54 +00:00
}
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
_resetElementAttributes(selector, styleProp) {
SelectorEngine__default['default'].find(selector).forEach(element => {
const value = Manipulator__default['default'].getDataAttribute(element, styleProp);
2019-03-01 16:31:34 +00:00
if (typeof value === 'undefined' && element === document.body) {
element.style[styleProp] = '';
} else {
Manipulator__default['default'].removeDataAttribute(element, styleProp);
element.style[styleProp] = value;
}
});
2021-03-23 16:26:54 +00:00
}
2017-04-08 20:22:53 +00:00
2021-03-23 16:26:54 +00:00
_getScrollbarWidth() {
2018-11-13 06:41:12 +00:00
// thx d.walsh
2021-03-23 16:26:54 +00:00
const scrollDiv = document.createElement('div');
2020-03-28 10:29:08 +00:00
scrollDiv.className = CLASS_NAME_SCROLLBAR_MEASURER;
2018-11-13 06:41:12 +00:00
document.body.appendChild(scrollDiv);
2021-03-23 16:26:54 +00:00
const scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth;
2018-11-13 06:41:12 +00:00
document.body.removeChild(scrollDiv);
return scrollbarWidth;
2019-01-04 16:29:45 +00:00
} // Static
2016-10-10 00:26:51 +00:00
2021-03-23 16:26:54 +00:00
static jQueryInterface(config, relatedTarget) {
return this.each(function () {
let data = Data__default['default'].get(this, DATA_KEY);
const _config = { ...Default,
...Manipulator__default['default'].getDataAttributes(this),
...(typeof config === 'object' && config ? config : {})
};
2017-09-30 21:28:03 +00:00
2018-11-13 06:41:12 +00:00
if (!data) {
data = new Modal(this, _config);
}
2017-09-30 21:28:03 +00:00
2018-11-13 06:41:12 +00:00
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
2021-03-23 16:26:54 +00:00
throw new TypeError(`No method named "${config}"`);
2017-09-06 04:05:12 +00:00
}
2017-09-30 21:28:03 +00:00
2018-11-13 06:41:12 +00:00
data[config](relatedTarget);
2018-07-24 00:51:14 +00:00
}
2018-11-13 06:41:12 +00:00
});
2021-03-23 16:26:54 +00:00
}
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
}
2018-11-13 06:41:12 +00:00
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
2020-09-14 15:12:06 +00:00
EventHandler__default['default'].on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {
2021-03-23 16:26:54 +00:00
const target = getElementFromSelector(this);
2018-11-13 06:41:12 +00:00
if (this.tagName === 'A' || this.tagName === 'AREA') {
event.preventDefault();
}
2021-03-23 16:26:54 +00:00
EventHandler__default['default'].one(target, EVENT_SHOW, showEvent => {
2019-03-01 16:31:34 +00:00
if (showEvent.defaultPrevented) {
// only register focus restorer if modal will actually get shown
2018-11-13 06:41:12 +00:00
return;
}
2021-03-23 16:26:54 +00:00
EventHandler__default['default'].one(target, EVENT_HIDDEN, () => {
if (isVisible(this)) {
this.focus();
}
});
});
2021-03-23 16:26:54 +00:00
let data = Data__default['default'].get(target, DATA_KEY);
2019-03-01 16:31:34 +00:00
if (!data) {
2021-03-23 16:26:54 +00:00
const config = { ...Manipulator__default['default'].getDataAttributes(target),
...Manipulator__default['default'].getDataAttributes(this)
};
2019-03-01 16:31:34 +00:00
data = new Modal(target, config);
}
data.toggle(this);
2018-11-13 06:41:12 +00:00
});
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
2020-11-11 17:07:37 +00:00
* add .Modal to jQuery only if jQuery is present
2018-11-13 06:41:12 +00:00
*/
defineJQueryPlugin(NAME, Modal);
return Modal;
2018-07-24 00:51:14 +00:00
2019-11-08 08:11:23 +00:00
})));
2018-07-24 00:51:14 +00:00
//# sourceMappingURL=modal.js.map