mirror of
https://github.com/Lissy93/dashy.git
synced 2025-04-08 17:06:18 +02:00
✨ Custom directive for long-press events (#586)
This commit is contained in:
parent
83ce9b8e5c
commit
d077b1b9c9
51
src/directives/LongPress.js
Normal file
51
src/directives/LongPress.js
Normal file
@ -0,0 +1,51 @@
|
||||
/**
|
||||
* A Vue directive to call event when element is long-pressed
|
||||
* Used to open context menus on touch-enabled devices
|
||||
* Inspired by: FeliciousX/vue-directive-long-press
|
||||
* Dashy: Licensed under MIT - (C) Alicia Sykes 2022
|
||||
*/
|
||||
|
||||
const LONG_PRESS_DEFAULT_DELAY = 750;
|
||||
const longPressEvent = new CustomEvent('long-press');
|
||||
|
||||
export default {
|
||||
bind(element, binding, vnode) {
|
||||
const el = element;
|
||||
el.dataset.longPressTimeout = null;
|
||||
|
||||
const swallowClick = (e) => {
|
||||
el.removeEventListener('click', swallowClick);
|
||||
if (!el.dataset.elapsed) return true;
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
return false;
|
||||
};
|
||||
|
||||
const complete = () => {
|
||||
if (vnode.componentInstance) vnode.componentInstance.$emit('long-press');
|
||||
else el.dispatchEvent(longPressEvent);
|
||||
el.dataset.elapsed = true;
|
||||
};
|
||||
|
||||
const onPointerUp = () => {
|
||||
clearTimeout(parseInt(el.dataset.longPressTimeout, 10));
|
||||
document.removeEventListener('pointerup', onPointerUp);
|
||||
};
|
||||
|
||||
const onPointerDown = () => {
|
||||
document.addEventListener('pointerup', onPointerUp);
|
||||
el.addEventListener('click', swallowClick);
|
||||
const timeoutDuration = binding.value || LONG_PRESS_DEFAULT_DELAY;
|
||||
const timeout = setTimeout(complete, timeoutDuration);
|
||||
el.dataset.elapsed = false;
|
||||
el.dataset.longPressTimeout = timeout;
|
||||
};
|
||||
|
||||
el.$longPressHandler = onPointerDown;
|
||||
el.addEventListener('pointerdown', onPointerDown);
|
||||
},
|
||||
unbind(el) {
|
||||
clearTimeout(parseInt(el.dataset.longPressTimeout, 10));
|
||||
el.removeEventListener('pointerdown', el.$longPressHandler);
|
||||
},
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user