transition.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. exports.transition = void 0;
  6. var utils_1 = require('../common/utils');
  7. var getClassNames = function (name) {
  8. return {
  9. enter: 'van-' + name + '-enter van-' + name + '-enter-active enter-class enter-active-class',
  10. 'enter-to': 'van-' + name + '-enter-to van-' + name + '-enter-active enter-to-class enter-active-class',
  11. leave: 'van-' + name + '-leave van-' + name + '-leave-active leave-class leave-active-class',
  12. 'leave-to': 'van-' + name + '-leave-to van-' + name + '-leave-active leave-to-class leave-active-class'
  13. };
  14. };
  15. var nextTick = function () {
  16. return new Promise(function (resolve) {
  17. return setTimeout(resolve, 33.333333333333336);
  18. });
  19. };
  20. exports.transition = function (showDefaultValue) {
  21. return {
  22. data() {
  23. return {
  24. type: '',
  25. inited: false,
  26. display: false
  27. };
  28. },
  29. props: {
  30. customStyle: String,
  31. // @ts-ignore
  32. show: {
  33. type: Boolean,
  34. value: showDefaultValue,
  35. observer: 'observeShow'
  36. },
  37. // @ts-ignore
  38. duration: {
  39. type: null,
  40. value: 300,
  41. observer: 'observeDuration'
  42. },
  43. name: {
  44. type: String,
  45. value: 'fade'
  46. }
  47. },
  48. methods: {
  49. observeShow: function (value, old) {
  50. if (value === old) {
  51. return;
  52. }
  53. if (value) {
  54. this.enter();
  55. } else {
  56. this.leave();
  57. }
  58. },
  59. enter: function () {
  60. var that = this;
  61. var _a = this;
  62. var duration = _a.duration;
  63. var name = _a.name;
  64. var classNames = getClassNames(name);
  65. var currentDuration = utils_1.isObj(duration) ? duration.enter : duration;
  66. this.status = 'enter';
  67. this.$emit('before-enter');
  68. Promise.resolve()
  69. .then(nextTick)
  70. .then(function () {
  71. that.checkStatus('enter');
  72. that.$emit('enter');
  73. that.setData({
  74. inited: true,
  75. display: true,
  76. classes: classNames.enter,
  77. currentDuration: currentDuration
  78. });
  79. })
  80. .then(nextTick)
  81. .then(function () {
  82. that.checkStatus('enter');
  83. that.transitionEnded = false;
  84. that.setData({
  85. classes: classNames['enter-to']
  86. });
  87. })
  88. .catch(function () {});
  89. },
  90. leave: function () {
  91. var that = this;
  92. if (!this.display) {
  93. return;
  94. }
  95. var _a = this;
  96. var duration = _a.duration;
  97. var name = _a.name;
  98. var classNames = getClassNames(name);
  99. var currentDuration = utils_1.isObj(duration) ? duration.leave : duration;
  100. this.status = 'leave';
  101. this.$emit('before-leave');
  102. Promise.resolve()
  103. .then(nextTick)
  104. .then(function () {
  105. that.checkStatus('leave');
  106. that.$emit('leave');
  107. that.setData({
  108. classes: classNames.leave,
  109. currentDuration: currentDuration
  110. });
  111. })
  112. .then(nextTick)
  113. .then(function () {
  114. that.checkStatus('leave');
  115. that.transitionEnded = false;
  116. setTimeout(function () {
  117. return that.onTransitionEnd();
  118. }, currentDuration);
  119. that.setData({
  120. classes: classNames['leave-to']
  121. });
  122. })
  123. .catch(function () {});
  124. },
  125. checkStatus: function (status) {
  126. if (status !== this.status) {
  127. throw new Error('incongruent status: ' + status);
  128. }
  129. },
  130. onTransitionEnd: function () {
  131. if (this.transitionEnded) {
  132. return;
  133. }
  134. this.transitionEnded = true;
  135. this.$emit('after-' + this.status);
  136. var _a = this;
  137. var show = _a.show;
  138. var display = _a.display;
  139. if (!show && display) {
  140. this.setData({
  141. display: false
  142. });
  143. }
  144. }
  145. }
  146. };
  147. };