primevue-mirror/components/lib/ripple/Ripple.js

100 lines
3.3 KiB
JavaScript
Raw Normal View History

2022-09-14 11:26:01 +00:00
import { DomHandler } from 'primevue/utils';
import BaseRipple from './BaseRipple';
2022-09-06 12:03:37 +00:00
const Ripple = BaseRipple.extend('ripple', {
2022-09-06 12:03:37 +00:00
mounted(el, binding) {
2023-06-22 13:52:12 +00:00
const primevue = binding.instance.$primevue;
if (primevue && primevue.config && primevue.config.ripple) {
el.unstyled = primevue.config.unstyled || binding.value?.unstyled || false;
2023-06-22 13:52:12 +00:00
this.create(el);
this.bindEvents(el);
2022-09-06 12:03:37 +00:00
}
},
unmounted(el) {
this.remove(el);
},
timeout: undefined,
methods: {
bindEvents(el) {
el.addEventListener('mousedown', this.onMouseDown.bind(this));
},
unbindEvents(el) {
el.removeEventListener('mousedown', this.onMouseDown.bind(this));
},
create(el) {
const ink = DomHandler.createElement('span', {
role: 'presentation',
'aria-hidden': true,
'data-p-ink': true,
'data-p-ink-active': false,
class: !el.unstyled && this.cx('root'),
onAnimationEnd: this.onAnimationEnd,
'p-bind': this.ptm('root')
});
el.appendChild(ink);
this.$el = ink;
},
remove(el) {
let ink = this.getInk(el);
if (ink) {
this.unbindEvents(el);
ink.removeEventListener('animationend', this.onAnimationEnd);
ink.remove();
}
},
onMouseDown(event) {
let target = event.currentTarget;
let ink = this.getInk(target);
if (!ink || getComputedStyle(ink, null).display === 'none') {
return;
}
!target.unstyled && DomHandler.removeClass(ink, 'p-ink-active');
ink.setAttribute('data-p-ink-active', 'false');
if (!DomHandler.getHeight(ink) && !DomHandler.getWidth(ink)) {
let d = Math.max(DomHandler.getOuterWidth(target), DomHandler.getOuterHeight(target));
ink.style.height = d + 'px';
ink.style.width = d + 'px';
}
let offset = DomHandler.getOffset(target);
let x = event.pageX - offset.left + document.body.scrollTop - DomHandler.getWidth(ink) / 2;
let y = event.pageY - offset.top + document.body.scrollLeft - DomHandler.getHeight(ink) / 2;
ink.style.top = y + 'px';
ink.style.left = x + 'px';
!target.unstyled && DomHandler.addClass(ink, 'p-ink-active');
ink.setAttribute('data-p-ink-active', 'true');
this.timeout = setTimeout(() => {
if (ink) {
!target.unstyled && DomHandler.removeClass(ink, 'p-ink-active');
ink.setAttribute('data-p-ink-active', 'false');
}
}, 401);
},
onAnimationEnd(event) {
if (this.timeout) {
clearTimeout(this.timeout);
}
!event.currentTarget.unstyled && DomHandler.removeClass(event.currentTarget, 'p-ink-active');
event.currentTarget.setAttribute('data-p-ink-active', 'false');
},
getInk(el) {
2023-07-06 12:24:34 +00:00
return el && el.children ? [...el.children].find((child) => DomHandler.getAttribute(child, 'data-pd-ripple')) : undefined;
}
2022-09-06 12:03:37 +00:00
}
2023-06-22 13:52:12 +00:00
});
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
export default Ripple;