UNPKG

bootstrap-vue

Version:

BootstrapVue, with over 40 plugins and more than 80 custom components, custom directives, and over 300 icons, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-AR

65 lines (57 loc) 2.21 kB
import { arrayIncludes } from '../utils/array'; import { eventOff, eventOn } from '../utils/dom'; import { isBrowser } from '../utils/env'; import { isString, isFunction } from '../utils/inspect'; import { keys } from '../utils/object'; var eventOptions = { passive: true, capture: false }; var PROP = '$_bv_documentHandlers_'; // @vue/component export default { created: function created() { var _this = this; /* istanbul ignore next */ if (!isBrowser) { return; } // Declare non-reactive property // Object of arrays, keyed by event name, // where value is an array of handlers // Prop will be defined on client only this[PROP] = {}; // Set up our beforeDestroy handler (client only) this.$once('hook:beforeDestroy', function () { var items = _this[PROP] || {}; // Immediately delete this[PROP] to prevent the // listenOn/Off methods from running (which may occur // due to requestAnimationFrame/transition delays) delete _this[PROP]; // Remove all registered event handlers keys(items).forEach(function (evtName) { var handlers = items[evtName] || []; handlers.forEach(function (handler) { return eventOff(document, evtName, handler, eventOptions); }); }); }); }, methods: { listenDocument: function listenDocument(on, evtName, handler) { on ? this.listenOnDocument(evtName, handler) : this.listenOffDocument(evtName, handler); }, listenOnDocument: function listenOnDocument(evtName, handler) { if (this[PROP] && isString(evtName) && isFunction(handler)) { this[PROP][evtName] = this[PROP][evtName] || []; if (!arrayIncludes(this[PROP][evtName], handler)) { this[PROP][evtName].push(handler); eventOn(document, evtName, handler, eventOptions); } } }, listenOffDocument: function listenOffDocument(evtName, handler) { if (this[PROP] && isString(evtName) && isFunction(handler)) { eventOff(document, evtName, handler, eventOptions); this[PROP][evtName] = (this[PROP][evtName] || []).filter(function (h) { return h !== handler; }); } } } };