2018-11-13 07:41:12 +01:00
|
|
|
/*!
|
2024-02-20 16:14:29 +01:00
|
|
|
* Bootstrap toast.js v5.3.3 (https://getbootstrap.com/)
|
|
|
|
* Copyright 2011-2024 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) {
|
2023-04-03 09:26:50 +02:00
|
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./base-component.js'), require('./dom/event-handler.js'), require('./util/component-functions.js'), require('./util/index.js')) :
|
|
|
|
typeof define === 'function' && define.amd ? define(['./base-component', './dom/event-handler', './util/component-functions', './util/index'], factory) :
|
|
|
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Toast = factory(global.BaseComponent, global.EventHandler, global.ComponentFunctions, global.Index));
|
|
|
|
})(this, (function (BaseComponent, EventHandler, componentFunctions_js, index_js) { 'use strict';
|
2021-02-10 17:14:51 +01:00
|
|
|
|
2021-08-04 17:41:51 +02:00
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
2023-03-24 15:30:16 +01:00
|
|
|
* Bootstrap toast.js
|
2021-08-04 17:41:51 +02:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*/
|
2022-12-24 17:37:22 +01:00
|
|
|
|
2023-05-30 17:15:55 +02:00
|
|
|
|
2021-08-04 17:41:51 +02:00
|
|
|
/**
|
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}`;
|
2021-05-13 18:22:20 +02:00
|
|
|
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
|
|
|
};
|
2022-12-24 17:37:22 +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
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
class Toast extends BaseComponent {
|
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;
|
2021-05-13 18:22:20 +02:00
|
|
|
this._hasMouseInteraction = false;
|
|
|
|
this._hasKeyboardInteraction = false;
|
2021-03-23 17:26:54 +01:00
|
|
|
this._setListeners();
|
2022-12-24 17:37:22 +01:00
|
|
|
}
|
2020-12-03 15:18:59 +01:00
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
// Getters
|
2021-03-23 17:26:54 +01:00
|
|
|
static get Default() {
|
|
|
|
return Default;
|
|
|
|
}
|
2022-05-13 08:07:23 +02:00
|
|
|
static get DefaultType() {
|
|
|
|
return DefaultType;
|
|
|
|
}
|
2021-05-13 18:22:20 +02:00
|
|
|
static get NAME() {
|
|
|
|
return NAME;
|
2022-12-24 17:37:22 +01:00
|
|
|
}
|
2018-11-13 07:41:12 +01:00
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
// Public
|
2021-03-23 17:26:54 +01:00
|
|
|
show() {
|
2022-12-24 17:37:22 +01:00
|
|
|
const showEvent = EventHandler.trigger(this._element, EVENT_SHOW);
|
2019-07-12 23:56:26 +02:00
|
|
|
if (showEvent.defaultPrevented) {
|
|
|
|
return;
|
|
|
|
}
|
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
|
|
|
}
|
2021-03-23 17:26:54 +01:00
|
|
|
const complete = () => {
|
|
|
|
this._element.classList.remove(CLASS_NAME_SHOWING);
|
2022-12-24 17:37:22 +01:00
|
|
|
EventHandler.trigger(this._element, EVENT_SHOWN);
|
2021-05-13 18:22:20 +02: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
|
2022-12-24 17:37:22 +01:00
|
|
|
index_js.reflow(this._element);
|
2022-05-13 08:07:23 +02:00
|
|
|
this._element.classList.add(CLASS_NAME_SHOW, CLASS_NAME_SHOWING);
|
2021-05-13 18:22:20 +02:00
|
|
|
this._queueCallback(complete, this._element, this._config.animation);
|
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;
|
|
|
|
}
|
2022-12-24 17:37:22 +01:00
|
|
|
const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE);
|
2019-07-12 23:56:26 +02:00
|
|
|
if (hideEvent.defaultPrevented) {
|
|
|
|
return;
|
|
|
|
}
|
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);
|
2022-12-24 17:37:22 +01:00
|
|
|
EventHandler.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);
|
2021-05-13 18:22:20 +02:00
|
|
|
this._queueCallback(complete, this._element, this._config.animation);
|
2021-03-23 17:26:54 +01:00
|
|
|
}
|
|
|
|
dispose() {
|
2020-09-14 17:12:06 +02:00
|
|
|
this._clearTimeout();
|
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
|
|
|
}
|
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);
|
2022-12-24 17:37:22 +01:00
|
|
|
}
|
2018-11-13 07:41:12 +01:00
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
// Private
|
2021-03-23 17:26:54 +01:00
|
|
|
|
2021-05-13 18:22:20 +02: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':
|
2022-10-03 09:44:02 +02:00
|
|
|
{
|
|
|
|
this._hasMouseInteraction = isInteracting;
|
|
|
|
break;
|
|
|
|
}
|
2021-05-13 18:22:20 +02:00
|
|
|
case 'focusin':
|
|
|
|
case 'focusout':
|
2022-10-03 09:44:02 +02:00
|
|
|
{
|
|
|
|
this._hasKeyboardInteraction = isInteracting;
|
|
|
|
break;
|
|
|
|
}
|
2021-05-13 18:22:20 +02:00
|
|
|
}
|
|
|
|
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() {
|
2022-12-24 17:37:22 +01:00
|
|
|
EventHandler.on(this._element, EVENT_MOUSEOVER, event => this._onInteraction(event, true));
|
|
|
|
EventHandler.on(this._element, EVENT_MOUSEOUT, event => this._onInteraction(event, false));
|
|
|
|
EventHandler.on(this._element, EVENT_FOCUSIN, event => this._onInteraction(event, true));
|
|
|
|
EventHandler.on(this._element, EVENT_FOCUSOUT, event => this._onInteraction(event, false));
|
2021-03-23 17:26:54 +01:00
|
|
|
}
|
|
|
|
_clearTimeout() {
|
2020-09-14 17:12:06 +02:00
|
|
|
clearTimeout(this._timeout);
|
|
|
|
this._timeout = null;
|
2022-12-24 17:37:22 +01:00
|
|
|
}
|
2021-03-23 17:26:54 +01:00
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
// Static
|
2021-03-23 17:26:54 +01:00
|
|
|
static jQueryInterface(config) {
|
2018-11-24 17:22:59 +01:00
|
|
|
return this.each(function () {
|
2021-06-22 20:29:16 +02:00
|
|
|
const data = Toast.getOrCreateInstance(this, config);
|
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
|
|
|
}
|
|
|
|
}
|
2022-12-24 17:37:22 +01:00
|
|
|
|
2022-05-13 08:07:23 +02:00
|
|
|
/**
|
|
|
|
* Data API implementation
|
|
|
|
*/
|
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
componentFunctions_js.enableDismissTrigger(Toast);
|
2021-08-04 17:41:51 +02:00
|
|
|
|
2018-11-24 17:22:59 +01:00
|
|
|
/**
|
|
|
|
* jQuery
|
|
|
|
*/
|
2018-11-13 07:41:12 +01:00
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
index_js.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
|