swiper-list.uvue 7.9 KB
Newer Older
H
hdx 已提交
1 2
<template>
  <view class="swiper-list">
雪洛's avatar
雪洛 已提交
3
    <scroll-view ref="tabScroll" class="swiper-tabs" direction="horizontal" :show-scrollbar="false">
4
      <view class="flex-row">
H
hdx 已提交
5 6 7
        <text ref="swipertab" space="nbsp" class="swiper-tabs-item"
          :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''" v-for="(item, index) in swiperList" :key="index"
          @click="onTabClick(index)">
8 9
          {{item.title}}
        </text>
H
hdx 已提交
10
      </view>
11
      <view ref="indicator" class="swiper-tabs-indicator"></view>
H
hdx 已提交
12
    </scroll-view>
13
    <swiper ref="swiper" class="swiper-view" :current="swiperIndex" @transition="onSwiperTransition"
14
      @animationfinish="onSwiperAnimationfinish">
H
hdx 已提交
15 16
      <swiper-item class="swiper-item" v-for="(_, index) in swiperList" :key="index">
        <text class="swiper-item-text">{{index}}</text>
W
wanganxp 已提交
17
        <!-- 可以将上述text组件替换为list组件,实现可左右滑动的长列表 -->
H
hdx 已提交
18 19 20 21 22 23 24
      </swiper-item>
    </swiper>
  </view>
</template>

<script>
  type SwiperTabsItem = {
H
hdx 已提交
25 26
    x : number,
    w : number
H
hdx 已提交
27 28 29
  }

  type SwiperViewItem = {
30
    title : string,
H
hdx 已提交
31 32
  }

H
hdx 已提交
33 34 35 36 37 38 39 40 41 42 43 44
  /**
   * 根据权重在两个值之间执行线性插值.
   * @constructor
   * @param {number} value1 - 第一个值,该值应为下限.
   * @param {number} value2 - 第二个值,该值应为上限.
   * @param {number} amount - 应介于 0 和 1 之间,指示内插的权重.
   * @returns {number} 内插值
   */
  function lerpNumber(value1 : number, value2 : number, amount : number) : number {
    return (value1 + (value2 - value1) * amount)
  }

