forked from vaishaksuresh/webdevchecklist.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
162 lines (118 loc) · 4.29 KB
/
script.js
File metadata and controls
162 lines (118 loc) · 4.29 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
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
/// <reference path="modernizr-2.6.2.js" />
(function () {
var checkboxes = [],
details = [],
progress, bonus, fallback, prefix;
function findCheckboxes() {
var inputs = document.getElementsByTagName('input');
for (var i = 0; i < inputs.length; i++) {
if (inputs[i].type === 'checkbox') {
checkboxes.push(inputs[i]);
}
}
details = document.getElementsByTagName('em');
}
function initialize() {
bonus = document.getElementsByTagName("mark")[0];
progress = document.getElementsByTagName("progress")[0];
fallback = (progress.firstElementChild || progress.firstChild);
prefix = location.pathname.substr(1);
var max = 0;
for (var i = 0; i < checkboxes.length; i++) {
var checkbox = checkboxes[i];
checkbox.onchange = calculateProgress;
if (Modernizr.localstorage) {
var value = localStorage.getItem(prefix + checkbox.id) === "true";
checkbox.checked = value;
}
if (checkbox.parentNode.className !== "optional")
max++;
}
for (var d = 0; d < details.length; d++) {
details[d].onclick = openDetails;
}
for (var j = 0; j < details.length; j++) {
var detail = details[j];
if (Modernizr.localstorage && localStorage.getItem(prefix + detail.id))
openDetailsElement(detail);
}
progress.max = max;
}
function openDetails(e) {
if (!e) e = window.event;
var detail = (e.target || e.srcElement);
openDetailsElement(detail);
for (i = 0; i < details.length; i++) {
var detail = details[i];
if (detail.className === 'open') {
localStorage && localStorage.setItem(prefix + detail.id, true);
}
else {
localStorage && localStorage.removeItem(prefix + detail.id);
}
}
}
function openDetailsElement(detail) {
var ul = (detail.nextElementSibling || detail.nextSibling);
for (var i = 0; i < details.length; i++) {
if (details[i] !== detail) {
var d = (details[i].nextElementSibling || details[i].nextSibling);
d.style.maxHeight = "0";
}
details[i].className = 'info';
}
if (ul.style.maxHeight !== '100px') {
ul.style.maxHeight = '100px';
detail.className = 'open';
}
else {
ul.style.maxHeight = '0';
}
}
function calculateProgress() {
var count = 0,
optional = 0;
for (var i = 0; i < checkboxes.length; i++) {
var checkbox = checkboxes[i];
if (checkbox.checked)
localStorage && localStorage.setItem(prefix + checkbox.id, checkbox.checked);
else
localStorage && localStorage.removeItem(prefix + checkbox.id);
if (checkbox.parentNode.className !== "optional") {
if (checkbox.checked) {
count++;
}
}
else {
if (checkbox.checked) {
optional++;
}
}
}
bonus.innerHTML = optional.toString();
setProgressValue(count);
}
function setProgressValue(value) {
progress.value = value;
var max = parseInt(progress.max, 10);
fallback.style.width = (value * 100 / max) + "%";
}
function clearAll() {
document.getElementById("clearall").onclick = function () {
for (var i = 0; i < checkboxes.length; i++) {
checkboxes[i].checked = false;
}
localStorage && localStorage.clear();
calculateProgress();
return false;
};
}
window.onload = function () {
findCheckboxes();
initialize();
calculateProgress();
clearAll();
if (localStorage.length === 0)
details[0].click();
};
})();