forked from urfu-2016/javascript-task-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
60 lines (49 loc) · 1.61 KB
/
index.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
'use strict';
var robbery = require('./robbery');
var gangSchedule = {
Danny: [
{ from: 'ПН 12:00+5', to: 'ПН 17:00+5' },
{ from: 'ВТ 13:00+5', to: 'ВТ 16:00+5' }
],
Rusty: [
{ from: 'ПН 11:30+5', to: 'ПН 16:30+5' },
{ from: 'ВТ 13:00+5', to: 'ВТ 16:00+5' }
],
Linus: [
{ from: 'ПН 09:00+3', to: 'ПН 14:00+3' },
{ from: 'ПН 21:00+3', to: 'ВТ 09:30+3' },
{ from: 'СР 09:30+3', to: 'СР 15:00+3' }
]
};
var bankWorkingHours = {
from: '10:00+5',
to: '18:00+5'
};
// Время не существует
var longMoment = robbery.getAppropriateMoment(gangSchedule, 121, bankWorkingHours);
// Выведется false и ""
console.info(longMoment.exists());
console.info(longMoment.format('Метим на %DD, старт в %HH:%MM!'));
// Время существует
var moment = robbery.getAppropriateMoment(gangSchedule, 90, bankWorkingHours);
// Выведется true и "Метим на ВТ, старт в 11:30!"
console.info(moment.exists());
console.info(moment.format('Метим на %DD, старт в %HH:%MM!'));
if (robbery.isStar) {
// Вернет true
moment.tryLater();
// "ВТ 16:00"
console.info(moment.format('%DD %HH:%MM'));
// Вернет true
moment.tryLater();
// "ВТ 16:30"
console.info(moment.format('%DD %HH:%MM'));
// Вернет true
moment.tryLater();
// "СР 10:00"
console.info(moment.format('%DD %HH:%MM'));
// Вернет false
moment.tryLater();
// "СР 10:00"
console.info(moment.format('%DD %HH:%MM'));
}