-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweeks.js
More file actions
140 lines (106 loc) · 2.78 KB
/
Copy pathweeks.js
File metadata and controls
140 lines (106 loc) · 2.78 KB
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
'use strict';
(function (module) {
var moment = require('moment');
var _buffer;
var _startDate;
var _weeksAdjustment;
var _weeksAmount;
function Weeks() {
_buffer = [];
_startDate = new Date();
_weeksAdjustment = undefined;
_weeksAmount = undefined;
if(! (this instanceof Weeks)) {
return new Weeks();
}
}
function _ofPreposition(locale) {
var map = {
"en": "of",
"es": "de"
};
if (map[locale]) {
return map[locale]
}
if (this.withLocale() !== 'en') {
return map[this.withLocale()];
} else {
return map.en;
}
}
function withLocale(locale) {
if (locale) {
this._locale = locale;
return this;
} else {
return this._locale;
}
}
function starting(date) {
if (!date) {
date = new Date();
}
if (date instanceof Date === false) {
throw new Error('startDate must be a Date object');
}
_startDate = date;
return this;
}
function get(weeksAmount) {
// give a start date
if (!weeksAmount) {
// throw error
throw new Error('weeksAmount needs to be set.');
}
_weeksAmount = weeksAmount;
return this;
}
function mapped(iterationCallable) {
var self = this;
if (typeof iterationCallable === 'function') {
var limitedMethods = {
withLocale,
ofPreposition: _ofPreposition,
_locale: self._locale
};
var _locale = this.withLocale();
moment.locale(_locale);
for (let iteration = 0, weeksAdjustment = 0; iteration < _weeksAmount; iteration++) {
// first week
// get monday Date
weeksAdjustment = 7 * iteration;
var momentDay = moment(_startDate);
var adjustedMomentDay = momentDay.day(momentDay.day() + weeksAdjustment);
let result = iterationCallable.call(limitedMethods, adjustedMomentDay, _startDate);
if (result) {
_buffer.push(result);
}
}
return _buffer;
}
}
function mapPartial(callable) {
var self = this;
return function() {
return mapped.call(self, callable);
}
}
function values() {
for (let iteration = 0, weeksAdjustment = 0; iteration < _weeksAmount; iteration++) {
weeksAdjustment = 7 * iteration;
var momentDay = moment(_startDate);
momentDay.day(momentDay.day() + weeksAdjustment);
_buffer.push(momentDay.toDate());
}
return _buffer;
}
Weeks.prototype._locale = 'en';
Weeks.prototype.starting = starting;
Weeks.prototype.withLocale = withLocale;
Weeks.prototype.get = get;
Weeks.prototype.mapped = mapped;
Weeks.prototype.mapPartial = mapPartial;
Weeks.prototype.values = values;
Weeks.prototype.ofPreposition = _ofPreposition;
module.exports = Weeks;
})(module);