mpother.js 5.5 KB
Newer Older
study夏羽's avatar
study夏羽 已提交
1 2 3
let otherMixins = {}

// #ifndef APP-PLUS|| MP-WEIXIN  ||  H5
study夏羽's avatar
study夏羽 已提交
4
const MIN_DISTANCE = 10;
study夏羽's avatar
study夏羽 已提交
5
otherMixins = {
study夏羽's avatar
study夏羽 已提交
6
	data() {
study夏羽's avatar
study夏羽 已提交
7 8
		// TODO 随机生生元素ID,解决百度小程序获取同一个元素位置信息的bug
		const elClass = `Uni_${Math.ceil(Math.random() * 10e5).toString(36)}`
study夏羽's avatar
study夏羽 已提交
9 10 11 12 13
		return {
			uniShow: false,
			left: 0,
			buttonShow: 'none',
			ani: false,
study夏羽's avatar
study夏羽 已提交
14 15
			moveLeft: '',
			elClass
study夏羽's avatar
study夏羽 已提交
16 17 18 19 20 21 22
		}
	},
	watch: {
		show(newVal) {
			if (this.autoClose) return
			this.openState(newVal)
		},
study夏羽's avatar
study夏羽 已提交
23
		left() {
study夏羽's avatar
study夏羽 已提交
24 25
			this.moveLeft = `translateX(${this.left}px)`
		},
study夏羽's avatar
study夏羽 已提交
26
		buttonShow(newVal) {
study夏羽's avatar
study夏羽 已提交
27 28 29 30 31 32 33 34 35 36 37
			if (this.autoClose) return
			this.openState(newVal)
		},
		leftOptions() {
			this.init()
		},
		rightOptions() {
			this.init()
		}
	},
	mounted() {
study夏羽's avatar
study夏羽 已提交
38
		this.swipeaction = this.getSwipeAction()
study夏羽's avatar
study夏羽 已提交
39 40 41 42 43 44
		if (this.swipeaction.children !== undefined) {
			this.swipeaction.children.push(this)
		}
		this.init()
	},
	methods: {
study夏羽's avatar
study夏羽 已提交
45
		init() {
study夏羽's avatar
study夏羽 已提交
46 47 48 49 50 51 52 53
			clearTimeout(this.timer)
			this.timer = setTimeout(() => {
				this.getSelectorQuery()
			}, 100)
			// 移动距离
			this.left = 0
			this.x = 0
		},
study夏羽's avatar
study夏羽 已提交
54

study夏羽's avatar
study夏羽 已提交
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
		closeSwipe(e) {
			if (!this.autoClose) return
			this.swipeaction.closeOther(this)
		},
		appTouchStart(e) {
			const {
				clientX
			} = e.changedTouches[0]
			this.clientX = clientX
			this.timestamp = new Date().getTime()
		},
		appTouchEnd(e, index, item, position) {
			const {
				clientX
			} = e.changedTouches[0]
			// fixed by xxxx 模拟点击事件,解决 ios 13 点击区域错位的问题
			let diff = Math.abs(this.clientX - clientX)
			let time = (new Date().getTime()) - this.timestamp
			if (diff < 40 && time < 300) {
				this.$emit('click', {
					content: item,
					index,
					position
				})
			}
		},
		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)
study夏羽's avatar
study夏羽 已提交
96
			return false
study夏羽's avatar
study夏羽 已提交
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
		},
		touchend() {
			if (this.disabled) return
			this.moveDirection(this.left)
		},
		/**
		 * 设置移动距离
		 * @param {Object} value
		 */
		move(value) {
			value = value || 0
			const leftWidth = this.leftWidth
			const rightWidth = this.rightWidth
			// 获取可滑动范围
			this.left = this.range(value, -rightWidth, leftWidth);
		},

		/**
		 * 获取范围
		 * @param {Object} num
		 * @param {Object} min
		 * @param {Object} max
		 */
		range(num, min, max) {
			return Math.min(Math.max(num, min), max);
		},
		/**
		 * 移动方向判断
		 * @param {Object} left
		 * @param {Object} value
		 */
		moveDirection(left) {
			const threshold = this.threshold
			const isopen = this.isopen || 'none'
			const leftWidth = this.leftWidth
			const rightWidth = this.rightWidth
			if (this.deltaX === 0) {
				this.openState('none')
				return
			}
study夏羽's avatar
study夏羽 已提交
137 138
			if ((isopen === 'none' && rightWidth > 0 && -left > threshold) || (isopen !== 'none' && rightWidth >
					0 && rightWidth +
study夏羽's avatar
study夏羽 已提交
139 140 141
					left < threshold)) {
				// right
				this.openState('right')
study夏羽's avatar
study夏羽 已提交
142 143
			} else if ((isopen === 'none' && leftWidth > 0 && left > threshold) || (isopen !== 'none' && leftWidth >
					0 &&
study夏羽's avatar
study夏羽 已提交
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
					leftWidth - left < threshold)) {
				// left
				this.openState('left')
			} else {
				// default
				this.openState('none')
			}
		},

		/**
		 * 开启状态
		 * @param {Boolean} type
		 */
		openState(type) {
			const leftWidth = this.leftWidth
			const rightWidth = this.rightWidth
			let left = ''
			this.isopen = this.isopen ? this.isopen : 'none'
			switch (type) {
				case "left":
					left = leftWidth
					break
				case "right":
					left = -rightWidth
					break
				default:
					left = 0
			}


			if (this.isopen !== type) {
				this.throttle = true
				this.$emit('change', type)
			}

			this.isopen = type
			// 添加动画类
			this.ani = true
			this.$nextTick(() => {
				this.move(left)
			})
			// 设置最终移动位置,理论上只要进入到这个函数,肯定是要打开的
		},
		close() {
			this.openState('none')
		},
		getDirection(x, y) {
			if (x > y && x > MIN_DISTANCE) {
				return 'horizontal';
			}
			if (y > x && y > MIN_DISTANCE) {
				return 'vertical';
			}
			return '';
		},

		/**
		 * 重置滑动状态
		 * @param {Object} event
		 */
		resetTouchStatus() {
			this.direction = '';
			this.deltaX = 0;
			this.deltaY = 0;
			this.offsetX = 0;
			this.offsetY = 0;
		},

		/**
		 * 设置滑动开始位置
		 * @param {Object} event
		 */
		stopTouchStart(event) {
			this.resetTouchStatus();
			const touch = event.touches[0];
			this.startX = touch.clientX;
			this.startY = touch.clientY;
		},

		/**
		 * 滑动中,是否禁止打开
		 * @param {Object} event
		 */
		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() {
			const views = uni.createSelectorQuery().in(this)
			views
study夏羽's avatar
study夏羽 已提交
239
				.selectAll('.' + this.elClass)
study夏羽's avatar
study夏羽 已提交
240
				.boundingClientRect(data => {
study夏羽's avatar
study夏羽 已提交
241
					if (data.length === 0) return
study夏羽's avatar
study夏羽 已提交
242 243 244 245 246 247 248 249 250 251 252 253 254 255
					let show = 'none'
					if (this.autoClose) {
						show = 'none'
					} else {
						show = this.show
					}
					this.leftWidth = data[0].width || 0
					this.rightWidth = data[1].width || 0
					this.buttonShow = show
				})
				.exec()
		}
	}
}
study夏羽's avatar
study夏羽 已提交
256 257 258 259

// #endif

export default otherMixins