-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathcalendar.js
149 lines (134 loc) · 4.82 KB
/
calendar.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
// calendar data template
var calendar_data = {
clickDay: function (e) {
if (e.events.length > 0) {
for (var i in e.events) {
window.open("{{site.baseurl}}/conference?id=" + e.events[i].abbreviation, "_self")
}
}
},
mouseOnDay: function (e) {
if (e.events.length > 0) {
var content = "";
for (var i in e.events) {
var headline_color = "";
var break_html = '<hr>';
var location_html = '<img src="{{site.baseurl}}/static/img/072-location.svg" className="own-badge"/> ' + e.events[i].location;
var date_html = '<img src="{{site.baseurl}}/static/img/084-calendar.svg" className="own-badge"/> ' + e.events[i].date;
var badges_html = "";
var subs = e.events[i].subject.split(',');
for (let i = 0; i < subs.length; i++) {
var sub = subs[i].replace(" ", "");
badges_html += '<span class="conf-sub conf-badge-small">' + sub + '</span>'
}
if (e.events[i].hindex != "") {
badges_html += '<span class="conf-h5 conf-badge-small">' + e.events[i].hindex + '</span>'
}
if (i == e.events.length - 1) {
break_html = '';
}
if (e.events[i].id.endsWith("deadline")) {
headline_color = 'deadline-text';
} else {
}
content +=
'<div class="event-tooltip-content">' +
'<div class="event-name ' + headline_color + '">' +
'<b>' + e.events[i].name + '</b>' +
'</div>' +
'<div class="event-location">' +
location_html +
'<br>' +
date_html +
'<br>' +
badges_html +
'</div>' +
break_html +
'</div>';
}
$(e.element).popover({
trigger: "manual",
container: "body",
html: true,
content: content,
});
$(e.element).popover("show");
}
},
mouseOutDay: function (e) {
if (e.events.length > 0) {
$(e.element).popover("hide");
}
},
customDayRenderer: function (cellContent, currentDate) {
var today = new Date();
// render today
if (today.getFullYear() === currentDate.getFullYear() && today.getMonth() === currentDate.getMonth() && today.getDate() === currentDate.getDate()) {
cellContent.style = "background-color: gray;";
}
},
dayContextMenu: function (e) {
$(e.element).popover("hide");
},
dataSource: conf_list_all
}
function load_conference_list() {
// Gather data
var conf_list_all = [];
{% for conf in site.data.conferences %}
// add deadlines in red
conf_list_all.push({
id: "{{conf.id}}-deadline",
abbreviation: "{{conf.id}}",
name: "{{conf.title}} {{conf.year}}",
color: "red",
location: "{{conf.place}}",
date: "{{conf.date}}",
hindex: "{{conf.hindex}}",
subject: "{{conf.sub}}",
startDate: Date.parse("{{conf.deadline}}"),
endDate: Date.parse("{{conf.deadline}}"),
});
// add Conferences in chosen color
{% if conf.start != "" %}
var color = "black";
{% assign conf_sub = conf.sub | split: ',' | first | strip %} // use first sub to choose color
{% for type in site.data.types %}
{% if conf_sub == type.sub %}
color = "{{type.color}}";
{% endif %}
{% endfor %}
conf_list_all.push({
id: "{{conf.id}}-conference",
abbreviation: "{{conf.id}}",
name: "{{conf.title}} {{conf.year}}",
color: color,
location: "{{conf.place}}",
date: "{{conf.date}}",
hindex: "{{conf.hindex}}",
subject: "{{conf.sub}}",
startDate: Date.parse("{{conf.start}}"),
endDate: Date.parse("{{conf.end}}"),
});
{% endif %}
{% endfor %}
return conf_list_all;
}
function update_filtering(data) {
store.set('{{site.domain}}-subs', data.subs);
conf_list = conf_list_all.filter(v => {
var commonValues = data.subs.filter(function (value) {
return v.subject.indexOf(value) > -1;
});
var subject_match = commonValues.length > 0;
return subject_match;
});
// rerender calendar
calendar_data['dataSource'] = conf_list; // need to update only this
calendar = new Calendar("#calendar-page", calendar_data);
if (subs.length == 0) {
window.history.pushState('', '', page_url);
} else {
window.history.pushState('', '', page_url + '/?sub=' + data.subs.join());
}
}