Blame view

components/thorui/tui-slide-view/tui-slide-view.js 3.46 KB
46b6767c   刘淇   init 提交到库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
  // #ifndef APP-PLUS|| MP-WEIXIN || H5
  
  const MIN_DISTANCE = 10;
  export default {
  	data() {
  		return {
  			left: 0,
  			isShow: false,
  			ani: false,
  			moveLeft: '',
  			moveRight: '',
  			threshold: 30,
  			open: false,
  			rightWidth: 0
  		}
  	},
  	watch: {
  		shown(newVal) {
  			this.openState(newVal)
  		},
  		left() {
  			this.moveLeft = `translateX(${this.left}px)`
  			this.moveRight = `translateX(${this.left+this.rightWidth}px)`
  		},
  		isShow(newVal) {
  			this.openState(newVal)
  		},
  		buttons() {
  			this.init()
  		}
  	},
  	mounted() {
  		this.$nextTick(() => {
  			this.init()
  		})
  	},
  	methods: {
  		init() {
  			clearTimeout(this.timer)
  			this.timer = setTimeout(() => {
  				this.getSelectorQuery()
  			}, 100)
  			this.left = 0
  			this.x = 0
  		},
  		closeSwipe(e) {
  			if (!this.autoClose) return
  			this.left = 0;
  		},
  		touchstart(e) {
  			if (this.disabled) return
  			this.ani = false
  			this.x = this.left || 0
  			this.stopTouchStart(e)
  			// this.autoClose && this.closeSwipe()
  		},
  		touchmove(e) {
  			if (this.disabled) return
  			// 是否可以滑动页面
  			this.stopTouchMove(e);
  			if (this.direction !== 'horizontal') {
  				return;
  			}
  			this.move(this.x + this.deltaX)
  			return false
  		},
  		touchend() {
  			if (this.disabled) return
  			this.moveDirection(this.left)
  		},
  		move(value) {
  			value = value || 0
  			const rightWidth = this.rightWidth
  			this.left = Math.min(Math.max(value, -rightWidth), 0);
  		},
  		moveDirection(left) {
  			const threshold = this.threshold
  			const open = this.open || false
  			const rightWidth = this.rightWidth
  			if (this.deltaX === 0 || left > 0) {
  				this.openState(false)
  				return
  			}
  			if ((!open && rightWidth > 0 && -left > threshold) || (open && rightWidth > 0 && rightWidth + left <
  					threshold)) {
  				this.openState(true)
  			} else {
  				this.openState(false)
  			}
  		},
  		openState(type) {
  			const rightWidth = this.rightWidth
  			let left = ''
  			this.open = this.open ? this.open : false
  			if (type) {
  				left = -rightWidth
  			} else {
  				left = 0
  			}
  			if (type) {
  				this.showButton()
  			} else {
  				this.hideButton()
  			}
  			this.open = type
  			// 添加动画类
  			this.ani = true
  			this.$nextTick(() => {
  				this.move(left)
  			})
  		},
  		close() {
  			this.openState(false)
  		},
  		getDirection(x, y) {
  			if (x > y && x > MIN_DISTANCE) {
  				return 'horizontal';
  			}
  			if (y > x && y > MIN_DISTANCE) {
  				return 'vertical';
  			}
  			return '';
  		},
  		resetTouchStatus() {
  			this.direction = '';
  			this.deltaX = 0;
  			this.deltaY = 0;
  			this.offsetX = 0;
  			this.offsetY = 0;
  		},
  		stopTouchStart(event) {
  			this.resetTouchStatus();
  			const touch = event.touches[0];
  			this.startX = touch.clientX;
  			this.startY = touch.clientY;
  		},
  		stopTouchMove(event) {
  			const touch = event.touches[0];
  			this.deltaX = touch.clientX - this.startX;
  			this.deltaY = touch.clientY - this.startY;
  			this.offsetX = Math.abs(this.deltaX);
  			this.offsetY = Math.abs(this.deltaY);
  			this.direction = this.direction || this.getDirection(this.offsetX, this.offsetY);
  		},
  
  		getSelectorQuery() {
  			uni.createSelectorQuery()
  				// #ifndef MP-ALIPAY
  				.in(this)
  				// #endif
  				.select('.' + this.elClass)
  				.boundingClientRect(data => {
  					if (data.length === 0) return
  					this.rightWidth = data.width || 0
  					this.isShow = this.shown
  				})
  				.exec()
  		},
  		onBtnClick(index, data) {
  			this.closeSwipe()
  			this.buttonTapByWxs({
  				index: index,
  				data: data
  			})
  		}
  	}
  }
  
  // #endif
  
  // #ifdef APP-PLUS|| MP-WEIXIN  || H5
  export default {}
  // #endif