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.

180 lines
5.4 KiB

4 months ago
  1. /**
  2. * 使用bindingx方案实现slider
  3. * 只能使用于nvue下
  4. */
  5. // 引入bindingx,此库类似于微信小程序wxs,目的是让js运行在视图层,减少视图层和逻辑层的通信折损
  6. const BindingX = uni.requireNativePlugin('bindingx')
  7. // nvue操作dom的库,用于获取dom的尺寸信息
  8. const dom = uni.requireNativePlugin('dom')
  9. // nvue中用于操作元素动画的库,类似于uni.animation,只不过uni.animation不能用于nvue
  10. const animation = uni.requireNativePlugin('animation')
  11. import { range } from '../../libs/function/index';
  12. export default {
  13. data() {
  14. return {
  15. // bindingx的回调值,用于取消绑定
  16. panEvent: null,
  17. // 标记是否移动状态
  18. moving: false,
  19. // 位移的偏移量
  20. x: 0,
  21. // 是否正在触摸过程中,用于标记动画类是否添加或移除
  22. touching: false,
  23. changeFromInside: false
  24. }
  25. },
  26. watch: {
  27. // 监听vlaue的变化,此变化可能是由于内部修改v-model的值,或者外部
  28. // 从服务端获取一个值后,赋值给slider的v-model而导致的
  29. value(n) {
  30. if (!this.changeFromInside) {
  31. this.initX()
  32. } else {
  33. this.changeFromInside = false
  34. }
  35. }
  36. },
  37. mounted() {
  38. this.init()
  39. },
  40. methods: {
  41. init() {
  42. this.getSliderRect()
  43. },
  44. // 获取节点信息
  45. // 获取slider尺寸
  46. getSliderRect() {
  47. // 获取滑块条的尺寸信息
  48. // 通过nvue的dom模块,查询节点信息
  49. setTimeout(() => {
  50. dom.getComponentRect(this.$refs['slider'], res => {
  51. this.sliderRect = res.size
  52. this.initX()
  53. })
  54. }, 10)
  55. },
  56. // 初始化按钮位置
  57. initButtonStyle({
  58. barStyle,
  59. buttonWrapperStyle
  60. }) {
  61. this.barStyle = barStyle
  62. this.buttonWrapperStyle = buttonWrapperStyle
  63. },
  64. emitEvent(event, value) {
  65. this.$emit(event, value ? value : this.value)
  66. },
  67. formatStep(value) {
  68. // 移动点占总长度的百分比
  69. return Math.round(Math.max(this.min, Math.min(value, this.max)) / this.step) * this.step
  70. },
  71. // 滑动开始
  72. onTouchStart(e) {
  73. // 阻止页面滚动,可以保证在滑动过程中,不让页面可以上下滚动,造成不好的体验
  74. e.stopPropagation && e.stopPropagation()
  75. e.preventDefault && e.preventDefault()
  76. if (this.moving || this.disabled) {
  77. // 释放上一次的资源
  78. if (this.panEvent?.token != 0) {
  79. BindingX.unbind({
  80. token: this.panEvent.token,
  81. // pan为手势事件
  82. eventType: 'pan'
  83. })
  84. this.gesToken = 0
  85. }
  86. return
  87. }
  88. this.moving = true
  89. this.touching = true
  90. // 获取元素ref
  91. const button = this.$refs['nvue-button'].ref
  92. const gap = this.$refs['nvue-gap'].ref
  93. const {
  94. min,
  95. max,
  96. step
  97. } = this
  98. const {
  99. left,
  100. width
  101. } = this.sliderRect
  102. // 初始值为本次偏移量x,加上次停止滑动时的结束值
  103. let exporession = `(${this.x} + x)`
  104. // 将偏移的x值,转为总位移的百分比值,为了和min和max进行判断
  105. exporession = `(${exporession} / ${width}) * 100`
  106. if (step > 1) {
  107. // 如果step步进大于1,需要跳步,所以需要使用Math.round进行取整
  108. exporession = `round(max(${min}, min(${exporession}, ${max})) / ${step}) * ${step}`
  109. } else {
  110. // 当step=1时,无需跳步,充分利用bindingx性能,滑块实时跟随手势,达到丝滑的效果
  111. exporession = `max(${min}, min(${exporession}, ${max}))`
  112. }
  113. // 将百分比最后转化为对应的px值
  114. exporession = `${exporession} / 100 * ${width}`
  115. // 最大值不允许超过轨迹的宽度
  116. const {
  117. sliderWidth
  118. } = this.sliderRect
  119. exporession = `min(${sliderWidth}, ${exporession})`
  120. // 滑块点总是需要一个左偏移的值,为自身宽度的一半
  121. const buttonExpression = `${exporession} - ${this.blockHeight / 2}`
  122. // 阿里为了KPI而开源的BindingX
  123. this.panEvent = BindingX.bind({
  124. anchor: button,
  125. eventType: 'pan',
  126. props: [{
  127. element: gap,
  128. // 绑定width属性,设置其宽度值
  129. property: 'width',
  130. expression
  131. }, {
  132. element: button,
  133. // 绑定width属性,设置其宽度值
  134. property: 'transform.translateX',
  135. expression: buttonExpression
  136. }]
  137. }, (e) => {
  138. if (e.state === 'end' || e.state === 'exit') {
  139. //
  140. this.x = range(0, left + width, e.deltaX + this.x)
  141. // 根据偏移值,得出移动的百分比,进而修改双向绑定的v-model的值
  142. const value = (this.x / width) * 100
  143. const percent = this.formatStep(value)
  144. // 修改value值
  145. this.$emit('input', percent)
  146. // 标记下一次触发value的watch时,这个值的变化,是由内部改变的
  147. this.changeFromInside = true
  148. this.moving = false
  149. this.touching = false
  150. }
  151. })
  152. },
  153. // 从value的变化,倒推得出x的值该为多少
  154. initX() {
  155. const {
  156. left,
  157. width
  158. } = this.sliderRect
  159. // 得出x的初始偏移值,之所以需要这么做,是因为在bindingX中,触摸滑动时,只能的值本次移动的偏移值
  160. // 而无法的值准确的前后移动的两个点的坐标值,weex纯粹为阿里巴巴的KPI(部门业绩考核)产物,也就这样了
  161. this.x = this.value / 100 * width
  162. // 设置移动的值
  163. const barStyle = {
  164. width: this.x + 'px'
  165. }
  166. // 按钮的初始值
  167. const buttonWrapperStyle = {
  168. transform: `translateX(${this.x - this.blockHeight / 2}px)`
  169. }
  170. this.initButtonStyle({
  171. barStyle,
  172. buttonWrapperStyle
  173. })
  174. }
  175. }
  176. }