H
hdx 已提交
45 46 47 48
  export default {
    data() {
      return {
        swiperList: [] as SwiperViewItem[],
49 50 51 52 53 54
        swiperIndex: 0,
        tabScrollView: null as null | UniElement,
        indicatorNode: null as null | UniElement,
        animationFinishIndex: 0,
        swiperWidth: 0,
        swiperTabsRect: [] as SwiperTabsItem[]
H
hdx 已提交
55 56 57
      }
    },
    onLoad() {
H
hdx 已提交
58
      // 初始化 8 个页签,宽度依次递增,用于演示在滑动 swiper 过程中指示线宽度的线性变化
H
hdx 已提交
59
      for (let i = 0; i < 8; i++) {
60
        const space = " ".repeat(i)
H
hdx 已提交
61
        this.swiperList.push({
62
          title: "Tab " + space + i
H
hdx 已提交
63 64 65 66
        } as SwiperViewItem)
      }
    },
    onReady() {
H
hdx 已提交
67 68 69 70 71 72 73 74
      this.tabScrollView = this.$refs['tabScroll'] as UniElement;
      this.indicatorNode = this.$refs['indicator'] as UniElement;
      (this.$refs["swiper"] as UniElement).getBoundingClientRectAsync().then((res : DOMRect) : Promise<void> => {
        this.swiperWidth = res.width
        return this.cacheTabItemsSize()
      }).then(() => {
        this.updateTabIndicator(this.swiperIndex, this.swiperIndex, 1)
      });
H
hdx 已提交
75 76
    },
    methods: {
H
hdx 已提交
77 78 79 80 81
      /**
       * 每个页签的点击事件,点击后设置当前 swiper.
       * @constructor
       * @param {number} index - 当前索引,该值应介于 0 和 最大数量之间.
       */
H
hdx 已提交
82
      onTabClick(index : number) {
83
        this.setSwiperIndex(index, false)
H
hdx 已提交
84 85
      },
      onSwiperTransition(e : SwiperTransitionEvent) {
86 87
        // 微信 skyline 每项完成触发 Animationfinish,偏移值重置
        // 微信 webview 全部完成触发 Animationfinish,偏移值累加
88
        // 在滑动到下一个项的过程中,再次反向滑动,偏移值递减
89
        // uni-app-x 和 微信 webview 行为一致
90

H
hdx 已提交
91 92
        const offset_x = e.detail.dx

H
hdx 已提交
93
        // 计算当前索引并重置差异
94 95 96
        const current_offset_x = offset_x % this.swiperWidth
        const current_offset_i = offset_x / this.swiperWidth
        const current_index = this.animationFinishIndex + parseInt(current_offset_i + '')
H
hdx 已提交
97

H
hdx 已提交
98
        // 计算目标索引及边界检查
H
hdx 已提交
99
        let move_to_index = current_index
100 101 102 103
        if (current_offset_x > 0 && move_to_index < this.swiperList.length - 1) {
          move_to_index += 1
        } else if (current_offset_x < 0 && move_to_index > 0) {
          move_to_index -= 1
H
hdx 已提交
104 105
        }

106
        // 计算偏移百分比
107
        const percentage = Math.abs(current_offset_x) / this.swiperWidth
H
hdx 已提交
108

109
        // 通知更新指示线
110 111 112
        if (current_index != move_to_index) {
          this.updateTabIndicator(current_index, move_to_index, percentage)
        }
H
hdx 已提交
113
      },
H
hdx 已提交
114 115 116
      /**
       * Swiper滑动动画结束事件.
       */
H
hdx 已提交
117
      onSwiperAnimationfinish(e : SwiperAnimationFinishEvent) {
118
        this.setSwiperIndex(e.detail.current, true)
H
hdx 已提交
119 120

        // 记录上次的索引位置
121
        this.animationFinishIndex = e.detail.current
H
hdx 已提交
122
      },
H
hdx 已提交
123 124 125
      /**
       * 缓存所有页签的左边距和宽度,用于计算指示线在移动过程中的线性变化.
       */
H
hdx 已提交
126
      async cacheTabItemsSize() {
127
        this.swiperTabsRect.length = 0;
128
        const tabs = this.$refs["swipertab"] as UniElement[]
H
hdx 已提交
129 130 131
        for (let i = 0; i < tabs.length; i++) {
          const element = tabs[i];
          const rect = await element.getBoundingClientRectAsync()
132
          this.swiperTabsRect.push({
H
hdx 已提交
133 134
            x: rect.left,
            w: rect.width
H
hdx 已提交
135
          } as SwiperTabsItem)
H
hdx 已提交
136
        }
H
hdx 已提交
137
      },
H
hdx 已提交
138 139 140 141 142 143
      /**
       * 设置当前 swiper 选中的索引值.
       * @constructor
       * @param {number} index - 当前索引,该值应介于 0 和 最大数量之间.
       * @param {boolean} updateIndicator - 是否更新指示线.
       */
H
hdx 已提交
144
      setSwiperIndex(index : number, updateIndicator : boolean) {
H
hdx 已提交
145
        if (this.swiperIndex === index) {
146
          return
H
hdx 已提交
147
        }
148

149
        this.swiperIndex = index
H
hdx 已提交
150 151

        if (updateIndicator) {
152
          this.updateTabIndicator(index, index, 1)
H
hdx 已提交
153 154
        }
      },
H
hdx 已提交
155 156 157 158 159 160 161
      /**
       * 更新页签指示线的位置和宽度.
       * @constructor
       * @param {number} current_index - 当前索引,该值应介于 0 和 最大数量之间.
       * @param {number} move_to_index - 目标索引,该值应介于 0 和 最大数量之间.
       * @param {number} percentage - 偏移百分比,应介于 0 和 1 之间,用于计算在移动过程中的线性值.
       */
162
      updateTabIndicator(current_index : number, move_to_index : number, percentage : number) {
163 164
        const current_size = this.swiperTabsRect[current_index]
        const move_to_size = this.swiperTabsRect[move_to_index]
H
hdx 已提交
165

H
hdx 已提交
166
        // 计算指示线 位置 和 宽度 在移动过程中的线性值
H
hdx 已提交
167 168
        const indicator_line_x = lerpNumber(current_size.x, move_to_size.x, percentage)
        const indicator_line_w = lerpNumber(current_size.w, move_to_size.w, percentage)
169

H
hdx 已提交
170
        // 通过 transform 更新指示线,避免重排版
H
hdx 已提交
171
        // #ifdef APP || MP
H
hdx 已提交
172
        const x = indicator_line_x + indicator_line_w / 2
173 174 175 176 177 178 179 180
        this.indicatorNode?.style?.setProperty('transform', `translateX(${x}px) scaleX(${indicator_line_w})`)
        // #endif
        // #ifdef WEB
        // TODO chrome windows系统 transform scaleX渲染bug
        const x = indicator_line_x
        this.indicatorNode?.style?.setProperty('width', `${indicator_line_w}px`)
        this.indicatorNode?.style?.setProperty('transform', `translateX(${x}px)`)
        // #endif
181

H
hdx 已提交
182
        // 滚动到水平中心位置
183
        const scroll_x = x - this.swiperWidth / 2
H
hdx 已提交
184 185
        // app 平台后续支持 scrollTo()
        // #ifndef MP-WEIXIN
186
        this.tabScrollView!.scrollLeft = scroll_x
H
hdx 已提交
187 188 189 190 191 192
        // #endif
        // #ifdef MP-WEIXIN
        this.tabScrollView!.scrollTo({
          left: scroll_x
        })
        // #endif
H
hdx 已提交
193 194 195 196 197 198 199 200
      }
    }
  }
</script>

<style>
  .flex-row {
    flex-direction: row;
201
    align-self: flex-start;
H
hdx 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214
  }

  .swiper-list {
    flex: 1;
  }

  .swiper-tabs {
    background-color: #ffffff;
  }

  .swiper-tabs-item {
    color: #555;
    font-size: 16px;
215
    padding: 12px 25px;
216
    white-space: nowrap;
H
hdx 已提交
217 218
  }

219
  .swiper-tabs-item-active {
H
hdx 已提交
220 221 222 223
    color: #007AFF;
  }

  .swiper-tabs-indicator {
224
    width: 1px;
H
hdx 已提交
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
    height: 2px;
    background-color: #007AFF;
  }

  .swiper-view {
    flex: 1;
  }

  .swiper-item {
    flex: 1;
    align-items: center;
    justify-content: center;
  }

  .swiper-item-text {
    font-size: 72px;
    font-weight: bold;
  }
243
</style>