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.

179 lines
5.4 KiB

4 months ago
  1. // nvue操作dom的库,用于获取dom的尺寸信息
  2. const dom = uni.requireNativePlugin('dom');
  3. const bindingX = uni.requireNativePlugin('bindingx');
  4. const animation = uni.requireNativePlugin('animation');
  5. import { getPx, getDuration } from '../../libs/function/index';
  6. export default {
  7. data() {
  8. return {
  9. // 所有按钮的总宽度
  10. buttonsWidth: 0,
  11. // 是否正在移动中
  12. moving: false
  13. }
  14. },
  15. computed: {
  16. // 获取过渡时间
  17. getDuratin() {
  18. let duration = String(this.duration)
  19. // 如果ms为单位,返回ms的数值部分
  20. if (duration.indexOf('ms') >= 0) return parseInt(duration)
  21. // 如果s为单位,为了得到ms的数值,需要乘以1000
  22. if (duration.indexOf('s') >= 0) return parseInt(duration) * 1000
  23. // 如果值传了数值,且小于30,认为是s单位
  24. duration = Number(duration)
  25. return duration < 30 ? duration * 1000 : duration
  26. }
  27. },
  28. watch: {
  29. show(n) {
  30. if(n) {
  31. this.moveCellByAnimation('open')
  32. } else {
  33. this.moveCellByAnimation('close')
  34. }
  35. }
  36. },
  37. mounted() {
  38. this.initialize()
  39. },
  40. methods: {
  41. initialize() {
  42. this.queryRect()
  43. },
  44. // 关闭单元格,用于打开一个,自动关闭其他单元格的场景
  45. closeHandler() {
  46. if(this.status === 'open') {
  47. // 如果在打开状态下,进行点击的话,直接关闭单元格
  48. return this.moveCellByAnimation('close') && this.unbindBindingX()
  49. }
  50. },
  51. // 点击单元格
  52. clickHandler() {
  53. // 如果在移动中被点击,进行忽略
  54. if(this.moving) return
  55. // 尝试关闭其他打开的单元格
  56. this.parent && this.parent.closeOther(this)
  57. if(this.status === 'open') {
  58. // 如果在打开状态下,进行点击的话,直接关闭单元格
  59. return this.moveCellByAnimation('close') && this.unbindBindingX()
  60. }
  61. },
  62. // 滑动单元格
  63. onTouchstart(e) {
  64. // 如果当前正在移动中,或者disabled状态,则返回
  65. if(this.moving || this.disabled) {
  66. return this.unbindBindingX()
  67. }
  68. if(this.status === 'open') {
  69. // 如果在打开状态下,进行点击的话,直接关闭单元格
  70. return this.moveCellByAnimation('close') && this.unbindBindingX()
  71. }
  72. // 特殊情况下,e可能不为一个对象
  73. e?.stopPropagation && e.stopPropagation()
  74. e?.preventDefault && e.preventDefault()
  75. this.moving = true
  76. // 获取元素ref
  77. const content = this.getContentRef()
  78. let expression = `min(max(${-this.buttonsWidth}, x), 0)`
  79. // 尝试关闭其他打开的单元格
  80. this.parent && this.parent.closeOther(this)
  81. // 阿里为了KPI而开源的BindingX
  82. this.panEvent = bindingX.bind({
  83. anchor: content,
  84. eventType: 'pan',
  85. props: [{
  86. element: content,
  87. // 绑定width属性,设置其宽度值
  88. property: 'transform.translateX',
  89. expression
  90. }]
  91. }, (res) => {
  92. this.moving = false
  93. if (res.state === 'end' || res.state === 'exit') {
  94. const deltaX = res.deltaX
  95. if(deltaX <= -this.buttonsWidth || deltaX >= 0) {
  96. // 如果触摸滑动的过程中,大于单元格的总宽度,或者大于0,意味着已经动过滑动达到了打开或者关闭的状态
  97. // 这里直接进行状态的标记
  98. this.$nextTick(() => {
  99. this.status = deltaX <= -this.buttonsWidth ? 'open' : 'close'
  100. })
  101. } else if(Math.abs(deltaX) > getPx(this.threshold)) {
  102. // 在移动大于阈值、并且小于总按钮宽度时,进行自动打开或者关闭
  103. // 移动距离大于0时,意味着需要关闭状态
  104. if(Math.abs(deltaX) < this.buttonsWidth) {
  105. this.moveCellByAnimation(deltaX > 0 ? 'close' : 'open')
  106. }
  107. } else {
  108. // 在小于阈值时,进行关闭操作(如果在打开状态下,将不会执行bindingX)
  109. this.moveCellByAnimation('close')
  110. }
  111. }
  112. })
  113. },
  114. // 释放bindingX
  115. unbindBindingX() {
  116. // 释放上一次的资源
  117. if (this?.panEvent?.token != 0) {
  118. bindingX.unbind({
  119. token: this.panEvent?.token,
  120. // pan为手势事件
  121. eventType: 'pan'
  122. })
  123. }
  124. },
  125. // 查询按钮节点信息
  126. queryRect() {
  127. // 历遍所有按钮数组,通过getRectByDom返回一个promise
  128. const promiseAll = this.options.map((item, index) => {
  129. return this.getRectByDom(this.$refs[`u-swipe-action-item__right__button-${index}`][0])
  130. })
  131. // 通过promise.all方法,让所有按钮的查询结果返回一个数组的形式
  132. Promise.all(promiseAll).then(sizes => {
  133. this.buttons = sizes
  134. // 计算所有按钮总宽度
  135. this.buttonsWidth = sizes.reduce((sum, cur) => sum + cur.width, 0)
  136. })
  137. },
  138. // 通过nvue的dom模块,查询节点信息
  139. getRectByDom(ref) {
  140. return new Promise(resolve => {
  141. dom.getComponentRect(ref, res => {
  142. resolve(res.size)
  143. })
  144. })
  145. },
  146. // 移动单元格到左边或者右边尽头
  147. moveCellByAnimation(status = 'open') {
  148. if(this.moving) return
  149. // 标识当前状态
  150. this.moveing = true
  151. const content = this.getContentRef()
  152. const x = status === 'open' ? -this.buttonsWidth : 0
  153. animation.transition(content, {
  154. styles: {
  155. transform: `translateX(${x}px)`,
  156. },
  157. duration: getDuration(this.duration, false),
  158. timingFunction: 'ease-in-out'
  159. }, () => {
  160. this.moving = false
  161. this.status = status
  162. this.unbindBindingX()
  163. })
  164. },
  165. // 获取元素ref
  166. getContentRef() {
  167. return this.$refs['u-swipe-action-item__content'].ref
  168. },
  169. // #ifdef VUE2
  170. beforeDestroy() {
  171. // #endif
  172. // #ifdef VUE3
  173. beforeUnmount() {
  174. // #endif
  175. this.unbindBindingX()
  176. }
  177. }
  178. }