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