-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathCALEXT2_Scene.js
More file actions
49 lines (45 loc) · 1.36 KB
/
CALEXT2_Scene.js
File metadata and controls
49 lines (45 loc) · 1.36 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
/* global View */
// eslint-disable-next-line no-unused-vars
class Scene {
constructor (uid, cfgs) {
const scene = cfgs.scenes[uid];
const sceneLength = cfgs.scenes.length;
this.config = cfgs;
this.name = scene.name;
this.className = scene.className;
this.uid = uid;
this.nextUid = uid === sceneLength - 1 ? 0 : uid + 1;
this.previousUid = uid === 0 ? sceneLength - 1 : uid - 1;
this.viewNames =
!scene.views || scene.views.length === 0
? cfgs.views.map((v) => v.name)
: scene.views;
this.calendarNames =
!scene.calendars || scene.calendars.length === 0
? cfgs.calendars.map((v) => v)
: scene.calendars;
this.views = [];
}
draw (events) {
this.clearViews();
this.viewNames.forEach((viewName) => {
const viewConfig = this.config.views.find(
(config) => config.name === viewName
);
viewConfig.sceneClassName = this.className;
viewConfig.calendarLegends = viewConfig.calendars.map((calendarName) =>
this.calendarNames.find((config) => config.name === calendarName));
const view = View.makeByName(viewConfig, events);
if (view) {
this.views.push(view);
view.draw();
}
});
}
clearViews () {
for (let i = 0; i < this.views.length; i++) {
const view = this.views[i];
view.destroy();
}
}
}