123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <template>
- <uni-shadow-root class="vant-swipe-cell-index"><view class="van-swipe-cell" data-key="cell" @click.stop.prevent="onClick" @touchstart="startDrag" @touchmove.stop.prevent="_$self[(catchMove ? 'noop' : '')||'_$noop']($event)" @touchmove.capture="onDrag" @touchend.stop.prevent="endDrag" @touchcancel.stop.prevent="endDrag">
- <view :style="wrapperStyle">
- <view v-if="leftWidth" class="van-swipe-cell__left" data-key="left" @click.stop.prevent="onClick">
- <slot name="left"></slot>
- </view>
- <slot></slot>
- <view v-if="rightWidth" class="van-swipe-cell__right" data-key="right" @click.stop.prevent="onClick">
- <slot name="right"></slot>
- </view>
- </view>
- </view></uni-shadow-root>
- </template>
-
- <script>
-
- global['__wxRoute'] = 'vant/swipe-cell/index'
- import { VantComponent } from '../common/component';
- import { touch } from '../mixins/touch';
- const THRESHOLD = 0.3;
- VantComponent({
- props: {
- disabled: Boolean,
- leftWidth: {
- type: Number,
- value: 0
- },
- rightWidth: {
- type: Number,
- value: 0
- },
- asyncClose: Boolean
- },
- mixins: [touch],
- data: {
- catchMove: false
- },
- created() {
- this.offset = 0;
- },
- methods: {
- open(position) {
- const { leftWidth, rightWidth } = this.data;
- const offset = position === 'left' ? leftWidth : -rightWidth;
- this.swipeMove(offset);
- },
- close() {
- this.swipeMove(0);
- },
- swipeMove(offset = 0) {
- this.offset = offset;
- const transform = `translate3d(${offset}px, 0, 0)`;
- const transition = this.draging
- ? 'none'
- : '.6s cubic-bezier(0.18, 0.89, 0.32, 1)';
- this.set({
- wrapperStyle: `
- -webkit-transform: ${transform};
- -webkit-transition: ${transition};
- transform: ${transform};
- transition: ${transition};
- `
- });
- },
- swipeLeaveTransition() {
- const { leftWidth, rightWidth } = this.data;
- const { offset } = this;
- if (rightWidth > 0 && -offset > rightWidth * THRESHOLD) {
- this.open('right');
- }
- else if (leftWidth > 0 && offset > leftWidth * THRESHOLD) {
- this.open('left');
- }
- else {
- this.swipeMove(0);
- }
- this.set({ catchMove: false });
- },
- startDrag(event) {
- if (this.data.disabled) {
- return;
- }
- this.draging = true;
- this.startOffset = this.offset;
- this.firstDirection = '';
- this.touchStart(event);
- },
- noop() { },
- onDrag(event) {
- if (this.data.disabled) {
- return;
- }
- this.touchMove(event);
- if (!this.firstDirection) {
- this.firstDirection = this.direction;
- this.set({ catchMove: this.firstDirection === 'horizontal' });
- }
- if (this.firstDirection === 'vertical') {
- return;
- }
- const { leftWidth, rightWidth } = this.data;
- const offset = this.startOffset + this.deltaX;
- if ((rightWidth > 0 && -offset > rightWidth) ||
- (leftWidth > 0 && offset > leftWidth)) {
- return;
- }
- this.swipeMove(offset);
- },
- endDrag() {
- if (this.data.disabled) {
- return;
- }
- this.draging = false;
- this.swipeLeaveTransition();
- },
- onClick(event) {
- const { key: position = 'outside' } = event.currentTarget.dataset;
- this.$emit('click', position);
- if (!this.offset) {
- return;
- }
- if (this.data.asyncClose) {
- this.$emit('close', { position, instance: this });
- }
- else {
- this.swipeMove(0);
- }
- }
- }
- });
- export default global['__wxComponents']['vant/swipe-cell/index']
- </script>
- <style platform="mp-weixin">
- @import '../common/index.css';.van-swipe-cell{position:relative;overflow:hidden}.van-swipe-cell__left,.van-swipe-cell__right{position:absolute;top:0;height:100%}.van-swipe-cell__left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
- </style>
|