-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.js
267 lines (236 loc) · 10.6 KB
/
popup.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/* DECODEX INSOUMIS
LES INSOUMIS NUMERIQUES
VERSION 1 / MARS 2017
REMERCIEMENT A L'EQUIPE LES DECODEURS DU MONDE
;#+###.
'#+##+###++
`#++##########:
##+'++##########
+###+'+####+######
#####;++####+###+'#
######:++#++++#####: .,,.
+;#####+'+###+'+#### +++######:
+'+++#+#;'+ +#++####: #++######'+##
##+#######. +######## '##++######++###
:'+'+###++ +###+### ####+++####++#####
###+##### ####+## ###########++++#####
'+++''''' ###+# ######++;###+#''+####'
++##'#++ #++ ;+##++++++, +++######
;++++':+ +++++++'' `##+#####
+##+#+++ ++++++++; ,##+##++
.''''';' ++++++++ ##++#++;
+#++#+'+ ######## #++++##
+''+++' ##+++++; ##+#+#+
#++##++ ,##::### ;#+#++#
'+++++' ###:;##' ######;
,++##++; ###+### ###+###
'+##+#+. .####### #######
####### ####'##: ###'###
#+##### +###### #######
#+##### +###++# ###+###
#+#+### ,+###+++ +######
'+'####. #####:;` +##;###
,+#####; #'+##:: ,#+#+##;
+++###+ #+###+# ##+#'##
######+ ####### ##+#;##
'+++++' .#+###+' ##+#:##
;+#####+ +#+####. #++##+#'
'+++#+# ##+#### #+#+#;#
+####+## ####### +#######
.''''+##. ##+#### ;#####+:`
####+### ##+###+ ++####++
`'+'''++# ####### #++##+++
###+##### ##+#### ####+++++
##+######` .##+###+ ,###++####
`######@@#' '##+###; #####'+###
;+####++'##,#######: ';####++###.
'#######+#####+###, ,#########++#,
+#####++#####+###::#####+#####+#++.
:#####+#########';#####+++#####+
##########+###++#####++######
'#+''+++#'###+'+#+++++;++#,
'++####+###:;####++++#;
:#######++'####+++
:##+###+++##;
##+###'
#######
##+####
##+++##
##++###
+#+####.
.++####'
#+#####
+####+#
#+#####
'+####+
+#####
######
.####+
,:`
*/
var browser = browser || chrome;
var max_notes = 6; // (de 0 à 5 = 6 notes)
function bulleStore(e){
var infobulles;
var id = parseInt(this.id.replace("check-alert", ""));
var checked = this.checked;
browser.storage.local.get('infobulles', function(results){
infobulles = results.infobulles;
if(checked) {
infobulles[id] = true;
}
else {
infobulles[id] = false;
}
browser.storage.local.set({
'infobulles': infobulles
}
);
});
}
function refreshDatabase(e){
browser.storage.local.set({
'last_update': ((new Date().getTime()) - 24*60*60*1000)
});
this.blur();
}
function linkInNewTab(a) {
var href = a.href; // une fermeture ... sinon ça ne marche pas si le <a> contient par exemple une <img>
a.addEventListener('click', function(e){
if (href!==undefined) {
browser.tabs.create({url:href});
window.close();
}
e.preventDefault();
});
return a;
}
function createLink(toDOM,url,title) {
var a = document.createElement("a");
a.href = url; a.innerText = title;
linkInNewTab(a);
toDOM.appendChild(a);
return a;
}
function main() {
var background = browser.extension.getBackgroundPage();
if(background.has_info == true) {
// TODO afficher les infos manquantes avec popup.js et popup.html
document.querySelector(".content #site-name").innerText = background.site_actif;
document.querySelector("#notule").innerText = background.notule;
document.querySelector("#our-opinion").style["color"] = background.color;
document.querySelector("#our-opinion").innerText = background.message;
if(background.decodex_note) {
document.querySelector("#les-decodeurs #comment").innerText = "Les Décodeurs du Monde jugent eux ce site comme ";
document.querySelector("#les-decodeurs #description").style["color"] = background.decodex_color;
document.querySelector("#les-decodeurs #description").style["font-weight"] = "bold";
document.querySelector("#les-decodeurs #description").innerText = background.decodex_desc;
}
else {
document.querySelector("#les-decodeurs").innerText = "Les Décodeurs du Monde n'ont pas noté ce site. Ils le considèrent (peut être) comme fiable ou ne le connaissent pas.";
}
document.querySelector("#owner-msg").innerText = background.owner_msg;
//document.querySelector("#proprietaires span.content").innerText = background.proprietaires.join(",");
console && console.group("la boucle proprietaire : ");
console && console.log(background.proprietaires);
for(var i in background.proprietaires) {
console && console.log("proprietaire "+i);
if (!background.proprietaires[i]) {
document.querySelector("#proprietaire"+i).style = "display:none";
} else {
document.querySelector("#proprietaire"+i).style = "";
document.querySelector("#proprietaire"+i+" .nom").innerText = background.proprietaires[i]
}
if (!background.fortunes[i]) {
document.querySelector("#proprietaire"+i+" td.detail").style = "display:none";
} else {
document.querySelector("#proprietaire"+i+" td.detail").innerText =
background.fortunes[i]
+ background.marques[i]
+ background.influences[i];
document.querySelector("#proprietaire"+i+" td.detail").style = "";
}
}
console && console.groupEnd();
//document.querySelector("#fortunes span.content").innerText = background.fortunes.join(",");
//document.querySelector("#brands span.content").innerText = background.marques.join(",");
//document.querySelector("#influences span.content").innerText = background.influences.join(",");
//document.querySelector("#interests span.content").innerText = background.interets;
//document.querySelector("#conflicts span.content").innerText = background.conflits;
//document.querySelector("#subsidies span.content").innerText = background.subventions;
var source_wrapper = document.querySelector("#sources");
var target_sources = document.querySelector("#sources .content");
target_sources.innerText = "";
if (background.sources.length == 0) {
source_wrapper.style.display = "none";
}
else {
source_wrapper.style.display = "block";
for(var i in background.sources) {
var obj = background.sources[i];
createLink(target_sources, obj.url, obj.title);
}
}
// background.sources.forEach(function(obj, i){
//});
document.querySelector("#decodex-insoumis-window").style.display = "block";
document.querySelector("#verif-insoumis").classList.remove("active");
document.querySelector("#decodex-insoumis-window").classList.add('active');
//document.querySelector("#more-info-insoumis").href = "https://laec.fr/section/8/la-revolution-citoyenne-dans-les-medias";
}
else {
document.querySelector("#verif-insoumis").style.display = "block";
document.querySelector("#decodex-insoumis-window").classList.remove('active');
document.querySelector("#verif-insoumis").classList.add("active");
document.querySelector("#decodex-insoumis-window").style.display = "none";
}
var params = document.querySelector("#params");
params.addEventListener("click", function(){
var parameters = document.querySelector("#parameters");
if(params.classList.contains("active-p")){
params.classList.remove("active-p");
parameters.style.display = "none";
document.querySelector(".active").style.display = "block";
}
else {
params.classList.add("active-p");
document.querySelector(".active").style.display = "none";
parameters.style.display = "block";
}
});
browser.storage.local.get('infobulles', function(results){
for(var i=0;i<max_notes;i++){
var thisCheckbox = document.getElementById("check-alert"+i);
if (thisCheckbox) {
if(results.infobulles[i] == true){
thisCheckbox.checked = true;
}
else {
thisCheckbox.checked = false;
}
}
}
});
//linkInNewTab(document.querySelector(".propos-par a"));
//linkInNewTab(document.querySelector("#more-info-insoumis"));
for(var i=0;i<max_notes;i++){
if (background.colors[i]) {
var thisalert = document.querySelector("#alert"+i);
if (thisalert) {
thisalert.style.color = background.colors[i];
}
} else {
//console && console.log("oups");
}
}
}
document.addEventListener('DOMContentLoaded', function () {
main();
for(var i=0;i<max_notes;i++){
var thisCheckbox = document.querySelector("#check-alert"+i);
if (thisCheckbox) {
thisCheckbox.addEventListener('click', bulleStore);
}
}
document.querySelector('#do-refresh-database').addEventListener('click', refreshDatabase);
});