mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 11:37:58 +00:00
These fixes are all auto generated and can be merged directly Fixes the following issues 1. Event used on components should be hypenated 2. Attribute orders in components 3. Use `unmounted` instead of `destroyed` 4. Add explicit `emits` declarations for components, autofixed [using this script](https://gist.github.com/scmmishra/6f549109b96400006bb69bbde392eddf) We ignore the top level v-if for now, we will fix it later
63 lines
1.5 KiB
Vue
63 lines
1.5 KiB
Vue
<script>
|
|
export default {
|
|
name: 'DragWrapper',
|
|
props: {
|
|
direction: {
|
|
type: String,
|
|
required: true,
|
|
validator: value => ['left', 'right'].includes(value),
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
emits: ['dragged'],
|
|
data() {
|
|
return {
|
|
startX: null,
|
|
dragDistance: 0,
|
|
threshold: 50, // Threshold value in pixels
|
|
};
|
|
},
|
|
methods: {
|
|
handleTouchStart(event) {
|
|
if (this.disabled) return;
|
|
this.startX = event.touches[0].clientX;
|
|
},
|
|
handleTouchMove(event) {
|
|
if (this.disabled) return;
|
|
const touchX = event.touches[0].clientX;
|
|
let deltaX = touchX - this.startX;
|
|
|
|
if (this.direction === 'right') {
|
|
this.dragDistance = Math.min(this.threshold, deltaX);
|
|
} else if (this.direction === 'left') {
|
|
this.dragDistance = Math.max(-this.threshold, deltaX);
|
|
}
|
|
},
|
|
resetPosition() {
|
|
if (
|
|
(this.dragDistance >= this.threshold && this.direction === 'right') ||
|
|
(this.dragDistance <= -this.threshold && this.direction === 'left')
|
|
) {
|
|
this.$emit('dragged', this.direction);
|
|
}
|
|
this.dragDistance = 0; // Reset the position after releasing the touch
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
:style="{ transform: `translateX(${dragDistance}px)` }"
|
|
class="will-change-transform"
|
|
@touchstart="handleTouchStart"
|
|
@touchmove="handleTouchMove"
|
|
@touchend="resetPosition"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|