long-list.uvue 6.7 KB
Newer Older
H
hdx 已提交
1
<template>
H
hdx 已提交
2
  <scroll-view class="page" :scroll-top="pageScrollTop">
H
hdx 已提交
3
    <view class="search-bar" ref="header">
H
hdx 已提交
4 5 6
      <input placeholder="搜索..." />
    </view>
    <view class="swiper-list">
7 8
      <scroll-view ref="tabScroll" class="swiper-tabs" :scroll-x="true" :show-scrollbar="false">
        <!-- TODO 多一层 view -->
H
hdx 已提交
9 10
        <view>
          <view class="flex-row">
11 12
            <text ref="swipertab" class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''"
              v-for="(item, index) in swiperList" :key="index" @click="onTabClick(index)">
13 14
              {{item.name}}
            </text>
H
hdx 已提交
15
          </view>
16
          <view ref="indicator" class="swiper-tabs-indicator"></view>
H
hdx 已提交
17
        </view>
H
hdx 已提交
18
      </scroll-view>
19
      <swiper ref="swiper" class="swiper-view" :current="swiperIndex" @transition="onSwiperTransition"
20
        @animationfinish="onSwiperAnimationfinish">
H
hdx 已提交
21
        <swiper-item class="swiper-item" v-for="(item, index) in swiperList" :key="index">
H
hdx 已提交
22
          <long-page ref="longPage" :type="item.type" :preload="item.preload"></long-page>
H
hdx 已提交
23 24 25 26
        </swiper-item>
      </swiper>
    </view>
  </scroll-view>
H
hdx 已提交
27 28 29
</template>

<script>
H
hdx 已提交
30 31 32
  import longPage from './long-list-page.uvue';

  type SwiperTabsItem = {
H
hdx 已提交
33 34
    x : number,
    w : number
H
hdx 已提交
35 36 37 38
  }

  type SwiperViewItem = {
    type : string,
39
    name : string,
H
hdx 已提交
40
    preload : Boolean,
H
hdx 已提交
41 42
  }

