transition.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. // 定义一个一定时间后自动成功的promise,让调用nextTick方法处,进入下一个then方法
  2. const nextTick = () => new Promise(resolve => setTimeout(resolve, 1000 / 50))
  3. // nvue动画模块实现细节抽离在外部文件
  4. import animationMap from './nvue.ani-map.js'
  5. // #ifndef APP-NVUE
  6. // 定义类名,通过给元素动态切换类名,赋予元素一定的css动画样式
  7. const getClassNames = (name) => ({
  8. enter: `u-${name}-enter u-${name}-enter-active`,
  9. 'enter-to': `u-${name}-enter-to u-${name}-enter-active`,
  10. leave: `u-${name}-leave u-${name}-leave-active`,
  11. 'leave-to': `u-${name}-leave-to u-${name}-leave-active`
  12. })
  13. // #endif
  14. // #ifdef APP-NVUE
  15. // 引入nvue(weex)的animation动画模块,文档见:
  16. // https://weex.apache.org/zh/docs/modules/animation.html#transition
  17. const animation = uni.requireNativePlugin('animation')
  18. const getStyle = (name) => animationMap[name]
  19. // #endif
  20. export default {
  21. methods: {
  22. // 组件被点击发出事件
  23. clickHandler() {
  24. this.$emit('click')
  25. },
  26. // #ifndef APP-NVUE
  27. // vue版本的组件进场处理
  28. vueEnter() {
  29. // 动画进入时的类名
  30. const classNames = getClassNames(this.mode)
  31. // 定义状态和发出动画进入前事件
  32. this.status = 'enter'
  33. this.$emit('beforeEnter')
  34. this.inited = true
  35. this.display = true
  36. this.classes = classNames.enter
  37. this.$nextTick(async () => {
  38. // #ifdef H5
  39. await uni.$u.sleep(20)
  40. // #endif
  41. // 标识动画尚未结束
  42. this.$emit('enter')
  43. this.transitionEnded = false
  44. // 组件动画进入后触发的事件
  45. this.$emit('afterEnter')
  46. // 赋予组件enter-to类名
  47. this.classes = classNames['enter-to']
  48. })
  49. },
  50. // 动画离场处理
  51. vueLeave() {
  52. // 如果不是展示状态,无需执行逻辑
  53. if (!this.display) return
  54. const classNames = getClassNames(this.mode)
  55. // 标记离开状态和发出事件
  56. this.status = 'leave'
  57. this.$emit('beforeLeave')
  58. // 获得类名
  59. this.classes = classNames.leave
  60. this.$nextTick(() => {
  61. // 动画正在离场的状态
  62. this.transitionEnded = false
  63. this.$emit('leave')
  64. // 组件执行动画,到了执行的执行时间后,执行一些额外处理
  65. setTimeout(this.onTransitionEnd, this.duration)
  66. this.classes = classNames['leave-to']
  67. })
  68. },
  69. // #endif
  70. // #ifdef APP-NVUE
  71. // nvue版本动画进场
  72. nvueEnter() {
  73. // 获得样式的名称
  74. const currentStyle = getStyle(this.mode)
  75. // 组件动画状态和发出事件
  76. this.status = 'enter'
  77. this.$emit('beforeEnter')
  78. // 展示生成组件元素
  79. this.inited = true
  80. this.display = true
  81. // 在nvue安卓上,由于渲染速度慢,在弹窗,键盘,日历等组件中,渲染其中的内容需要时间
  82. // 导致出现弹窗卡顿,这里让其一开始为透明状态,等一定时间渲染完成后,再让其隐藏起来,再让其按正常逻辑出现
  83. this.viewStyle = {
  84. opacity: 0
  85. }
  86. // 等待弹窗内容渲染完成
  87. this.$nextTick(() => {
  88. // 合并样式
  89. this.viewStyle = currentStyle.enter
  90. Promise.resolve()
  91. .then(nextTick)
  92. .then(() => {
  93. // 组件开始进入前的事件
  94. this.$emit('enter')
  95. // nvue的transition动画模块需要通过ref调用组件,注意此处的ref不同于vue的this.$refs['u-transition']用法
  96. animation.transition(this.$refs['u-transition'].ref, {
  97. styles: currentStyle['enter-to'],
  98. duration: this.duration,
  99. timingFunction: this.timingFunction,
  100. needLayout: false,
  101. delay: 0
  102. }, () => {
  103. // 动画执行完毕,发出事件
  104. this.$emit('afterEnter')
  105. })
  106. })
  107. .catch(() => {})
  108. })
  109. },
  110. nvueLeave() {
  111. if (!this.display) {
  112. return
  113. }
  114. const currentStyle = getStyle(this.mode)
  115. // 定义状态和事件
  116. this.status = 'leave'
  117. this.$emit('beforeLeave')
  118. // 合并样式
  119. this.viewStyle = currentStyle.leave
  120. // 放到promise中处理执行过程
  121. Promise.resolve()
  122. .then(nextTick) // 等待几十ms
  123. .then(() => {
  124. this.transitionEnded = false
  125. // 动画正在离场的状态
  126. this.$emit('leave')
  127. animation.transition(this.$refs['u-transition'].ref, {
  128. styles: currentStyle['leave-to'],
  129. duration: this.duration,
  130. timingFunction: this.timingFunction,
  131. needLayout: false,
  132. delay: 0
  133. }, () => {
  134. this.onTransitionEnd()
  135. })
  136. })
  137. .catch(() => {})
  138. },
  139. // #endif
  140. // 完成过渡后触发
  141. onTransitionEnd() {
  142. // 如果已经是结束的状态,无需再处理
  143. if (this.transitionEnded) return
  144. this.transitionEnded = true
  145. // 发出组件动画执行后的事件
  146. this.$emit(this.status === 'leave' ? 'afterLeave' : 'afterEnter')
  147. if (!this.show && this.display) {
  148. this.display = false
  149. this.inited = false
  150. }
  151. }
  152. }
  153. }