-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoment.recurrence.js
145 lines (101 loc) · 2.04 KB
/
moment.recurrence.js
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
if ( typeof require !== 'undefined' )
{
moment = require('moment');
}
(function(moment) {
var FREQUENCIES = [
"YEARLY",
"MONTHLY",
"WEEKLY",
"DAILY",
"HOURLY",
"MINUTELY",
"SECONDLY"
];
var exists = function(val){
return typeof val !='undefined' && val !== null;
} ;
function recurr(val){
if( !exists(val)){
val = {};
}
this.freq = val.freq || 'DAILY';
this.interval = val.interval || 1;
this.by= val.by || null;
this.until= val.until || null;
this.count = val.count || -1;
return this;
}
recurr.prototype.isFinite = function(){
return this.count > 0 || this.until !== null;
};
moment.fn.hasRecurrence= function(){
return exists(this._recurrence);
};
moment.fn.hasFiniteRecurrences= function(){
return exists(this._recurrence) && this._recurrence.isFinite();
};
moment.fn.recurr = function(pattern){
this._recurrence = new recurr(pattern);
return this;
};
var FREQ_HANDLER = {
"YEARLY": {
next: function(m, rec){
m.add({years: rec.interval});
}
},
"MONTHLY": {
next: function(m, rec){
m.add({months: rec.interval});
}
},
"WEEKLY": {
next: function(m, rec){
m.add({weeks: rec.interval});
}
},
"DAILY": {
next: function(m, rec){
m.add({days: rec.interval});
}
},
"HOURLY": {
next: function(m, rec){
m.add({hours: rec.interval});
}
},
"MINUTELY": {
next: function(m, rec){
m.add({minutes: rec.interval});
}
},
"SECONDLY": {
next: function(m, rec){
m.add({seconds: rec.interval});
}
}
};
moment.fn.nextRecurrence = function(){
if (! exists(this._recurrence)){
return null;
}
var r = this._recurrence;
//no more recurrences
if ( r.count <=0 && r.until === null){
return null;
}
var n = moment(this);
var f = FREQ_HANDLER[r.freq.toUpperCase()];
if(typeof f == 'undefined'){
throw "Unknown recurrence freq type of "+r.freq;
}
f.next(n,r);
r = new recurr(r);
if(r.count >= 0){
r.count--;
n._recurrence = r;
}
return n;
};
})(moment);