H
hdx 已提交
43 44 45 46 47 48 49 50 51 52 53 54
  /**
   * 根据权重在两个值之间执行线性插值.
   * @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 已提交
55
  export default {
H
hdx 已提交
56 57 58
    components: {
      longPage
    },
H
hdx 已提交
59 60
    data() {
      return {
H
hdx 已提交
61
        pageScrollTop: 0,
62 63 64
        swiperList: [
          {
            type: 'UpdatedDate',
H
hdx 已提交
65 66
            name: '最新上架',
            preload: true
67 68 69 70 71 72 73 74 75 76 77 78 79 80
          } as SwiperViewItem,
          {
            type: 'FreeHot',
            name: '免费热榜'
          } as SwiperViewItem,
          {
            type: 'PaymentHot',
            name: '付费热榜'
          } as SwiperViewItem,
          {
            type: 'HotList',
            name: '热门总榜'
          } as SwiperViewItem
        ] as SwiperViewItem[],
H
hdx 已提交
81
        swiperIndex: -1,
82 83
        $tabScrollView: null as null | INode,
        $indicatorNode: null as null | INode,
H
hdx 已提交
84
        $headerHeight: 0,
85
        $animationFinishIndex: 0,
H
hdx 已提交
86
        $swiperWidth: 0,
87
        $swiperTabsRect: [] as SwiperTabsItem[]
H
hdx 已提交
88 89
      }
    },
H
hdx 已提交
90
    onReady() {
91 92
      this.$tabScrollView = this.$refs.get('tabScroll') as INode
      this.$indicatorNode = this.$refs.get('indicator') as INode
93
      this.$headerHeight = (this.$refs["header"] as INode).offsetHeight
H
hdx 已提交
94
      this.$swiperWidth = (this.$refs["swiper"] as INode).getBoundingClientRect().width
H
hdx 已提交
95 96
      this.queryTabItemsSize()
      this.setSwiperIndex(0, true)
H
hdx 已提交
97 98
    },
    methods: {
H
hdx 已提交
99 100 101 102
      onTabClick(index : number) {
        this.setSwiperIndex(index, false)
      },
      onSwiperTransition(e : SwiperTransitionEvent) {
103 104 105 106 107
        // 微信 skyline 每项完成触发 Animationfinish,偏移值重置
        // 微信 webview 全部完成触发 Animationfinish,偏移值累加
        // 在滑动到下一个项的过程中,再次反向滑动,偏移值递减
        // uni-app-x 微信 webview 行为一致

H
hdx 已提交
108
        const offset_x = e.detail.dx
H
hdx 已提交
109

110
        // 重置差异,计算当前索引
H
hdx 已提交
111 112 113
        const current_offset_x = offset_x % this.$swiperWidth
        const current_offset_i = offset_x / this.$swiperWidth
        const current_index = this.$animationFinishIndex + current_offset_i.toInt()
H
hdx 已提交
114

115
        // 更新索引及边界检查
H
hdx 已提交
116
        let move_to_index = current_index
117 118 119 120
        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 已提交
121 122
        }

123
        // 计算偏移百分比
H
hdx 已提交
124
        const percentage = Math.abs(current_offset_x) / this.$swiperWidth
125

126 127
        // 通知更新指示线
        this.updateTabIndicator(current_index, move_to_index, percentage)
128

H
hdx 已提交
129 130
        // 首次可见时初始化数据
        this.initSwiperItemPage(move_to_index)
H
hdx 已提交
131 132
      },
      onSwiperAnimationfinish(e : SwiperAnimationFinishEvent) {
H
hdx 已提交
133
        this.setSwiperIndex(e.detail.current, true)
134
        this.$animationFinishIndex = e.detail.current
H
hdx 已提交
135
      },
H
hdx 已提交
136
      queryTabItemsSize() {
137
        this.$swiperTabsRect.length = 0
H
hdx 已提交
138 139 140
        const tabs = this.$refs["swipertab"] as INode[]
        tabs.forEach((node) => {
          this.$swiperTabsRect.push({
H
hdx 已提交
141 142
            x: node.offsetLeft,
            w: node.offsetWidth
H
hdx 已提交
143 144 145 146 147
          } as SwiperTabsItem)
        })
      },
      setSwiperIndex(index : Number, updateIndicator : Boolean) {
        if (this.swiperIndex === index) {
H
hdx 已提交
148 149
          return
        }
150

H
hdx 已提交
151
        this.swiperIndex = index
H
hdx 已提交
152

153 154
        this.initSwiperItemPage(index)

H
hdx 已提交
155
        if (updateIndicator) {
156
          this.updateTabIndicator(index, index, 1)
H
hdx 已提交
157
        }
158
      },
159 160 161 162
      updateTabIndicator(current_index : number, move_to_index : number, percentage : number) {
        // 计算指示线
        const current_size = this.$swiperTabsRect[current_index]
        const move_to_size = this.$swiperTabsRect[move_to_index]
H
hdx 已提交
163 164
        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)
165 166

        // 更新指示线
H
hdx 已提交
167
        const x = indicator_line_x + indicator_line_w / 2
168 169
        this.$indicatorNode?.style?.setProperty('transform', `translateX(${x}px) scaleX(${indicator_line_w})`)

H
hdx 已提交
170
        // 滚动到水平中心位置
171 172
        const scroll_x = x - this.$swiperWidth / 2
        this.$tabScrollView?.setAttribute('scrollLeft', scroll_x)
173 174 175 176 177
      },
      initSwiperItemPage(index : Number) {
        if (!this.swiperList[index].preload) {
          this.swiperList[index].preload = true;
          (this.$refs["longPage"]! as ComponentPublicInstance[])[index].$callMethod('loadData')
H
hdx 已提交
178
        }
H
hdx 已提交
179 180 181 182 183 184 185 186 187 188
      }
    }
  }
</script>

<style>
  .flex-row {
    flex-direction: row;
  }

H
hdx 已提交
189
  .page {
H
hdx 已提交
190 191 192
    flex: 1;
  }

H
hdx 已提交
193
  .search-bar {
H
hdx 已提交
194 195 196
    padding: 10px;
  }

H
hdx 已提交
197
  .swiper-list {
H
hdx 已提交
198 199
    flex: 1;
    /* height: 100%; */
H
hdx 已提交
200 201
  }

H
hdx 已提交
202 203
  .swiper-tabs {
    background-color: #ffffff;
H
hdx 已提交
204 205
  }

H
hdx 已提交
206 207 208
  .swiper-tabs-item {
    color: #555;
    font-size: 16px;
209
    padding: 12px 25px;
H
hdx 已提交
210 211
  }

212
  .swiper-tabs-item-active {
H
hdx 已提交
213
    color: #007AFF;
H
hdx 已提交
214 215
  }

H
hdx 已提交
216
  .swiper-tabs-indicator {
217
    width: 1px;
H
hdx 已提交
218 219
    height: 2px;
    background-color: #007AFF;
H
hdx 已提交
220 221
  }

H
hdx 已提交
222 223
  .swiper-view {
    flex: 1;
H
hdx 已提交
224 225
  }

H
hdx 已提交
226 227
  .swiper-item {
    flex: 1;
H
hdx 已提交
228
  }
H
hdx 已提交
229
</style>