如何通过vue实现一款简单通用的翻页组件

开发 前端
翻到某个列表的某一页之后,点击某一项到编辑页,编辑完成后希望能够返回到跳转之前的那一页。这个需求如果仅仅用上面的pager组件,实现起来就不是很方便。也许有人会说结合vuex可以,但是这样的话需要在state中记录下跳转前的页码。假如有很多个翻页列表,就需要记录多个,这显然并不优雅。

预览

先上一波效果图:

 基本元素

首先,翻页组件(以下称“pager组件”)一般拥有的元素有:

  • 上一页
  • ***页
  • 中间显示的页码
  • ***一页
  • 下一页

初始化时需要的配置有:

  • totalPage(总页数)
  • initPage(初始页)
  • showPrev(是否显示上一页)
  • showNext(是否显示下一页)
  • showItems(中间显示几页)
  • showJump(是否显示跳转到第几页)

这些可以通过vue的props来接收。

另外,pager组件本身需要有一个记录当前页的currentPage,pages数组用来容纳中间显示的页码,jumpPage绑定输入的跳转页码。

基本实现

对应的代码为:

  1. <template> 
  2.     <div class="pager-wrapper" v-if="totalPage > 0"
  3.         <div class="pager-pages"
  4.             <a v-show="currentPage > 1 && showPrev" @click="go(currentPage - 1)">上一页</a> 
  5.             <a :class="{active: currentPage == 1 ? true : false}" @click="go(1)">1</a> 
  6.             <strong v-show="pages[0] > 2">...</strong> 
  7.             <a v-for="page in pages" :class="{active: currentPage == page ? true : false}" @click="go(page)">{{page}}</a> 
  8.             <strong v-show="pages[pages.length-1] < totalPage - 1">...</strong> 
  9.             <a v-if="totalPage > 1" :class="{active: currentPage == totalPage ? true : false}" @click="go(totalPage)">{{totalPage}}</a> 
  10.             <a v-show="currentPage < totalPage && showNext" @click="go(currentPage + 1)">下一页</a> 
  11.         </div> 
  12.         <div v-if="showJump" v-show="totalPage > 1" class="pager-jump"
  13.             <span>共<em class="jump-total">{{totalPage}}</em>页 ,跳至</span> 
  14.             <input type="number" min="1" :max="totalPage" v-model="jumpPage" class="jump-input"
  15.             <span>页</span> 
  16.             <a @click="go(jumpPage)">确定</a> 
  17.         </div> 
  18.     </div> 
  19. </template> 
  20. <script> 
  21.   export default { 
  22.         props: { 
  23.             totalPage: { // 总页数 
  24.                 type: Number, 
  25.                 default: 1, 
  26.                 required: true 
  27.             }, 
  28.             showItems: { // 显示出来的页数,如: 1 ... 34[5]67 ... 10 
  29.                 type: Number, 
  30.                 default: 5 
  31.             }, 
  32.             showPrev: { // 是否显示“上一页” 
  33.                 type: Boolean, 
  34.                 defaulttrue 
  35.             }, 
  36.             showNext: { // 是否显示“下一页” 
  37.                 type: Boolean, 
  38.                 defaulttrue 
  39.             }, 
  40.             showJump: { // 是否显示“跳转” 
  41.                 type: Boolean, 
  42.                 defaulttrue 
  43.             }, 
  44.             initPage: { 
  45.                 type: Number, 
  46.                 default: 1 
  47.             } 
  48.         }, 
  49.         data () { 
  50.             return { 
  51.                 currentPage: 0, 
  52.                 pages: [], 
  53.                 jumpPage: 0, 
  54.             } 
  55.         }, 
  56.         created () {// 初始化时currentPage赋值 
  57.             this.currentPage = this.initPage 
  58.         } 
  59.         methods: { 
  60.             go (page) { 
  61.                 if(page < 1) { 
  62.                     page = 1 
  63.                 } 
  64.                 if(page > this.totalPage) { 
  65.                     page = this.totalPage 
  66.                 } 
  67.                 if(page === this.currentPage) { 
  68.                     return 
  69.                 } 
  70.                 this.currentPage = parseInt(page,10) 
  71.                 this.$emit('go-page',{ 
  72.                     page: this.currentPage 
  73.                 }) 
  74.             } 
  75.         }, 
  76.         watch: { 
  77.             currentPage (newVal) { 
  78.                 this.jumpPage = newVal 
  79.             }, 
  80.             initPage (newVal) { 
  81.                 if(this.currentPage !== newVal) { 
  82.                     this.currentPage = newVal 
  83.                 } 
  84.             } 
  85.         } 
  86.     } 
  87. </script>  

