mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
165 lines
3.5 KiB
JavaScript
165 lines
3.5 KiB
JavaScript
import { use, range } from '../utils';
|
|
import { TouchMixin } from '../mixins/touch';
|
|
import { ClickOutsideMixin } from '../mixins/click-outside';
|
|
|
|
const [sfc, bem] = use('swipe-cell');
|
|
const THRESHOLD = 0.15;
|
|
|
|
export default sfc({
|
|
mixins: [TouchMixin, ClickOutsideMixin({
|
|
event: 'touchstart',
|
|
method: 'onClick'
|
|
})],
|
|
|
|
props: {
|
|
onClose: Function,
|
|
disabled: Boolean,
|
|
leftWidth: Number,
|
|
rightWidth: Number
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
offset: 0,
|
|
draging: false
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
open(position) {
|
|
const offset = position === 'left' ? this.leftWidth : -this.rightWidth;
|
|
this.swipeMove(offset);
|
|
this.resetSwipeStatus();
|
|
},
|
|
|
|
close() {
|
|
this.offset = 0;
|
|
},
|
|
|
|
resetSwipeStatus() {
|
|
this.swiping = false;
|
|
this.opened = true;
|
|
},
|
|
|
|
swipeMove(offset = 0) {
|
|
this.offset = range(offset, -this.rightWidth, this.leftWidth);
|
|
if (this.offset) {
|
|
this.swiping = true;
|
|
} else {
|
|
this.opened = false;
|
|
}
|
|
},
|
|
|
|
swipeLeaveTransition(direction) {
|
|
const { offset, leftWidth, rightWidth } = this;
|
|
const threshold = this.opened ? 1 - THRESHOLD : THRESHOLD;
|
|
|
|
// right
|
|
if (direction > 0 && -offset > rightWidth * threshold && rightWidth > 0) {
|
|
this.open('right');
|
|
// left
|
|
} else if (direction < 0 && offset > leftWidth * threshold && leftWidth > 0) {
|
|
this.open('left');
|
|
} else {
|
|
this.swipeMove();
|
|
}
|
|
},
|
|
|
|
startDrag(event) {
|
|
if (this.disabled) {
|
|
return;
|
|
}
|
|
|
|
this.draging = true;
|
|
this.touchStart(event);
|
|
|
|
if (this.opened) {
|
|
this.startX -= this.offset;
|
|
}
|
|
},
|
|
|
|
onDrag(event) {
|
|
if (this.disabled) {
|
|
return;
|
|
}
|
|
|
|
this.touchMove(event);
|
|
|
|
if (this.direction === 'horizontal') {
|
|
event.preventDefault();
|
|
this.swipeMove(this.deltaX);
|
|
}
|
|
},
|
|
|
|
endDrag() {
|
|
if (this.disabled) {
|
|
return;
|
|
}
|
|
|
|
this.draging = false;
|
|
if (this.swiping) {
|
|
this.swipeLeaveTransition(this.offset > 0 ? -1 : 1);
|
|
}
|
|
},
|
|
|
|
onClick(position = 'outside') {
|
|
this.$emit('click', position);
|
|
|
|
if (!this.offset) {
|
|
return;
|
|
}
|
|
|
|
if (this.onClose) {
|
|
this.onClose(position, this);
|
|
} else {
|
|
this.swipeMove(0);
|
|
}
|
|
}
|
|
},
|
|
|
|
render(h) {
|
|
const onClick = (position, stop) => event => {
|
|
if (stop) {
|
|
event.stopPropagation();
|
|
}
|
|
this.onClick(position);
|
|
};
|
|
|
|
const wrapperStyle = {
|
|
transform: `translate3d(${this.offset}px, 0, 0)`,
|
|
transition: this.draging ? 'none' : '.6s cubic-bezier(0.18, 0.89, 0.32, 1)'
|
|
};
|
|
|
|
return (
|
|
<div
|
|
class={bem()}
|
|
onClick={onClick('cell')}
|
|
onTouchstart={this.startDrag}
|
|
onTouchmove={this.onDrag}
|
|
onTouchend={this.endDrag}
|
|
onTouchcancel={this.endDrag}
|
|
>
|
|
<div
|
|
class={bem('wrapper')}
|
|
style={wrapperStyle}
|
|
onTransitionend={() => {
|
|
this.swipe = false;
|
|
}}
|
|
>
|
|
{this.leftWidth ? (
|
|
<div class={bem('left')} onClick={onClick('left', true)}>
|
|
{this.slots('left')}
|
|
</div>
|
|
) : null}
|
|
{this.slots()}
|
|
{this.rightWidth ? (
|
|
<div class={bem('right')} onClick={onClick('right', true)}>
|
|
{this.slots('right')}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
});
|