primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
131 lines (125 loc) • 7.56 kB
JavaScript
import { removeClass, addClass } from '@primeuix/utils/dom';
import BaseDirective from '@primevue/core/basedirective';
import AnimateOnScrollStyle from 'primevue/animateonscroll/style';
var BaseAnimateOnScroll = BaseDirective.extend({
style: AnimateOnScrollStyle
});
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), true).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: true, configurable: true, writable: true }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = true, o = false; try { if (i = (t = t.call(r)).next, 0 === l) ; else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = true, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
var AnimateOnScroll = BaseAnimateOnScroll.extend('animateonscroll', {
created: function created() {
this.$value = this.$value || {};
this.$el.style.opacity = this.$value.enterClass ? '0' : '';
},
mounted: function mounted() {
this.$el.setAttribute('data-pd-animateonscroll', true);
this.bindIntersectionObserver();
},
unmounted: function unmounted() {
this.unbindAnimationEvents();
this.unbindIntersectionObserver();
},
observer: undefined,
resetObserver: undefined,
isObserverActive: false,
animationState: undefined,
animationEndListener: undefined,
methods: {
bindAnimationEvents: function bindAnimationEvents() {
var _this = this;
if (!this.animationEndListener) {
this.animationEndListener = function () {
removeClass(_this.$el, [_this.$value.enterClass, _this.$value.leaveClass]);
!_this.$modifiers.once && _this.resetObserver.observe(_this.$el);
_this.unbindAnimationEvents();
};
this.$el.addEventListener('animationend', this.animationEndListener);
}
},
bindIntersectionObserver: function bindIntersectionObserver() {
var _this2 = this;
var _this$$value = this.$value,
root = _this$$value.root,
rootMargin = _this$$value.rootMargin,
_this$$value$threshol = _this$$value.threshold,
threshold = _this$$value$threshol === void 0 ? 0.5 : _this$$value$threshol;
var options = {
root: root,
rootMargin: rootMargin,
threshold: threshold
};
// States
this.observer = new IntersectionObserver(function (_ref) {
var _ref2 = _slicedToArray(_ref, 1),
entry = _ref2[0];
if (_this2.isObserverActive) {
if (entry.boundingClientRect.top > 0) {
entry.isIntersecting ? _this2.enter() : _this2.leave();
}
} else if (entry.isIntersecting) {
_this2.enter();
}
_this2.isObserverActive = true;
}, options);
setTimeout(function () {
return _this2.observer.observe(_this2.$el);
}, 0);
// Reset
this.resetObserver = new IntersectionObserver(function (_ref3) {
var _ref4 = _slicedToArray(_ref3, 1),
entry = _ref4[0];
if (entry.boundingClientRect.top > 0 && !entry.isIntersecting) {
_this2.$el.style.opacity = _this2.$value.enterClass ? '0' : '';
removeClass(_this2.$el, [_this2.$value.enterClass, _this2.$value.leaveClass]);
_this2.resetObserver.unobserve(_this2.$el);
}
_this2.animationState = undefined;
}, _objectSpread(_objectSpread({}, options), {}, {
threshold: 0
}));
},
enter: function enter() {
if (this.animationState !== 'enter' && this.$value.enterClass) {
this.$el.style.opacity = '';
removeClass(this.$el, this.$value.leaveClass);
addClass(this.$el, this.$value.enterClass);
this.$modifiers.once && this.unbindIntersectionObserver(this.$el);
this.bindAnimationEvents();
this.animationState = 'enter';
}
},
leave: function leave() {
if (this.animationState !== 'leave' && this.$value.leaveClass) {
this.$el.style.opacity = this.$value.enterClass ? '0' : '';
removeClass(this.$el, this.$value.enterClass);
addClass(this.$el, this.$value.leaveClass);
this.bindAnimationEvents();
this.animationState = 'leave';
}
},
unbindAnimationEvents: function unbindAnimationEvents() {
if (this.animationEndListener) {
this.$el.removeEventListener('animationend', this.animationEndListener);
this.animationEndListener = undefined;
}
},
unbindIntersectionObserver: function unbindIntersectionObserver() {
var _this$observer, _this$resetObserver;
(_this$observer = this.observer) === null || _this$observer === void 0 || _this$observer.unobserve(this.$el);
(_this$resetObserver = this.resetObserver) === null || _this$resetObserver === void 0 || _this$resetObserver.unobserve(this.$el);
this.isObserverActive = false;
}
}
});
export { AnimateOnScroll as default };
//# sourceMappingURL=index.mjs.map