0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/js/dist/toast.js

238 lines
6.4 KiB
JavaScript
Raw Normal View History

2018-11-13 07:41:12 +01:00
/*!
* Bootstrap toast.js v5.2.0 (https://getbootstrap.com/)
2022-05-13 08:07:23 +02:00
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2020-06-16 20:50:01 +02:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2018-11-13 07:41:12 +01:00
*/
(function (global, factory) {
2022-05-13 08:07:23 +02:00
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./util/index'), require('./dom/event-handler'), require('./base-component'), require('./util/component-functions')) :
typeof define === 'function' && define.amd ? define(['./util/index', './dom/event-handler', './base-component', './util/component-functions'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Toast = factory(global.Index, global.EventHandler, global.BaseComponent, global.ComponentFunctions));
})(this, (function (index, EventHandler, BaseComponent, componentFunctions) { 'use strict';
2018-11-13 07:41:12 +01:00
2021-10-05 17:50:18 +02:00
const _interopDefaultLegacy = e => e && typeof e === 'object' && 'default' in e ? e : { default: e };
2020-09-14 17:12:06 +02:00
2021-10-05 17:50:18 +02:00
const EventHandler__default = /*#__PURE__*/_interopDefaultLegacy(EventHandler);
const BaseComponent__default = /*#__PURE__*/_interopDefaultLegacy(BaseComponent);
2021-08-04 17:41:51 +02:00
/**
* --------------------------------------------------------------------------
* Bootstrap (v5.2.0): toast.js
2021-08-04 17:41:51 +02:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
/**
2020-12-03 15:18:59 +01:00
* Constants
*/
2021-03-23 17:26:54 +01:00
const NAME = 'toast';
const DATA_KEY = 'bs.toast';
const EVENT_KEY = `.${DATA_KEY}`;
const EVENT_MOUSEOVER = `mouseover${EVENT_KEY}`;
const EVENT_MOUSEOUT = `mouseout${EVENT_KEY}`;
const EVENT_FOCUSIN = `focusin${EVENT_KEY}`;
const EVENT_FOCUSOUT = `focusout${EVENT_KEY}`;
2021-03-23 17:26:54 +01:00
const EVENT_HIDE = `hide${EVENT_KEY}`;
const EVENT_HIDDEN = `hidden${EVENT_KEY}`;
const EVENT_SHOW = `show${EVENT_KEY}`;
const EVENT_SHOWN = `shown${EVENT_KEY}`;
const CLASS_NAME_FADE = 'fade';
2021-08-04 17:41:51 +02:00
const CLASS_NAME_HIDE = 'hide'; // @deprecated - kept here only for backwards compatibility
2021-03-23 17:26:54 +01:00
const CLASS_NAME_SHOW = 'show';
const CLASS_NAME_SHOWING = 'showing';
const DefaultType = {
2018-11-24 17:22:59 +01:00
animation: 'boolean',
autohide: 'boolean',
delay: 'number'
};
2021-03-23 17:26:54 +01:00
const Default = {
2018-11-24 17:22:59 +01:00
animation: true,
autohide: true,
2020-09-14 17:12:06 +02:00
delay: 5000
2018-11-24 17:22:59 +01:00
};
2019-10-08 08:39:10 +02:00
/**
2022-05-13 08:07:23 +02:00
* Class definition
2019-10-08 08:39:10 +02:00
*/
2018-11-13 07:41:12 +01:00
2021-10-05 17:50:18 +02:00
class Toast extends BaseComponent__default.default {
2021-03-23 17:26:54 +01:00
constructor(element, config) {
2022-05-13 08:07:23 +02:00
super(element, config);
2021-03-23 17:26:54 +01:00
this._timeout = null;
this._hasMouseInteraction = false;
this._hasKeyboardInteraction = false;
2018-11-13 07:41:12 +01:00
2021-03-23 17:26:54 +01:00
this._setListeners();
} // Getters
2019-03-01 17:31:34 +01:00
2020-12-03 15:18:59 +01:00
2021-03-23 17:26:54 +01:00
static get Default() {
return Default;
}
2018-11-13 07:41:12 +01:00
2022-05-13 08:07:23 +02:00
static get DefaultType() {
return DefaultType;
}
static get NAME() {
return NAME;
2021-03-23 17:26:54 +01:00
} // Public
2018-11-13 07:41:12 +01:00
2021-03-23 17:26:54 +01:00
show() {
2021-10-05 17:50:18 +02:00
const showEvent = EventHandler__default.default.trigger(this._element, EVENT_SHOW);
2019-07-12 23:56:26 +02:00
if (showEvent.defaultPrevented) {
return;
}
2018-11-13 07:41:12 +01:00
2020-09-14 17:12:06 +02:00
this._clearTimeout();
2018-11-24 17:22:59 +01:00
if (this._config.animation) {
2020-03-28 11:29:08 +01:00
this._element.classList.add(CLASS_NAME_FADE);
2018-11-24 17:22:59 +01:00
}
2018-11-13 07:41:12 +01:00
2021-03-23 17:26:54 +01:00
const complete = () => {
this._element.classList.remove(CLASS_NAME_SHOWING);
2018-12-16 00:13:22 +01:00
2021-10-05 17:50:18 +02:00
EventHandler__default.default.trigger(this._element, EVENT_SHOWN);
2018-11-13 07:41:12 +01:00
this._maybeScheduleHide();
2018-11-13 07:41:12 +01:00
};
2021-08-04 17:41:51 +02:00
this._element.classList.remove(CLASS_NAME_HIDE); // @deprecated
2018-12-16 00:13:22 +01:00
2022-05-13 08:07:23 +02:00
index.reflow(this._element);
2021-08-04 17:41:51 +02:00
2022-05-13 08:07:23 +02:00
this._element.classList.add(CLASS_NAME_SHOW, CLASS_NAME_SHOWING);
2018-11-13 07:41:12 +01:00
this._queueCallback(complete, this._element, this._config.animation);
2021-03-23 17:26:54 +01:00
}
2018-11-13 07:41:12 +01:00
2021-03-23 17:26:54 +01:00
hide() {
2022-05-13 08:07:23 +02:00
if (!this.isShown()) {
2018-11-24 17:22:59 +01:00
return;
}
2018-11-13 07:41:12 +01:00
2021-10-05 17:50:18 +02:00
const hideEvent = EventHandler__default.default.trigger(this._element, EVENT_HIDE);
2019-07-12 23:56:26 +02:00
if (hideEvent.defaultPrevented) {
return;
}
2018-11-13 07:41:12 +01:00
2021-03-23 17:26:54 +01:00
const complete = () => {
2021-08-04 17:41:51 +02:00
this._element.classList.add(CLASS_NAME_HIDE); // @deprecated
2022-05-13 08:07:23 +02:00
this._element.classList.remove(CLASS_NAME_SHOWING, CLASS_NAME_SHOW);
2019-04-18 13:47:52 +02:00
2021-10-05 17:50:18 +02:00
EventHandler__default.default.trigger(this._element, EVENT_HIDDEN);
2019-04-18 13:47:52 +02:00
};
2021-08-04 17:41:51 +02:00
this._element.classList.add(CLASS_NAME_SHOWING);
2019-04-18 13:47:52 +02:00
this._queueCallback(complete, this._element, this._config.animation);
2021-03-23 17:26:54 +01:00
}
2018-11-13 07:41:12 +01:00
2021-03-23 17:26:54 +01:00
dispose() {
2020-09-14 17:12:06 +02:00
this._clearTimeout();
2018-11-13 07:41:12 +01:00
2022-05-13 08:07:23 +02:00
if (this.isShown()) {
2020-03-28 11:29:08 +01:00
this._element.classList.remove(CLASS_NAME_SHOW);
2018-11-24 17:22:59 +01:00
}
2018-11-13 07:41:12 +01:00
2021-03-23 17:26:54 +01:00
super.dispose();
2022-05-13 08:07:23 +02:00
}
isShown() {
return this._element.classList.contains(CLASS_NAME_SHOW);
2019-01-04 17:29:45 +01:00
} // Private
2018-11-13 07:41:12 +01:00
2021-03-23 17:26:54 +01:00
_maybeScheduleHide() {
if (!this._config.autohide) {
return;
}
if (this._hasMouseInteraction || this._hasKeyboardInteraction) {
return;
}
this._timeout = setTimeout(() => {
this.hide();
}, this._config.delay);
}
_onInteraction(event, isInteracting) {
switch (event.type) {
case 'mouseover':
case 'mouseout':
this._hasMouseInteraction = isInteracting;
break;
case 'focusin':
case 'focusout':
this._hasKeyboardInteraction = isInteracting;
break;
}
if (isInteracting) {
this._clearTimeout();
return;
}
const nextElement = event.relatedTarget;
if (this._element === nextElement || this._element.contains(nextElement)) {
return;
}
this._maybeScheduleHide();
}
2021-03-23 17:26:54 +01:00
_setListeners() {
2021-10-05 17:50:18 +02:00
EventHandler__default.default.on(this._element, EVENT_MOUSEOVER, event => this._onInteraction(event, true));
EventHandler__default.default.on(this._element, EVENT_MOUSEOUT, event => this._onInteraction(event, false));
EventHandler__default.default.on(this._element, EVENT_FOCUSIN, event => this._onInteraction(event, true));
EventHandler__default.default.on(this._element, EVENT_FOCUSOUT, event => this._onInteraction(event, false));
2021-03-23 17:26:54 +01:00
}
2020-09-14 17:12:06 +02:00
2021-03-23 17:26:54 +01:00
_clearTimeout() {
2020-09-14 17:12:06 +02:00
clearTimeout(this._timeout);
this._timeout = null;
2019-01-04 17:29:45 +01:00
} // Static
2018-11-13 07:41:12 +01:00
2021-03-23 17:26:54 +01:00
static jQueryInterface(config) {
2018-11-24 17:22:59 +01:00
return this.each(function () {
const data = Toast.getOrCreateInstance(this, config);
2018-11-13 07:41:12 +01:00
2018-11-24 17:22:59 +01:00
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
2021-03-23 17:26:54 +01:00
throw new TypeError(`No method named "${config}"`);
2018-11-13 07:41:12 +01:00
}
2018-11-24 17:22:59 +01:00
data[config](this);
2018-11-13 07:41:12 +01:00
}
2018-11-24 17:22:59 +01:00
});
2021-03-23 17:26:54 +01:00
}
2018-11-13 07:41:12 +01:00
2021-03-23 17:26:54 +01:00
}
2022-05-13 08:07:23 +02:00
/**
* Data API implementation
*/
2021-08-04 17:41:51 +02:00
2022-05-13 08:07:23 +02:00
componentFunctions.enableDismissTrigger(Toast);
2018-11-24 17:22:59 +01:00
/**
* jQuery
*/
2018-11-13 07:41:12 +01:00
2022-05-13 08:07:23 +02:00
index.defineJQueryPlugin(Toast);
2018-11-13 07:41:12 +01:00
return Toast;
2021-10-05 17:50:18 +02:00
}));
2018-11-13 07:41:12 +01:00
//# sourceMappingURL=toast.js.map