index.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <view class="van-count-down">
  3. <slot v-if="useSlot" />
  4. <block v-else>{{ formattedTime }}</block>
  5. </view>
  6. </template>
  7. <script>
  8. 'use strict';
  9. Object.defineProperty(exports, '__esModule', {
  10. value: true
  11. });
  12. var component_1 = require('../common/component');
  13. var utils_1 = require('./utils');
  14. function simpleTick(fn) {
  15. return setTimeout(fn, 30);
  16. }
  17. component_1.VantComponent({
  18. props: {
  19. useSlot: Boolean,
  20. millisecond: Boolean,
  21. time: {
  22. type: Number,
  23. observer: 'reset'
  24. },
  25. format: {
  26. type: String,
  27. value: 'HH:mm:ss'
  28. },
  29. autoStart: {
  30. type: Boolean,
  31. value: true
  32. }
  33. },
  34. data: {
  35. timeData: utils_1.parseTimeData(0),
  36. formattedTime: '0'
  37. },
  38. destroyed: function () {
  39. clearTimeout(this.tid);
  40. this.tid = null;
  41. },
  42. methods: {
  43. // 开始
  44. start: function () {
  45. if (this.counting) {
  46. return;
  47. }
  48. this.counting = true;
  49. this.endTime = Date.now() + this.remain;
  50. this.tick();
  51. },
  52. // 暂停
  53. pause: function () {
  54. this.counting = false;
  55. clearTimeout(this.tid);
  56. },
  57. // 重置
  58. reset: function () {
  59. this.pause();
  60. this.remain = this.time;
  61. this.setRemain(this.remain);
  62. if (this.autoStart) {
  63. this.start();
  64. }
  65. },
  66. tick: function () {
  67. if (this.millisecond) {
  68. this.microTick();
  69. } else {
  70. this.macroTick();
  71. }
  72. },
  73. microTick: function () {
  74. var that = this;
  75. this.tid = simpleTick(function () {
  76. that.setRemain(that.getRemain());
  77. if (that.remain !== 0) {
  78. that.microTick();
  79. }
  80. });
  81. },
  82. macroTick: function () {
  83. var that = this;
  84. this.tid = simpleTick(function () {
  85. var remain = that.getRemain();
  86. if (!utils_1.isSameSecond(remain, that.remain) || remain === 0) {
  87. that.setRemain(remain);
  88. }
  89. if (that.remain !== 0) {
  90. that.macroTick();
  91. }
  92. });
  93. },
  94. getRemain: function () {
  95. return Math.max(this.endTime - Date.now(), 0);
  96. },
  97. setRemain: function (remain) {
  98. this.remain = remain;
  99. var timeData = utils_1.parseTimeData(remain);
  100. if (this.useSlot) {
  101. this.$emit('change', timeData);
  102. }
  103. this.setData({
  104. formattedTime: utils_1.parseFormat(this.format, timeData)
  105. });
  106. if (remain === 0) {
  107. this.pause();
  108. this.$emit('finish');
  109. }
  110. }
  111. }
  112. });
  113. </script>
  114. <style>
  115. @import './index.css';
  116. </style>