https://juejin.im/post/6883373475843538951
拖了很久的下拉刷新Vue组件——终于来了,其实写了很久了,一直拖着没写文章…
其实技术点也没什么难的,主要使用H5的touch事件:
既然是一个组件,那么就要便于开发人员使用,要简单、容易。
假设我们的下拉刷新、上拉加载组件是upLoadDownRefresh
:
<upLoadDownRefresh>
<div v-for="(item, index) in list" :key="index">
{{ item.name }}
</div>
</upLoadDownRefresh>
只需要将组件往容易里面一丢即可出现效果。
主要通过以利用touchstart事件得出容器移动的Y轴距离,然后在touchmove事件中算出手指移动的Y轴距离并且通过设置transform: translateY()进行移动,最后在touchen事件中恢复原始位置transform: translateY(0px)。
通过上面的效果图可以看出在松开手指恢复位置的过程是一瞬间恢复的,给用户效果并不友好,接下来进行改进。通过添加transition
实现延迟恢复。
来,上代码:
<template>
<div>
<div id="scroll-container"
...
:class="{'transition': isTransition}"
>
<slot></slot>
</div>
</div>
</template>
<script>
export default {
data () {
return {
...
isTransition: false // 是否启动transition
...
}
},
methods: {
// 获取手指触屏时的屏幕Y轴位置
handlerTouchStart (e) {
...
this.isTransition = false
...
},
// 获取手指松开的Y轴位置
handlerTouchEnd (e) {
...
this.isTransition = true // 开启transition
...
}
}
}
</script>
<style scoped>
...
.transition {
transition: all .7s;
}
...
</style>
通过添加上面的代码即可实现延迟恢复,主要是利用transition
这个css样式实现,并且通过this.isTransition
来判断是否需要启动该样式,因为该样式只是在松开手指时,即touchend事件
的时候添加,在touchstart事件
关闭。
拖拽——恢复的效果出来了,看着还不错,可是还是缺了不少东西,例如在下拉刷新以及上拉加载的时候并没有一个加载动画的动画,这样对用户体验效果是极差的,现在我们来添加这两个动画。
修改部分代码:
<template>
<div>
<div id="scroll-container"
@touchstart.stop="handlerTouchStart"
@touchmove.stop="handlerTouchMove"
@touchend.stop="handlerTouchEnd"
ref="scrollContainer"
:class="{'transition': isTransition}"
>
<div class="refresh">
<img
src="https://www.easyicon.net/api/resizeApi.php?id=1190769&size=48"
>
div>
<slot>slot>
<div class="load">
<img src="https://img.lanrentuku.com/img/allimg/1212/5-121204193R5-50.gif">
div>
div>
div>
template>
<script>
export default {
data () {
return {
startLocation: '', // 记录鼠标点击的位置
moveDistance: 0, // 记录移动的位置
distance: '', // 记录移动的距离
isTransition: false // 是否启动transition
}
},
methods: {
// 获取手指触屏时的屏幕Y轴位置
handlerTouchStart (e) {
this.isTransition = false
this.startLocation = e.touches[0].pageY
},
// 获取手指移动的距离
handlerTouchMove (e) {
this.moveDistance = Math.floor(e.touches[0].pageY - this.startLocation)
this.$refs.scrollContainer.style.transform = `translateY(${this.moveDistance}px)`
},
// 获取手指松开的Y轴位置
handlerTouchEnd (e) {
this.moveDistance = 0 // 清除已移动的距离
this.isTransition = true // 开启transition
this.$refs.scrollContainer.style.transform = 'translateY(0px)'
}
}
}
script>
<style scoped>
#scroll-container {
background-color: yellow;
}
.transition {
transition: all .7s;
}
/* -----添加新样式------ */
.load, .refresh {
text-align: center;
}
.load img, .refresh img {
width: 20px;
}
/* -----添加新样式------ */
style>
目前箭头
、加载
都是静态的,如今有这样的需求,让上方的箭头
的箭头在我下拉的时候指向向下,在我松开手指的时候箭头
指向向上,在恢复到原位的时候,箭头
变为加载
。且下拉刷新
和上拉加载
是在拖动一定距离的时候触发。
HTML代码修改:
<template>
<div>
<div id="scroll-container"
@touchstart.stop="handlerTouchStart"
@touchmove.stop="handlerTouchMove"
@touchend.stop="handlerTouchEnd"
ref="scrollContainer"
:class="{'transition': isTransition}"
>
<!-- 根据isDisplay.refresh 动态隐藏显示 -->
<div :class="['refresh', {'display': isDisplay.refresh}]">
<!-- 添加isShrnked 加载 和 箭头相互转换 -->
<!-- 添加rotate类 反转箭头 下箭头和上箭头互相转换 -->
<img
:src="isShrinked? loadImg : refreshImg"
:class="{'rotate': isRotate}"
>
</div>
<slot></slot>
<!-- 根据isDisplay.load 动态隐藏显示 -->
<div :class="['load', {display: isDisplay.load}]">
<img :src="loadImg">
</div>
</div>
</div>
</template>
↑箭头和↓箭头是通过transform: rotate(180deg)进行转换的,此处把加载图片和刷新图片地址利用变量存了起来,方便动态切换。
JS代码修改:
这次代码修改的信息量较大,需要仔细阅读…增加了两个props属性:maxDistance
和 triggerDistance
。
到这这里,就只剩下最后一步了,那就是抛出刷新、加载的事件给外部组件即可,那何时才需要抛事件呢?
我定义了一个props.triggerDistance
属性,只有拖动的距离大于该值时才会触发刷新、加载,所以我们在@touchmove
事件中抛出事件给外部组件使用,但是只要鼠标移动就会触发@touchmove
事件,总不能不断的触发Vue.$emit()
的,这样太影响性能了。
解决方法是用一个数组存刷新和加载的 e m i t ( ) 方 法 , 最 后 在 ‘ @ t o u c h e n d ‘ 中 拿 出 来 执 行 , 这 样 就 只 会 执 行 了 一 次 ‘ emit()方法,最后在`@touchend`中拿出来执行,这样就只会执行了一次` emit()方法,最后在‘@touchend‘中拿出来执行,这样就只会执行了一次‘emit()`方法了。
修改JS:
<script>
// 拖拽状态 true:下拉 false:上拉
let SCROLLSTATUS
export default {
props: {
...
},
data () {
return {
...
// 添加emit缓存数组,并以undefined填充
emitEvents: new Array(2).fill(undefined)
...
}
},
methods: {
// 获取手指移动的距离
handlerTouchMove (e) {
if (this.moveDistance > this.maxDistance + 1) {
this.isRotate = true
return
}
this.moveDistance = Math.floor(e.touches[0].pageY - this.startLocation)
this.$refs.scrollContainer.style.transform = `translateY(${this.moveDistance}px)`
// 显示加载 刷新图片
if (this.moveDistance > this.triggerDistance && this.isDisplay.refresh) {
this.isDisplay.refresh = false
} else if (this.moveDistance < -this.triggerDistance && this.isDisplay.load) {
this.isDisplay.load = false
}
// 缓存刷新的emit
if (this.moveDistance > this.triggerDistance && !this.emitEvents[0]) {
this.emitEvents[0] = function () { this.$emit('refresh', this.displayDiv) }
}
// 缓存加载的emit
if (this.moveDistance < -this.triggerDistance && !this.emitEvents[1]) {
this.emitEvents[1] = function () { this.$emit('load', this.displayDiv) }
}
},
// 获取手指松开的Y轴位置
handlerTouchEnd (e) {
// 记录拖拽状态是为上拉还是下拉
SCROLLSTATUS = this.moveDistance > 0
this.isTransition = true // 开启transition
this.$refs.scrollContainer.style.transform = 'translateY(0px)'
if (Math.abs(this.moveDistance) < this.triggerDistance) return (this.moveDistance = 0)
this.moveDistance = 0 // 清除已移动的距离
// 拖拽距离是否大于指定的触发长度
// 容器位置恢复后触发
setTimeout(() => {
this.shrinked()
}, 700)
// 遍历emit并执行
this.emitEvents.forEach((fn, index) => {
if (!fn) return
this.emitEvents[index] = undefined
fn.apply(this)
})
},
// 容器恢复后的操作
shrinked () {
if (SCROLLSTATUS) {
// 下拉恢复完,箭头转为加载
this.isShrinked = true
} else {
// 上拉回复完
}
},
// 该方法通过$emit()传给外部组件调用 然后隐藏刷新、加载的gif图片
displayDiv () {
this.isDisplay.refresh = true
this.isDisplay.load = true
}
}
}
</script>
这里代码主要是对拖拽的长度进行校验,让长度大于this.triggerDistance
则进行刷新、加载操作,并且每次校验的时候都会去判断this.emitEvents
数组中是否已存在emit()
的方法,若存在则跳过,不存在则保存,最后在@touchend
中把遍历this.emitEvents
。其中带调用$emit
方法时,把隐藏gif的方法传递了过去供外部组件调用。
{{ item.name }}
这里比较留意的是需要在@refresh
和@load
方法中接受参数done
,这里的done
就是组件里的displayDiv
方法,用户隐藏加载、刷新的gif图片。
没有进行移动端适配,得根据个人开发的项目自行跳转组件中的像素大小。
改组件我已经上传至npm,可以直接安装使用
npm i -s refresh-load-plugin
import upLoadDownRefresh from 'refresh-load-plugin'
import 'refresh-load-plugin/lib/refresh-load-plugin.css'
Vue.use(upLoadDownRefresh)
<template>
<refreshLoad
@refresh="refresh"
@load="load"
:maxDistance="300"
:triggerDistance="100"
>
<div v-for="(item, index) in list" :key="index">
{{ item.name }}
div>
refreshLoad>
template>