接下来就是pages数组的值如何获取到。由于pages始终是跟当前页currentPage以及配置中需要显示的showItems强相关的,那么完全可以将pages改为计算属性:

  1. computed: { 
  2.     pages () { 
  3.         // 根据起始页码和结束页码得到页码数组 
  4.         let getPages = (start,end) => { 
  5.             if(start <= 1 || start > end || start >= this.totalPage) { 
  6.                 start = 2 
  7.             } 
  8.             if(end >= this.totalPage || end < start || end <= 1) { 
  9.                 end = this.totalPage - 1 
  10.             } 
  11.             let arr = [] 
  12.             for(let i = start; i <= end; i++) { 
  13.                 arr.push(i) 
  14.             } 
  15.             return arr 
  16.         } 
  17.         let counts = this.showItems 
  18.         if(this.totalPage < counts + 2) { 
  19.             return getPages(2,this.totalPage) 
  20.         } else { 
  21.             if(this.currentPage <= Math.ceil(counts/2)) { 
  22.                 return getPages(2,counts) 
  23.             } else if(this.currentPage >= this.totalPage - Math.floor(counts/2)) { 
  24.                 return getPages(this.totalPage + 1 - counts,this.totalPage - 1) 
  25.             } else { 
  26.                 let half = Math.ceil(counts/2) - 1 
  27.                 let end = this.currentPage + half 
  28.                 if(counts % 2 === 0) { 
  29.                     end++ 
  30.                 } 
  31.                 return getPages(this.currentPage - half,end
  32.             } 
  33.         } 
  34.     } 

 功能拓展

到这里一个普通的翻页组件基本上就实现了(样式自己可以去定制)。但是很多时候(特别是一些管理后台),结合vue-router做成SPA,通常会有这样的需求:

翻到某个列表的某一页之后,点击某一项到编辑页,编辑完成后希望能够返回到跳转之前的那一页。

这个需求如果仅仅用上面的pager组件,实现起来就不是很方便。也许有人会说结合vuex可以,但是这样的话需要在state中记录下跳转前的页码。假如有很多个翻页列表,就需要记录多个,这显然并不优雅。

不过因为vue-router实现的优雅,我们要满足上面的需求也很简单:

首先props上增加mode配置,由于当mode为params时,跳转需要知道是在哪一个路由下,所以:

  1. mode: { 
  2.     type: String, 
  3.     default'event' // 'event' | 'query' | 'params' 
  4. }, 
  5. routeName: { 
  6.     type: String 

 然后再在实际跳转的逻辑方法go(page)里面,做点更改:

  1. go (page) { 
  2.     if(page < 1) { 
  3.         page = 1 
  4.     } 
  5.     if(page > this.totalPage) { 
  6.         page = this.totalPage 
  7.     } 
  8.     if(page === this.currentPage) { 
  9.         return 
  10.     } 
  11.     this.currentPage = parseInt(page,10) 
  12.     if(this.mode == 'query') { 
  13.         let query = this.$route.query 
  14.         query.page = this.currentPage 
  15.         this.$router.go({query: query}) 
  16.     } else if(this.mode == 'params') { 
  17.         let params = this.$route.params 
  18.         params.page = this.currentPage 
  19.         this.$router.go({name: this.routeName,params: params}) 
  20.     } else { 
  21.         this.$emit('go-page',{ 
  22.             page: this.currentPage 
  23.         }) 
  24.     } 

这样基本上就完成了一个简单且通用的翻页组件啦,接下里就是发不到仓库里供大家使用了。

本文最终实现的翻页组件已经发布,大家可以看一波源码:

vue-simple-pager

总结

总体上讲的比较浅显,希望能有帮助。

责任编辑:庞桂玉 来源: segmentfault
相关推荐

2015-11-27 09:18:11

AngularJSWeb应用

2023-01-29 07:49:57

2014-12-16 10:11:22

2021-02-20 07:02:24

Vue.js组件开发技术

2017-03-06 11:02:59

产品软件Power Desig

2020-12-03 09:00:02

Java外卖系统

2022-02-08 15:55:00

Vue组件库Vue Demi

2024-06-11 00:00:00

Java线程安全缓存组件

2021-07-07 06:52:17

云图word-cloud工具

2023-03-31 14:51:46

CSS图案背景开发

2020-12-03 09:33:58

前端开发工具

2022-02-28 08:19:25

图片预览动画前端

2011-06-17 11:22:33

jQueryjQuery插件

2020-12-29 05:26:27

视频播放器Vuevideo

2020-12-07 11:50:14

Java学习系统eclipse

2023-07-03 08:25:54

2023-06-05 15:00:13

书籍翻页动效鸿蒙

2024-08-22 12:35:37

2009-05-11 15:12:03

网管软件产品摩卡软件

2014-06-20 10:32:42

APP上瘾设计
点赞
收藏

51CTO技术栈公众号