-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
169 lines (135 loc) · 5.67 KB
/
script.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
function processProfiles(data) {
console.log(data);
window.profiles = data;
updateProfileSelect(data);
}
function updateProfileSelect(profiles) {
const profileSelect = document.getElementById("profile");
profileSelect.innerHTML = ""; // Clear the select options
Object.keys(profiles).forEach((profileName) => {
const option = document.createElement("option");
option.value = profileName;
option.text = profileName;
profileSelect.appendChild(option);
});
profileSelect.selectedIndex = 0;
loadProfile(profiles[profileSelect.value]);
}
document.getElementById("profile").addEventListener("change", loadSelectedProfile);
document.getElementById("generate").addEventListener("click", generateLifeWeeks);
function loadSelectedProfile() {
const selectedValue = this.value;
const selectedProfile = profiles[selectedValue];
loadProfile(selectedProfile)
}
function loadProfile(selectedProfile) {
console.log(profile);
document.getElementById("birthDate").value = selectedProfile.birthDate;
document.getElementById("title").value = selectedProfile.title;
document.getElementById("yearsToShow").value = selectedProfile.yearsToShow;
const eventsDataTextarea = document.getElementById("eventsData");
eventsDataTextarea.value = JSON.stringify(selectedProfile.eventsData, null, 2);
generateLifeWeeks();
}
async function loadGistJSONP() {
const gistId = document.getElementById("gistId").value;
try {
// Fetch the gist using GitHub API to get the raw URL of the profiles.js file
let response = await fetch(`https://api.github.com/gists/${gistId}`);
let data = await response.json();
// Get the raw_url of the "profiles.js" from the gist's data
let rawUrl = data.files["profiles.js"].raw_url;
let fileContent = data.files["profiles.js"].content;
eval(fileContent);
} catch (error) {
console.error("Error loading the JSONP file:", error);
}
}
function generateLifeWeeks() {
const table = document.getElementById("weeksTable");
table.innerHTML = ""; // Clear the table
const birthDateValue = new Date(document.getElementById("birthDate").value);
const yearsToShow = document.getElementById("yearsToShow").value;
let eventsData = JSON.parse(document.getElementById("eventsData").value);
// Normalize the events data. If there's only a date property, set begin and end to that date.
eventsData.events.forEach((event) => {
if (event.date && !event.begin && !event.end) {
event.begin = event.date;
event.end = event.date;
}
});
const today = new Date();
// Create header with week numbers
const headerRow = document.createElement("tr");
const emptyCell = document.createElement("td"); // empty cell for aligning the year label
headerRow.appendChild(emptyCell);
const weekGroups = [9, 10, 10, 10, 10, 3]; // colspans
weekGroups.forEach((colspan, idx) => {
const weekCell = document.createElement("td");
weekCell.setAttribute("colspan", colspan);
weekCell.innerText = (idx * 10).toString(); // week numbers 0, 10, 20, ...
headerRow.appendChild(weekCell);
});
table.appendChild(headerRow);
for (let y = 0; y < yearsToShow; y++) {
const yearRow = document.createElement("tr");
// Year label
const yearCell = document.createElement("td");
yearCell.innerText = y;
if (y % 5 === 0) {
yearCell.style.fontWeight = "bold";
}
yearRow.appendChild(yearCell);
for (let w = 1; w <= 52; w++) {
const weekCell = document.createElement("td");
// Set the weekCell styles and attributes
weekCell.classList.add("week");
weekCell.setAttribute("data-year", y);
weekCell.setAttribute("data-week", w);
const cellDateBegin = addWeeks(birthDateValue, y * 52 + w - 1);
const cellDateEnd = addWeeks(birthDateValue, y * 52 + w);
// Gray out the square from birthdate to today
if (cellDateBegin >= birthDateValue && cellDateEnd <= today) {
weekCell.style.backgroundColor = "#eee";
}
// Event overlay
eventsData.events.forEach((event) => {
const eventBegin = event.begin ? new Date(event.begin) : birthDateValue;
const eventEnd = event.end ? new Date(event.end) : today;
if (
(eventBegin <= cellDateEnd && eventEnd >= cellDateBegin) ||
(eventBegin <= cellDateBegin && eventEnd >= cellDateEnd)
) {
weekCell.style.backgroundColor = event.color;
weekCell.title =
(weekCell.title ? weekCell.title + "\n" : "") + event.description;
}
});
yearRow.appendChild(weekCell);
}
table.appendChild(yearRow);
}
}
function addWeeks(date, weeks) {
const newDate = new Date(date.valueOf());
newDate.setDate(newDate.getDate() + 7 * weeks);
return newDate;
}
function updateURLWithGistId(gistId) {
if (window.history && window.history.pushState) {
const newURL = new URL(window.location.href);
newURL.searchParams.set('gistId', gistId);
window.history.pushState({}, '', newURL.toString());
}
}
function getGistIdFromURL() {
const urlParams = new URLSearchParams(window.location.search);
return urlParams.get('gistId');
}
window.onload = function() {
const urlGistId = getGistIdFromURL();
if (urlGistId) {
document.getElementById("gistId").value = urlGistId;
}
loadGistJSONP();
}