-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue.js
380 lines (319 loc) · 12.9 KB
/
app.vue.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
var testData = {
/**
* Справочники
*/
"schools":{
"school1":{ "_id":"school1", "title":"Школа разработки интерфейсов", "shortTitle":"ШРИ", "studentsCount":10 },
"school2":{ "_id":"school2", "title":"Школа мобильного дизайна", "shortTitle":"ШМД", "studentsCount":10 },
"school3":{ "_id":"school3", "title":"Школа мобильной разработки", "shortTitle":"ШМР", "studentsCount":10 }
},
"rooms":{
"room1":{ "_id":"room1", "title":"Room 1", "capacity":20, "location":"turn right and go go go!" },
"room2":{ "_id":"room2", "title":"Room 2", "capacity":20, "location":"just go" },
"room3":{ "_id":"room3", "title":"Room 3", "capacity":20, "location":"run!" }
},
"lessons":{
"lesson1":{ "_id":"lesson1", "title":"Lesson 1" },
"lesson2":{ "_id":"lesson2", "title":"Lesson 2" },
"lesson3":{ "_id":"lesson3", "title":"Lesson 3" },
"lesson4":{ "_id":"lesson4", "title":"Lesson 4" }
},
"lecturers":{
"lecturer1":{ "_id":"lecturer1", "name":"Alexander", "ava":"uploads/ava1.png", "bio":"Все вращается вокруг интерфейсов!" },
"lecturer2":{ "_id":"lecturer2", "name":"Ivan", "ava":"uploads/ava2.png", "bio":"Хороший дизайн ставит данные на первый план" },
"lecturer3":{ "_id":"lecturer3", "name":"Anton", "ava":"uploads/ava3.png", "bio":"Антоха перезвонит!" },
"lecturer4":{ "_id":"lecturer4", "name":"Dron", "ava":"uploads/ava4.png", "bio":"Дрон сказал так сойдет!" }
},
/**
* Расписание
*/
"schedule":[
{ "_id":"schedule1", "plannedDateTime":1492369200/*16.04.2017 19:00*/, "plannedDateTimeEnd":1492376400/*16.04.2017 21:00*/, "lessonId":"lesson1", "lecturerId":"lecturer1", "roomId":"room1", "schools":["school1"], "isDraft":false, "hasCookies":true },
{ "_id":"schedule2", "plannedDateTime":1499108400/*03.07.2017 19:00*/, "plannedDateTimeEnd":1499115600/*03.07.2017 21:00*/, "lessonId":"lesson2", "lecturerId":"lecturer1", "roomId":"room1", "schools":["school2", "school3"], "isDraft":false, "hasCookies":false },
{ "_id":"schedule3", "plannedDateTime":1499115600/*03.07.2017 21:00*/, "plannedDateTimeEnd":1499119200/*03.07.2017 22:00*/, "lessonId":"lesson3", "lecturerId":"lecturer3", "roomId":"room2", "schools":["school2"], "isDraft":false, "hasCookies":true },
{ "_id":"schedule4", "plannedDateTime":1499194800/*03.07.2017 19:00*/, "plannedDateTimeEnd":1499198400/*04.07.2017 20:00*/, "lessonId":"lesson4", "lecturerId":"lecturer4", "roomId":"room3", "schools":["school1", "school3"], "isDraft":false, "hasCookies":true }
]
};
(function(window, undefined) {
"use strict";
var APP_PREFFIX = "yaschedule-app";
// Небольшая обертка для LocalStorage
// Делать библиотеку для работы с расписанием жестко зависимой от механизма хранения не стал
var appStorage = {
fetch: function (item) {
item = [APP_PREFFIX, item].join('-');
return JSON.parse( window.localStorage.getItem( item ) );
},
save: function (item, data) {
item = [APP_PREFFIX, item].join('-');
window.localStorage.setItem(item, JSON.stringify(data))
}
}
// Заполняем localStorage тестовыми данными, если хранилища нет
var storageTypes = ['schedule', 'lecturers', 'lessons', 'rooms', 'schools' ];
for (var i in storageTypes) {
if ( !localStorage.getItem( [APP_PREFFIX, storageTypes[i]].join('-') ) )
{
appStorage.save(storageTypes[i], testData[storageTypes[i]] );
}
}
// Momentjs config
moment.locale('ru');
// Т.к. не хотелось хранить избыточные данные и сравнивать лекторов между собой по имени (а также аудитории, школы),
// было решено нормализованнать данные.
//
// Лекторы, Школы, Аудитории и Лекции были вынесены в отдельные справочники.
//
// В расписании связывается ДатаВремя с Лектором, Школами, Аудиторией и Лекцией по ключу.
//
// Далее, было решено вынести библиотеку управления справочниками, т.к. она самодостаточна и ее реализация
// может быть любой (в том числе ее может не быть вовсе или она уже могла бы быть написана)
//
// Иннициялизация YaSchool
//
YaSchool.init({
data: {
lecturers : appStorage.fetch('lecturers'),
lessons : appStorage.fetch('lessons'),
rooms : appStorage.fetch('rooms'),
schools : appStorage.fetch('schools')
}
})
.on("afterAnyAdded", function(itemType) {
itemType = itemType + 's';
appStorage.save(itemType, YaSchool.getData(itemType) );
appView.$forceUpdate();
})
.on("afterAnyUpdated", function(itemType) {
itemType = itemType + 's';
appStorage.save(itemType, YaSchool.getData(itemType) );
appView.$forceUpdate();
})
.on("afterAnyDeleted", function(itemType) {
itemType = itemType + 's';
appStorage.save(itemType, YaSchool.getData(itemType) );
appView.$forceUpdate();
})
/**
* Иннициализация библиотеки Scheduler
*/
Scheduler.init({
data: appStorage.fetch('schedule'),
directories: YaSchool.getData()
})
.on("afterScheduleAdded", function() {
appStorage.save('schedule', Scheduler.getPlainScheduleData() );
appView.$forceUpdate();
})
.on("afterScheduleDeleted", function() {
appStorage.save('schedule', Scheduler.getPlainScheduleData() );
appView.$forceUpdate();
})
.on("afterScheduleUpdated", function() {
appStorage.save('schedule', Scheduler.getPlainScheduleData() );
appView.$forceUpdate();
});
// Данные приложения
var appData = {
// Расписание
schedule : Scheduler.getTreeScheduleData(),
// Справочники
lecturers : YaSchool.getData('lecturers'),
lessons : YaSchool.getData('lessons'),
rooms : YaSchool.getData('rooms'),
schools : YaSchool.getData('schools')
}
/*
Vuejs используется только для просмотра
*/
var appView = new Vue({
el: '#scheduleWidget',
data: {
/* Заглушка. В будущем нужно брать серверное время
и периодически обновлять (sockets/ajaxPooling etc) */
"serverCurrentTime": parseInt(Date.now()/1000, 10),
/* TODO: переделать в map */
"modelFilterByDate": "today",
"modelFilterBySchoolId": "all",
"modelFilterByStatusHidePast": false,
"modelDropdownVisible": {
"schools": false,
"date": false
},
"modelLecturerBalloons": {},
/* Передаем справочники в просмотр */
"schedule": appData.schedule,
"lecturers": appData.lecturers,
"lessons": appData.lessons,
"rooms": appData.rooms,
/* Передаем расписание в просмотр */
"schools": appData.schools
}, // data
// https://coligo.io/vuejs-filters/
// Методы просмотра
methods: {
/* Mappers */
lecturerResolve: function(lecturerId) {
return this.lecturers[ lecturerId ] || "Unknown lecturer: "+lecturerId;
},
lessonResolve: function(lessonId) {
return this.lessons[ lessonId ] || "Unknown lesson: "+lessonId;
},
roomResolve: function(roomId) {
return this.rooms[ roomId ] || "Unknown room: "+roomId;
},
schoolResolve: function(schoolId) {
return this.schools[ schoolId ] || "Unknown school: "+schoolId;
},
/* Filters/formatters */
extractDayNum: function(seconds) {
var date = new Date( seconds * 1000 )
return date.getUTCDate().toString();
},
extractTime: function(seconds) {
var date = new Date( seconds * 1000 )
return [ ('0'+date.getUTCHours()).substr(-2), ('0'+date.getUTCMinutes()).substr(-2) ].join(':');
},
/* Conditions */
isTimePast: function(seconds) {
return this.serverCurrentTime > parseInt(seconds, 10);
},
isToday: function(seconds) {
var dateNow = new Date( this.serverCurrentTime * 1000 )
, dayNumNow = dateNow.getUTCDate()
, monthNumNow = dateNow.getUTCMonth()
, yearNumNow = dateNow.getUTCFullYear()
;
var date = new Date( seconds * 1000 )
, dayNum = date.getUTCDate()
, monthNum = date.getUTCMonth()
, yearNum = date.getUTCFullYear()
;
return dayNum === dayNumNow && monthNum === monthNumNow && yearNum === yearNumNow;
},
/* Balloons */
showBalloon: function(balloonId) {
//this.hideAllBalloons(); // TODO: hide only last balloon
this.hideAllDropdowns();
var b;
b = !!this.modelLecturerBalloons[balloonId];
this.hideAllBalloons();
this.modelLecturerBalloons[balloonId] = !b;
this.$forceUpdate();
return false;
},
hideAllBalloons: function() {
for (var i in this.modelLecturerBalloons) {
this.modelLecturerBalloons[i] = false;
}
this.$forceUpdate();
},
isBalloonVisible: function(balloonId) {
return this.modelLecturerBalloons[balloonId];
},
/* Dropdowns */
hideAllDropdowns: function() {
for (var i in this.modelDropdownVisible) {
this.modelDropdownVisible[i] = false;
}
},
toggleDropdown: function(listId) {
var b;
this.hideAllBalloons();
b = this.modelDropdownVisible[listId];
this.hideAllDropdowns();
this.modelDropdownVisible[listId] = !b;
return false;
},
isDropdownVisible: function(listId) {
return this.modelDropdownVisible[listId];
},
/* Filters */
setFilterByDate: function(mode, event) {
this.modelFilterByDate = mode;
this.hideAllDropdowns();
if (event) {
event.preventDefault();
}
return false;
},
setFilterBySchoolId: function(schoolId, event) {
this.modelFilterBySchoolId = schoolId;
this.hideAllDropdowns();
if (event) {
event.preventDefault();
}
return false;
},
toggleFilterByStatus: function(event) {
this.modelFilterByStatusHidePast = !this.modelFilterByStatusHidePast;
if (event) {
event.preventDefault();
}
},
isSelectedFilterBySchoolId: function(schoolId) {
return schoolId === this.modelFilterBySchoolId;
},
isSelectedFilterByDate: function(mode) {
if ('today' === mode) {
return 'today' === this.modelFilterByDate;
}
// mode в этом случае будет равен номеру месяца
return mode === this.modelFilterByDate;
},
filterBySchoolId: function(item) {
if (!this.modelFilterBySchoolId || 'all' === this.modelFilterBySchoolId) {
return true;
}
return item.schools.indexOf(this.modelFilterBySchoolId) !== -1;
},
filterByStatus: function (item) {
if (true === this.modelFilterByStatusHidePast && this.isTimePast(item.plannedDateTime)) {
return false;
}
return true;
},
filterByDate: function (item) {
if ('today' === this.modelFilterByDate) {
return this.isToday(item.plannedDateTime);
}
var date = new Date(item.plannedDateTime * 1000);
return (date.getUTCMonth()+1) === this.modelFilterByDate;
},
getFilteredMonths: function() {
var o = {};
if ('today' === this.modelFilterByDate) {
// Вернем сегодняшний номер месяца, чтобы в просмотре не было других пустых месяцев
// (т.к. в них нет лекций по фильтру Сегодня)
var date = new Date(this.$data.serverCurrentTime*1000);
o[ date.getUTCMonth().toString() ] = "";
return o;
}
// Иначе покажем все дни на выбранный месяц
var monthNum = ~~this.modelFilterByDate;
monthNum--; // т.к. в JS месяцы начинаются с 0
o[ monthNum.toString() ] = "";
return o;
},
getFilteredDates: function(monthNum) {
var _this = this;
var o = {};
if ('today' === this.modelFilterByDate) {
var date = new Date(this.$data.serverCurrentTime*1000);
o[ date.getUTCDate().toString() ] = "";
return o;
}
// Иначе, вернем список номеров дней, в выбранном месяце, на которые есть запланированные лекции
Scheduler.eachTreeScheduleDay(function(monthNum, dayNum, item) {
/*Если месяц равен выбранному в фильтре, то добавляем его дни в результат*/
if (~~monthNum === ~~_this.modelFilterByDate-1) {
o[ dayNum ] = "";
}
});
return o;
}
} // methods
}); // new Vue
// Регистрируем приложение в области видимости окна (если кто-то пожелает пообщаться с ним)
window.scheduleWidget = appView;
}(window));