forked from matchu/Strict-Workflow
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoptions.js
134 lines (114 loc) · 4.11 KB
/
options.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
/*
Localization
*/
// Localize all elements with a data-i18n="message_name" attribute
var localizedElements = document.querySelectorAll('[data-i18n]'), el, message;
for(var i = 0; i < localizedElements.length; i++) {
el = localizedElements[i];
message = chrome.i18n.getMessage(el.getAttribute('data-i18n'));
// Capitalize first letter if element has attribute data-i18n-caps
if(el.hasAttribute('data-i18n-caps')) {
message = message.charAt(0).toUpperCase() + message.substr(1);
}
el.innerHTML = message;
}
/*
Form interaction
*/
var form = document.getElementById('options-form'),
siteListEl = document.getElementById('site-list'),
whitelistEl = document.getElementById('blacklist-or-whitelist'),
showNotificationsEl = document.getElementById('show-notifications'),
shouldRingEl = document.getElementById('should-ring'),
clickRestartsEl = document.getElementById('click-restarts'),
saveSuccessfulEl = document.getElementById('save-successful'),
timeFormatErrorEl = document.getElementById('time-format-error'),
background = chrome.extension.getBackgroundPage(),
startCallbacks = {}, durationEls = {},
userNameEl = document.getElementById('username'),
authTokenEl = document.getElementById('authtoken'),
goalEl = document.getElementById('goal');
durationEls['work'] = document.getElementById('work-duration');
durationEls['break'] = document.getElementById('break-duration');
var TIME_REGEX = /^([0-9]+)(:([0-9]{2}))?$/;
form.onsubmit = function () {
console.log("form submitted");
var durations = {}, duration, durationStr, durationMatch;
for(var key in durationEls) {
durationStr = durationEls[key].value;
durationMatch = durationStr.match(TIME_REGEX);
if(durationMatch) {
console.log(durationMatch);
durations[key] = (60 * parseInt(durationMatch[1], 10));
if(durationMatch[3]) {
durations[key] += parseInt(durationMatch[3], 10);
}
} else {
timeFormatErrorEl.className = 'show';
return false;
}
}
console.log(durations);
background.setPrefs({
siteList: siteListEl.value.split(/\r?\n/),
durations: durations,
showNotifications: showNotificationsEl.checked,
shouldRing: shouldRingEl.checked,
clickRestarts: clickRestartsEl.checked,
whitelist: whitelistEl.selectedIndex == 1,
userName: userNameEl.value,
authToken: authTokenEl.value,
goal: goalEl.value
})
saveSuccessfulEl.className = 'show';
return false;
}
siteListEl.onfocus = formAltered;
showNotificationsEl.onchange = formAltered;
shouldRingEl.onchange = formAltered;
clickRestartsEl.onchange = formAltered;
whitelistEl.onchange = formAltered;
function formAltered() {
saveSuccessfulEl.removeAttribute('class');
timeFormatErrorEl.removeAttribute('class');
}
siteListEl.value = background.PREFS.siteList.join("\n");
showNotificationsEl.checked = background.PREFS.showNotifications;
shouldRingEl.checked = background.PREFS.shouldRing;
clickRestartsEl.checked = background.PREFS.clickRestarts;
whitelistEl.selectedIndex = background.PREFS.whitelist ? 1 : 0;
var duration, minutes, seconds;
for(var key in durationEls) {
duration = background.PREFS.durations[key];
seconds = duration % 60;
minutes = (duration - seconds) / 60;
if(seconds >= 10) {
durationEls[key].value = minutes + ":" + seconds;
} else if(seconds > 0) {
durationEls[key].value = minutes + ":0" + seconds;
} else {
durationEls[key].value = minutes;
}
durationEls[key].onfocus = formAltered;
}
userNameEl.value = background.PREFS.userName;
authTokenEl.value = background.PREFS.authToken;
goalEl.value = background.PREFS.goal;
function setInputDisabled(state) {
siteListEl.disabled = state;
whitelistEl.disabled = state;
for(var key in durationEls) {
durationEls[key].disabled = state;
}
}
startCallbacks.work = function () {
document.body.className = 'work';
setInputDisabled(true);
}
startCallbacks.break = function () {
document.body.removeAttribute('class');
setInputDisabled(false);
}
if(background.mainPomodoro.mostRecentMode == 'work') {
startCallbacks.work();
}