You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

447 lines
13 KiB

2 months ago
  1. <template>
  2. <view class="u-index-list">
  3. <!-- #ifdef APP-NVUE -->
  4. <list
  5. :scrollTop="scrollTop"
  6. enable-back-to-top
  7. :offset-accuracy="1"
  8. :style="{
  9. maxHeight: addUnit(scrollViewHeight)
  10. }"
  11. @scroll="scrollHandler"
  12. ref="uList"
  13. >
  14. <cell
  15. v-if="$slots.header"
  16. ref="header"
  17. >
  18. <slot name="header" />
  19. </cell>
  20. <slot />
  21. <cell v-if="$slots.footer">
  22. <slot name="footer" />
  23. </cell>
  24. </list>
  25. <!-- #endif -->
  26. <!-- #ifndef APP-NVUE -->
  27. <scroll-view
  28. :scrollTop="scrollTop"
  29. :scrollIntoView="scrollIntoView"
  30. :offset-accuracy="1"
  31. :style="{
  32. maxHeight: addUnit(scrollViewHeight)
  33. }"
  34. scroll-y
  35. @scroll="scrollHandler"
  36. ref="uList"
  37. >
  38. <view v-if="$slots.header">
  39. <slot name="header" />
  40. </view>
  41. <slot />
  42. <view v-if="$slots.footer">
  43. <slot name="footer" />
  44. </view>
  45. </scroll-view>
  46. <!-- #endif -->
  47. <view
  48. class="u-index-list__letter"
  49. ref="u-index-list__letter"
  50. :style="{ top: addUnit(letterInfo.top || 100) }"
  51. @touchstart.prevent="touchStart"
  52. @touchmove.prevent="touchMove"
  53. @touchend.prevent="touchEnd"
  54. @touchcancel.prevent="touchEnd"
  55. >
  56. <view
  57. class="u-index-list__letter__item"
  58. v-for="(item, index) in uIndexList"
  59. :key="index"
  60. :style="{
  61. backgroundColor: activeIndex === index ? activeColor : 'transparent'
  62. }"
  63. >
  64. <text
  65. class="u-index-list__letter__item__index"
  66. :style="{color: activeIndex === index ? '#fff' : inactiveColor}"
  67. >{{ item }}</text>
  68. </view>
  69. </view>
  70. <u-transition
  71. mode="fade"
  72. :show="touching"
  73. :customStyle="{
  74. position: 'fixed',
  75. right: '50px',
  76. top: addUnit(indicatorTop),
  77. zIndex: 2
  78. }"
  79. >
  80. <view
  81. class="u-index-list__indicator"
  82. :class="['u-index-list__indicator--show']"
  83. :style="{
  84. height: addUnit(indicatorHeight),
  85. width: addUnit(indicatorHeight)
  86. }"
  87. >
  88. <text class="u-index-list__indicator__text">{{ uIndexList[activeIndex] }}</text>
  89. </view>
  90. </u-transition>
  91. </view>
  92. </template>
  93. <script>
  94. const indexList = () => {
  95. const indexList = [];
  96. const charCodeOfA = 'A'.charCodeAt(0);
  97. for (let i = 0; i < 26; i++) {
  98. indexList.push(String.fromCharCode(charCodeOfA + i));
  99. }
  100. return indexList;
  101. }
  102. import { props } from './props';
  103. import { mpMixin } from '../../libs/mixin/mpMixin';
  104. import { mixin } from '../../libs/mixin/mixin';
  105. import { addUnit, sys, sleep, getPx } from '../../libs/function/index';
  106. // #ifdef APP-NVUE
  107. // 由于weex为阿里的KPI业绩考核的产物,所以不支持百分比单位,这里需要通过dom查询组件的宽度
  108. const dom = uni.requireNativePlugin('dom')
  109. // #endif
  110. /**
  111. * IndexList 索引列表
  112. * @description 通过折叠面板收纳内容区域
  113. * @tutorial https://uview-plus.jiangruyi.com/components/indexList.html
  114. * @property {String} inactiveColor 右边锚点非激活的颜色 ( 默认 '#606266' )
  115. * @property {String} activeColor 右边锚点激活的颜色 ( 默认 '#5677fc' )
  116. * @property {Array} indexList 索引字符列表数组形式
  117. * @property {Boolean} sticky 是否开启锚点自动吸顶 ( 默认 true )
  118. * @property {String | Number} customNavHeight 自定义导航栏的高度 ( 默认 0 )
  119. * */
  120. export default {
  121. name: 'u-index-list',
  122. mixins: [mpMixin, mixin, props],
  123. // #ifdef MP-WEIXIN
  124. // 将自定义节点设置成虚拟的,更加接近Vue组件的表现,能更好的使用flex属性
  125. options: {
  126. virtualHost: true
  127. },
  128. // #endif
  129. data() {
  130. return {
  131. // 当前正在被选中的字母索引
  132. activeIndex: -1,
  133. touchmoveIndex: 1,
  134. // 索引字母的信息
  135. letterInfo: {
  136. height: 0,
  137. itemHeight: 0,
  138. top: 0
  139. },
  140. // 设置字母指示器的高度,后面为了让指示器跟随字母,并将尖角部分指向字母的中部,需要依赖此值
  141. indicatorHeight: 50,
  142. // 字母放大指示器的top值,为了让其指向当前激活的字母
  143. // indicatorTop: 0
  144. // 当前是否正在被触摸状态
  145. touching: false,
  146. // 滚动条顶部top值
  147. scrollTop: 0,
  148. // scroll-view的高度
  149. scrollViewHeight: 0,
  150. // 系统信息
  151. sys: sys(),
  152. scrolling: false,
  153. scrollIntoView: '',
  154. }
  155. },
  156. computed: {
  157. // 如果有传入外部的indexList锚点数组则使用,否则使用内部生成A-Z字母
  158. uIndexList() {
  159. return this.indexList.length ? this.indexList : indexList()
  160. },
  161. // 字母放大指示器的top值,为了让其指向当前激活的字母
  162. indicatorTop() {
  163. const {
  164. top,
  165. itemHeight
  166. } = this.letterInfo
  167. return Math.floor(top + itemHeight * this.activeIndex + itemHeight / 2 - this.indicatorHeight / 2)
  168. }
  169. },
  170. watch: {
  171. // 监听字母索引的变化,重新设置尺寸
  172. uIndexList: {
  173. immediate: true,
  174. handler() {
  175. sleep().then(() => {
  176. this.setIndexListLetterInfo()
  177. })
  178. }
  179. }
  180. },
  181. created() {
  182. this.children = []
  183. this.anchors = []
  184. this.init()
  185. },
  186. mounted() {
  187. this.setIndexListLetterInfo()
  188. },
  189. methods: {
  190. addUnit,
  191. init() {
  192. // 设置列表的高度为整个屏幕的高度
  193. //减去this.customNavHeight,并将this.scrollViewHeight设置为maxHeight
  194. //解决当u-index-list组件放在tabbar页面时,scroll-view内容较少时,还能滚动
  195. let customNavHeight = getPx(this.customNavHeight)
  196. this.scrollViewHeight = this.sys.windowHeight - customNavHeight
  197. },
  198. // 索引列表被触摸
  199. touchStart(e) {
  200. // 获取触摸点信息
  201. const touchStart = e.changedTouches[0]
  202. if (!touchStart) return
  203. this.touching = true
  204. const {
  205. pageY
  206. } = touchStart
  207. // 根据当前触摸点的坐标,获取当前触摸的为第几个字母
  208. const currentIndex = this.getIndexListLetter(pageY)
  209. this.setValueForTouch(currentIndex)
  210. },
  211. // 索引字母列表被触摸滑动中
  212. touchMove(e) {
  213. // 获取触摸点信息
  214. let touchMove = e.changedTouches[0]
  215. if (!touchMove) return;
  216. // 滑动结束后迅速开始第二次滑动时候 touching 为 false 造成不显示 indicator 问题
  217. if (!this.touching) {
  218. this.touching = true
  219. }
  220. const {
  221. pageY
  222. } = touchMove
  223. const currentIndex = this.getIndexListLetter(pageY)
  224. this.setValueForTouch(currentIndex)
  225. },
  226. // 触摸结束
  227. touchEnd(e) {
  228. // 延时一定时间后再隐藏指示器,为了让用户看的更直观,同时也是为了消除快速切换u-transition的show带来的影响
  229. sleep(300).then(() => {
  230. this.touching = false
  231. })
  232. },
  233. // 获取索引列表的尺寸以及单个字符的尺寸信息
  234. getIndexListLetterRect() {
  235. return new Promise(resolve => {
  236. // 延时一定时间,以获取dom尺寸
  237. // #ifndef APP-NVUE
  238. this.$uGetRect('.u-index-list__letter').then(size => {
  239. resolve(size)
  240. })
  241. // #endif
  242. // #ifdef APP-NVUE
  243. const ref = this.$refs['u-index-list__letter']
  244. dom.getComponentRect(ref, res => {
  245. resolve(res.size)
  246. })
  247. // #endif
  248. })
  249. },
  250. // 设置indexList索引的尺寸信息
  251. setIndexListLetterInfo() {
  252. this.getIndexListLetterRect().then(size => {
  253. const {
  254. height
  255. } = size
  256. const sysData = sys()
  257. const windowHeight = sysData.windowHeight
  258. let customNavHeight = 0
  259. // 消除各端导航栏非原生和原生导致的差异,让索引列表字母对屏幕垂直居中
  260. if (this.customNavHeight == 0) {
  261. // #ifdef H5
  262. customNavHeight = sysData.windowTop
  263. // #endif
  264. // #ifndef H5
  265. // 在非H5中,为原生导航栏,其高度不算在windowHeight内,这里设置为负值,后面相加时变成减去其高度的一半
  266. customNavHeight = -(sysData.statusBarHeight + 44)
  267. // #endif
  268. } else {
  269. customNavHeight = getPx(this.customNavHeight)
  270. }
  271. this.letterInfo = {
  272. height,
  273. // 为了让字母列表对屏幕绝对居中,让其对导航栏进行修正,也即往上偏移导航栏的一半高度
  274. top: (windowHeight - height) / 2 + customNavHeight / 2,
  275. itemHeight: Math.floor(height / this.uIndexList.length)
  276. }
  277. })
  278. },
  279. // 获取当前被触摸的索引字母
  280. getIndexListLetter(pageY) {
  281. const {
  282. top,
  283. height,
  284. itemHeight
  285. } = this.letterInfo
  286. // 对H5的pageY进行修正,这是由于uni-app自作多情在H5中将触摸点的坐标跟H5的导航栏结合导致的问题
  287. // #ifdef H5
  288. pageY += sys().windowTop
  289. // #endif
  290. // 对第一和最后一个字母做边界处理,因为用户可能在字母列表上触摸到两端的尽头后依然继续滑动
  291. if (pageY < top) {
  292. return 0
  293. } else if (pageY >= top + height) {
  294. // 如果超出了,取最后一个字母
  295. return this.uIndexList.length - 1
  296. } else {
  297. // 将触摸点的Y轴偏移值,减去索引字母的top值,除以每个字母的高度,即可得到当前触摸点落在哪个字母上
  298. return Math.floor((pageY - top) / itemHeight);
  299. }
  300. },
  301. // 设置各项由触摸而导致变化的值
  302. setValueForTouch(currentIndex) {
  303. // 如果偏移量太小,前后得出的会是同一个索引字母,为了防抖,进行返回
  304. if (currentIndex === this.activeIndex) return
  305. this.activeIndex = currentIndex
  306. // #ifndef APP-NVUE || MP-WEIXIN
  307. // 在非nvue中,由于anchor和item都在u-index-item中,所以需要对index-item进行偏移
  308. this.scrollIntoView = `u-index-item-${this.uIndexList[currentIndex].charCodeAt(0)}`
  309. // #endif
  310. // #ifdef MP-WEIXIN
  311. // 微信小程序下,scroll-view的scroll-into-view属性无法对slot中的内容的id生效,只能通过设置scrollTop的形式去移动滚动条
  312. const customNavHeight = this.customNavHeight
  313. this.scrollTop = this.children[currentIndex].top - getPx(customNavHeight)
  314. // #endif
  315. // #ifdef APP-NVUE
  316. // 在nvue中,由于cell和header为同级元素,所以实际是需要对header(anchor)进行偏移
  317. const anchor = `u-index-anchor-${this.uIndexList[currentIndex]}`
  318. dom.scrollToElement(this.anchors[currentIndex].$refs[anchor], {
  319. offset: 0,
  320. animated: false
  321. })
  322. // #endif
  323. },
  324. getHeaderRect() {
  325. // 获取header slot的高度,因为list组件中获取元素的尺寸是没有top值的
  326. return new Promise(resolve => {
  327. dom.getComponentRect(this.$refs.header, res => {
  328. resolve(res.size)
  329. })
  330. })
  331. },
  332. // scroll-view的滚动事件
  333. async scrollHandler(e) {
  334. if (this.touching || this.scrolling) return
  335. // 每过一定时间取样一次,减少资源损耗以及可能带来的卡顿
  336. this.scrolling = true
  337. sleep(10).then(() => {
  338. this.scrolling = false
  339. })
  340. let scrollTop = 0
  341. const len = this.children.length
  342. let children = this.children
  343. const anchors = this.anchors
  344. // #ifdef APP-NVUE
  345. // nvue下获取的滚动条偏移为负数,需要转为正数
  346. scrollTop = Math.abs(e.contentOffset.y)
  347. // 获取header slot的尺寸信息
  348. const header = await this.getHeaderRect()
  349. // item的top值,在nvue下,模拟出的anchor的top,类似非nvue下的index-item的top
  350. let top = header.height
  351. // 由于list组件无法获取cell的top值,这里通过header slot和各个item之间的height,模拟出类似非nvue下的位置信息
  352. children = this.children.map((item, index) => {
  353. const child = {
  354. height: item.height,
  355. top
  356. }
  357. // 进行累加,给下一个item提供计算依据
  358. top += item.height + anchors[index].height
  359. return child
  360. })
  361. // #endif
  362. // #ifndef APP-NVUE
  363. // 非nvue通过detail获取滚动条位移
  364. scrollTop = e.detail.scrollTop
  365. // #endif
  366. scrollTop += getPx(this.customNavHeight)
  367. for (let i = 0; i < len; i++) {
  368. const item = children[i],
  369. nextItem = children[i + 1]
  370. // 如果滚动条高度小于第一个item的top值,此时无需设置任意字母为高亮
  371. if (scrollTop <= children[0].top || scrollTop >= children[len - 1].top + children[len -
  372. 1].height) {
  373. this.activeIndex = -1
  374. break
  375. } else if (!nextItem) {
  376. // 当不存在下一个item时,意味着历遍到了最后一个
  377. this.activeIndex = len - 1
  378. break
  379. } else if (scrollTop > item.top && scrollTop < nextItem.top) {
  380. this.activeIndex = i
  381. break
  382. }
  383. }
  384. },
  385. },
  386. }
  387. </script>
  388. <style lang="scss" scoped>
  389. @import "../../libs/css/components.scss";
  390. .u-index-list {
  391. &__letter {
  392. position: fixed;
  393. right: 0;
  394. text-align: center;
  395. z-index: 3;
  396. padding: 0 6px;
  397. &__item {
  398. width: 16px;
  399. height: 16px;
  400. border-radius: 100px;
  401. margin: 1px 0;
  402. @include flex;
  403. align-items: center;
  404. justify-content: center;
  405. &--active {
  406. background-color: $u-primary;
  407. }
  408. &__index {
  409. font-size: 12px;
  410. text-align: center;
  411. line-height: 12px;
  412. }
  413. }
  414. }
  415. &__indicator {
  416. width: 50px;
  417. height: 50px;
  418. border-radius: 100px 100px 0 100px;
  419. text-align: center;
  420. color: #ffffff;
  421. background-color: #c9c9c9;
  422. transform: rotate(-45deg);
  423. @include flex;
  424. justify-content: center;
  425. align-items: center;
  426. &__text {
  427. font-size: 28px;
  428. line-height: 28px;
  429. font-weight: bold;
  430. color: #fff;
  431. transform: rotate(45deg);
  432. text-align: center;
  433. }
  434. }
  435. }
  436. </style>