transition.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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('afterEnter')
  43. // 标识动画尚未结束
  44. this.transitionEnded = false
  45. // 赋予组件enter-to类名
  46. this.classes = classNames['enter-to']
  47. })
  48. },
  49. // 动画离场处理
  50. vueLeave() {
  51. // 如果不是展示状态,无需执行逻辑
  52. if (!this.display) return
  53. const classNames = getClassNames(this.mode)
  54. // 标记离开状态和发出事件
  55. this.status = 'leave'
  56. this.$emit('beforeLeave')
  57. // 获得类名
  58. this.classes = classNames.leave
  59. this.$nextTick(() => {
  60. // 标记动画已经结束了
  61. this.transitionEnded = false
  62. // 组件执行动画,到了执行的执行时间后,执行一些额外处理
  63. setTimeout(this.onTransitionEnd, this.duration)
  64. this.classes = classNames['leave-to']
  65. })
  66. },
  67. // #endif
  68. // #ifdef APP-NVUE
  69. // nvue版本动画进场
  70. nvueEnter() {
  71. // 获得样式的名称
  72. const currentStyle = getStyle(this.mode)
  73. // 组件动画状态和发出事件
  74. this.status = 'enter'
  75. this.$emit('beforeEnter')
  76. // 展示生成组件元素
  77. this.inited = true
  78. this.display = true
  79. // 在nvue安卓上,由于渲染速度慢,在弹窗,键盘,日历等组件中,渲染其中的内容需要时间
  80. // 导致出现弹窗卡顿,这里让其一开始为透明状态,等一定时间渲染完成后,再让其隐藏起来,再让其按正常逻辑出现
  81. this.viewStyle = {
  82. opacity: 0
  83. }
  84. // 等待弹窗内容渲染完成
  85. this.$nextTick(() => {
  86. // 合并样式
  87. this.viewStyle = currentStyle.enter
  88. Promise.resolve()
  89. .then(nextTick)
  90. .then(() => {
  91. // 组件开始进入前的事件
  92. this.$emit('enter')
  93. // nvue的transition动画模块需要通过ref调用组件,注意此处的ref不同于vue的this.$refs['u-transition']用法
  94. animation.transition(this.$refs['u-transition'].ref, {
  95. styles: currentStyle['enter-to'],
  96. duration: this.duration,
  97. timingFunction: this.timingFunction,
  98. needLayout: false,
  99. delay: 0
  100. }, () => {
  101. // 动画执行完毕,发出事件
  102. this.$emit('afterEnter')
  103. })
  104. })
  105. .catch(() => {})
  106. })
  107. },
  108. nvueLeave() {
  109. if (!this.display) {
  110. return
  111. }
  112. const currentStyle = getStyle(this.mode)
  113. // 定义状态和事件
  114. this.status = 'leave'
  115. this.$emit('beforeLeave')
  116. // 合并样式
  117. this.viewStyle = currentStyle.leave
  118. // 放到promise中处理执行过程
  119. Promise.resolve()
  120. .then(nextTick) // 等待几十ms
  121. .then(() => {
  122. this.transitionEnded = false
  123. // 动画正在离场的状态
  124. this.$emit('leave')
  125. animation.transition(this.$refs['u-transition'].ref, {
  126. styles: currentStyle['leave-to'],
  127. duration: this.duration,
  128. timingFunction: this.timingFunction,
  129. needLayout: false,
  130. delay: 0
  131. }, () => {
  132. this.onTransitionEnd()
  133. })
  134. })
  135. .catch(() => {})
  136. },
  137. // #endif
  138. // 完成过渡后触发
  139. onTransitionEnd() {
  140. // 如果已经是结束的状态,无需再处理
  141. if (this.transitionEnded) return
  142. this.transitionEnded = true
  143. // 发出组件动画执行后的事件
  144. this.$emit(this.status === 'leave' ? 'afterLeave' : 'afterEnter')
  145. if (!this.show && this.display) {
  146. this.display = false
  147. this.inited = false
  148. }
  149. }
  150. }
  151. }