Blame view

src/components/uni-swipe-action-item/bindingx.js 5.79 KB
61d825263   BigBoss   确认订单修改
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
  const BindingX = uni.requireNativePlugin('bindingx');
  const dom = uni.requireNativePlugin('dom');
  const animation = uni.requireNativePlugin('animation');
  
  export default {
  	data() {
  		return {
  			right: 0,
  			button: [],
  			preventGesture: false
  		}
  	},
  
  	watch: {
  		show(newVal) {
  			if (!this.position || JSON.stringify(this.position) === '{}') return;
  			if (this.autoClose) return
  			if (this.isInAnimation) return
  			if (newVal) {
  				this.open()
  			} else {
  				this.close()
  			}
  		},
  	},
  	created() {
  		if (this.swipeaction.children !== undefined) {
  			this.swipeaction.children.push(this)
  		}
  	},
  	mounted() {
  		this.boxSelector = this.getEl(this.$refs['selector-box-hock']);
  		this.selector = this.getEl(this.$refs['selector-content-hock']);
  		this.buttonSelector = this.getEl(this.$refs['selector-button-hock']);
  		this.position = {}
  		this.x = 0
  		setTimeout(() => {
  			this.getSelectorQuery()
  		}, 200)
  	},
  	beforeDestroy() {
  		if (this.timing) {
  			BindingX.unbind({
  				token: this.timing.token,
  				eventType: 'timing'
  			})
  		}
  		if (this.eventpan) {
  			BindingX.unbind({
  				token: this.eventpan.token,
  				eventType: 'pan'
  			})
  		} 
  		this.swipeaction.children.forEach((item, index) => {
  			if (item === this) {
  				this.swipeaction.children.splice(index, 1)
  			}
  		})
  	},
  	methods: {
  		onClick(index, item) {
  			this.$emit('click', {
  				content: item,
  				index
  			})
  		},
  		touchstart(e) {
  			if (this.isInAnimation) return
  			if (this.stop) return
  			this.stop = true
  			if (this.autoClose) {
  				this.swipeaction.closeOther(this)
  			}
  			let endWidth = this.right
  			let boxStep = `(x+${this.x})`
  			let pageX = `${boxStep}> ${-endWidth} && ${boxStep} < 0?${boxStep}:(x+${this.x} < 0? ${-endWidth}:0)`
  
  			let props = [{
  				element: this.selector,
  				property: 'transform.translateX',
  				expression: pageX
  			}]
  
  			let left = 0
  			for (let i = 0; i < this.options.length; i++) {
  				let buttonSelectors = this.getEl(this.$refs['button-hock'][i]);
  				if (this.button.length === 0 || !this.button[i] || !this.button[i].width) return
  				let moveMix = endWidth - left
  				left += this.button[i].width
  				let step = `(${this.x}+x)/${endWidth}`
  				let moveX = `(${step}) * ${moveMix}`
  				let pageButtonX = `${moveX}&& (x+${this.x} > ${-endWidth})?${moveX}:${-moveMix}`
  				props.push({
  					element: buttonSelectors,
  					property: 'transform.translateX',
  					expression: pageButtonX
  				})
  			}
  
  			this.eventpan = this._bind(this.boxSelector, props, 'pan', (e) => {
  				if (e.state === 'end') {
  					this.x = e.deltaX + this.x;
  					if (this.x < -endWidth) {
  						this.x = -endWidth
  					}
  					if (this.x > 0) {
  						this.x = 0
  					}
  					this.stop = false
  					this.bindTiming();
  				}
  			})
  		},
  		touchend(e) {
  			this.$nextTick(() => {
  				if (this.isopen && !this.isDrag && !this.isInAnimation) {
  					this.close()
  				}
  			})
  		},
  		bindTiming() {
  			if (this.isopen) {
  				this.move(this.x, -this.right)
  			} else {
  				this.move(this.x, -40)
  			}
  		},
  		move(left, value) {
  			if (left >= value) {
  				this.close()
  			} else {
  				this.open()
  			}
  		},
  		/**
  		 * 开启swipe
  		 */
  		open() {
  			this.animation(true)
  		},
  		/**
  		 * 关闭swipe
  		 */
  		close() {
  			this.animation(false)
  		},
  		/**
  		 * 开启关闭动画
  		 * @param {Object} type
  		 */
  		animation(type) {
  			this.isDrag = true
  			let endWidth = this.right
  			let time = 200
  			this.isInAnimation = true;
  
  			let exit = `t>${time}`;
  			let translate_x_expression = `easeOutExpo(t,${this.x},${type?(-endWidth-this.x):(-this.x)},${time})`
  			let props = [{
  				element: this.selector,
  				property: 'transform.translateX',
  				expression: translate_x_expression
  			}]
  
  			let left = 0
  			for (let i = 0; i < this.options.length; i++) {
  				let buttonSelectors = this.getEl(this.$refs['button-hock'][i]);
  				if (this.button.length === 0 || !this.button[i] || !this.button[i].width) return
  				let moveMix = endWidth - left
  				left += this.button[i].width
  				let step = `${this.x}/${endWidth}`
  				let moveX = `(${step}) * ${moveMix}`
  				let pageButtonX = `easeOutExpo(t,${moveX},${type ? -moveMix + '-' + moveX: 0 + '-' + moveX},${time})`
  				props.push({
  					element: buttonSelectors,
  					property: 'transform.translateX',
  					expression: pageButtonX
  				})
  			}
  
  			this.timing = BindingX.bind({
  				eventType: 'timing',
  				exitExpression: exit,
  				props: props
  			}, (e) => {
  				if (e.state === 'end' || e.state === 'exit') {
  					this.x = type ? -endWidth : 0
  					this.isInAnimation = false;
  
  					this.isopen = this.isopen || false
  					if (this.isopen !== type) {
  						this.$emit('change', type)
  					}
  					this.isopen = type
  					this.isDrag = false
  				}
  			});
  		},
  		/**
  		 * 绑定  BindingX
  		 * @param {Object} anchor
  		 * @param {Object} props
  		 * @param {Object} fn
  		 */
  		_bind(anchor, props, eventType, fn) {
  			return BindingX.bind({
  				anchor,
  				eventType,
  				props
  			}, (e) => {
  				typeof(fn) === 'function' && fn(e)
  			});
  		},
  		/**
  		 * 获取ref
  		 * @param {Object} el
  		 */
  		getEl(el) {
  			return el.ref
  		},
  		/**
  		 * 获取节点信息
  		 */
  		getSelectorQuery() {
  			dom.getComponentRect(this.$refs['selector-content-hock'], (data) => {
  				if (this.position.content) return
  				this.position.content = data.size
  			})
  			for (let i = 0; i < this.options.length; i++) {
  				dom.getComponentRect(this.$refs['button-hock'][i], (data) => {
  					if (!this.button) {
  						this.button = []
  					}
  					if (this.options.length === this.button.length) return
  					this.button.push(data.size)
  					this.right += data.size.width
  					if (this.autoClose) return
  					if (this.show) {
  						this.open()
  					}
  				})
  			}
  		}
  	}
  }