-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbootstrap.js
726 lines (587 loc) · 23.5 KB
/
bootstrap.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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
const {interfaces: Ci, utils: Cu, classes: Cc} = Components;
const self = {
name: 'Throbber Restored',
path: {
chrome: 'chrome://throbber-restored/content/'
},
aData: 0,
};
const myServices = {};
var cssUri;
var cssUri_CustomImgIdle;
var cssUri_CustomImgLoading;
Cu.import('resource://gre/modules/Services.jsm');
Cu.import('resource:///modules/CustomizableUI.jsm');
Cu.import('resource://gre/modules/XPCOMUtils.jsm');
Cu.import('resource://gre/modules/osfile.jsm');
Cu.import('resource://gre/modules/FileUtils.jsm');
XPCOMUtils.defineLazyGetter(myServices, 'sss', function(){ return Cc['@mozilla.org/content/style-sheet-service;1'].getService(Ci.nsIStyleSheetService) });
var workers = [];
const gMutationConfig = {attributes:true, attributeOldValue:true};
function winWorker(aDOMWindow) {
this.DOMWindow = aDOMWindow;
this.DOMDocument = this.DOMWindow.document;
this.gBrowser = this.DOMWindow.gBrowser;
this.gThrobber = this.DOMDocument.getElementById('navigator-throbber');
this.gMutationFunc = function(ms) {
for(let m of ms) {
if(m.attributeName == 'busy') {
if (m.oldValue == 'true') { //if m.oldValue == null then it did not exist before
this.gThrobber.removeAttribute('loading');
} else {
this.gThrobber.setAttribute('loading', 'true');
}
break;
}
}
};
this.gMutationObserver = new this.DOMWindow.MutationObserver(this.gMutationFunc.bind(this));
if (!this.gBrowser) {
}
if (!this.gThrobber) {
}
if (!this.gBrowser.tabContainer) {
}
this.onTabSelect = function(e) {
this.gMutationObserver.disconnect();
var tab = e.target;
//var throbber = tab.ownerDocument.getAnonymousElementByAttribute(tab, 'class', 'tab-throbber')
this.gMutationObserver.observe(tab, gMutationConfig);
if (tab.hasAttribute('busy')) {
this.gThrobber.setAttribute('loading', 'true');
} else {
this.gThrobber.removeAttribute('loading');
}
};
this.onTabSelectBinded = this.onTabSelect.bind(this);
this.init = function() {
this.gBrowser.tabContainer.addEventListener('TabSelect', this.onTabSelectBinded, false);
var tab = this.gBrowser.selectedTab;
//var throbber = tab.ownerDocument.getAnonymousElementByAttribute(tab, 'class', 'tab-throbber');
this.gMutationObserver.observe(tab, gMutationConfig);
// var gThrobberIcon = this.gThrobber.ownerDocument.getAnonymousElementByAttribute(this.gThrobber, 'class', 'toolbarbutton-icon');
// gThrobberIcon.removeAttribute('class');
};
this.destroy = function() {
this.gMutationObserver.disconnect();
this.gBrowser.tabContainer.removeEventListener('TabSelect', this.onTabSelectBinded, false);
};
}
var observers = {
inlineOptsDispd: {
observe: function (aSubject, aTopic, aData) {
if (aData == self.aData.id) {
var doc = aSubject;
/*start - set up xul on custom images settings*/
var custImgIdle = doc.querySelector('setting[pref="extensions.ThrobberRestored.customImgIdle"]');
var custImgLoading = doc.querySelector('setting[pref="extensions.ThrobberRestored.customImgLoading"]');
var custImgSettings = {customImgIdle: custImgIdle, customImgLoading: custImgLoading}; //key = pref name in prefs object value is the setting xul element
for (var n in custImgSettings) {
var props = {
id: 'resetBtn_' + n,
label: 'Restore Default',
anonid: 'resetbtn'
};
if (prefs[n].value == '') {
props.style = 'display:none;'
}
var preExEl = doc.querySelector('#' + props.id);
if (preExEl) { //label is already there so continue, so remove it then we'll add again
preExEl.parentNode.removeChild(preExEl);
}
var el = doc.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul', 'button');
var bound = function(settingPrefName, settingXUL) {
prefs[settingPrefName].setval('');
settingXUL.inputChanged();
}.bind(null, n, custImgSettings[n]);
el.addEventListener('command', bound, false);
for (var p in props) {
el.setAttribute(p, props[p]);
}
var browseBtn = doc.getAnonymousElementByAttribute(custImgSettings[n], 'anonid', 'button');
browseBtn.parentNode.insertBefore(el, browseBtn);
//start the oninput changed method
var setattr = '';
//setattr += 'alert(\'starting ' + n + '\');';
setattr += 'var resetBtn = document.getAnonymousElementByAttribute(this, \'anonid\', \'resetbtn\');';
setattr += 'var img = document.getAnonymousElementByAttribute(this, \'anonid\', \'preview\');';
setattr += 'if (this.value != "") {'
setattr += 'resetBtn.style.display = \'\';';
setattr += 'resetBtn.style.display = \'\';';
setattr += 'img.src = Services.io.newFileURI(new FileUtils.File(this.value)).spec;';
setattr += 'img.setAttribute(\'value\', this.value);';
setattr += '} else {';
setattr += 'resetBtn.style.display = \'none\';';
setattr += 'img.src = \'\';';
setattr += '}';
//setattr += 'alert(\'done\');';
custImgSettings[n].setAttribute('oninputchanged', setattr);
//end the oninput changed method
//add idle img preview
var browseLbl = doc.getAnonymousElementByAttribute(custImgSettings[n], 'anonid', 'input');
browseLbl.style.display = 'none';
var el = doc.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul', 'image');
var props = {
id: 'imgPreview_' + n,
onclick: 'alert(\'Original Path of Image on Disk: "\' + this.getAttribute(\'value\') + \'"\')',
anonid: 'preview',
src: '',
value: ''
};
var preExEl = doc.querySelector('#' + props.id);
if (preExEl) { //so remove it then we'll add again (just in case this is an update or something and something changed)
preExEl.parentNode.removeChild(preExEl);
}
if (prefs[n].value != '') {
var normalized = OS.Path.normalize(prefs[n].value);
//var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, OS.Path.basename(normalized));
var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, 'throbber-restored-' + n);
props.src = Services.io.newFileURI(new FileUtils.File(profRootDirLoc)).spec;
props.value = prefs[n].value;
}
for (var p in props) {
el.setAttribute(p, props[p]);
}
browseLbl.parentNode.insertBefore(el, browseLbl);
//end idle img preview
}
/*end - set up xul on custom images settings*/
}
},
reg: function () {
Services.obs.addObserver(observers.inlineOptsDispd, 'addon-options-displayed', false);
},
unreg: function () {
Services.obs.removeObserver(observers.inlineOptsDispd, 'addon-options-displayed');
}
},
inlineOptsHid: {
observe: function (aSubject, aTopic, aData) {
if (aData == self.aData.id) {
//addonMgrXulWin = null; //trial as of 112713
}
},
reg: function () {
Services.obs.addObserver(observers.inlineOptsHid, 'addon-options-hidden', false);
},
unreg: function () {
Services.obs.removeObserver(observers.inlineOptsHid, 'addon-options-hidden');
}
}
};
/*start - windowlistener*/
var windowListener = {
//DO NOT EDIT HERE
onOpenWindow: function (aXULWindow) {
// Wait for the window to finish loading
let aDOMWindow = aXULWindow.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindowInternal || Ci.nsIDOMWindow);
aDOMWindow.addEventListener('load', function () {
aDOMWindow.removeEventListener('load', arguments.callee, false);
windowListener.loadIntoWindow(aDOMWindow, aXULWindow);
}, false);
},
onCloseWindow: function (aXULWindow) {},
onWindowTitleChange: function (aXULWindow, aNewTitle) {},
register: function () {
// Load into any existing windows
let XULWindows = Services.wm.getXULWindowEnumerator(null);
while (XULWindows.hasMoreElements()) {
let aXULWindow = XULWindows.getNext();
let aDOMWindow = aXULWindow.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindowInternal || Ci.nsIDOMWindow);
windowListener.loadIntoWindow(aDOMWindow, aXULWindow);
}
// Listen to new windows
Services.wm.addListener(windowListener);
},
unregister: function () {
// Unload from any existing windows
let XULWindows = Services.wm.getXULWindowEnumerator(null);
while (XULWindows.hasMoreElements()) {
let aXULWindow = XULWindows.getNext();
let aDOMWindow = aXULWindow.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindowInternal || Ci.nsIDOMWindow);
windowListener.unloadFromWindow(aDOMWindow, aXULWindow);
}
//Stop listening so future added windows dont get this attached
Services.wm.removeListener(windowListener);
[].forEach.call(workers, function(worker, i) {
//need to check if worker.DOMWindow is open BUT for now im just doing try catch
try {
worker.destroy();
} catch(ex) {
}
});
},
//END - DO NOT EDIT HERE
loadIntoWindow: function (aDOMWindow, aXULWindow) {
if (!aDOMWindow) {
return;
}
/* var throbber = aDOMWindow.document.getElementById('navigator-throbber');
if (throbber) {
} */
if (aDOMWindow.gBrowser && aDOMWindow.gBrowser.tabContainer) {
//aDOMWindow.gBrowser.tabContainer.addEventListener("TabSelect", tabSelected, false);
var worker = new winWorker(aDOMWindow);
worker.init();
workers.push(worker);
}
},
unloadFromWindow: function (aDOMWindow, aXULWindow) {
if (!aDOMWindow) {
return;
}
// if (aDOMWindow.gBrowser && aDOMWindow.gBrowser.tabContainer) {
// aDOMWindow.gBrowser.tabContainer.removeEventListener("TabSelect", tabSelected, false);
// }
}
};
/*end - windowlistener*/
function startup(aData, aReason) {
self.aData = aData; //must go first, because functions in loadIntoWindow use self.aData
//start pref stuff more
//must forceCallbacks on startup, as the callbacks will read the inital prefs
if ([ADDON_INSTALL,ADDON_UPGRADE,ADDON_DOWNGRADE].indexOf(aReason) > -1) {
myPrefListener.register(true, true); //true so it triggers the callback on registration, which sets value to current value //myPrefListener.setDefaults(); //in jetpack they get initialized somehow on install so no need for this //on startup prefs must be initialized first thing, otherwise there is a chance that an added event listener gets called before settings are initalized
//setDefaults safe to run after install too though because it wont change the current pref value if it is changed from the default.
//good idea to always call setDefaults before register, especially if true for tirgger as if the prefs are not there the value in we are forcing it to use default value which is fine, but you know what i mean its not how i designed it, use of default is a backup plan for when something happens (like maybe pref removed)
} else {
myPrefListener.register(false, true); //true so it triggers the callback on registration, which sets value to current value
}
//end pref stuff more
//register all observers
for (var o in observers) {
observers[o].reg();
}
if (aData.oldVersion == '1.2') {
try {
CustomizableUI.removeWidgetFromArea('throbber-restored'); //have to do this because its the fix for issue #11, its weird how it doesnt affect all people, probably something to do with CTR
} catch (ex) {
}
}
CustomizableUI.createWidget({ //must run createWidget before windowListener.register because the register function needs the button added first
id: 'navigator-throbber',
type: 'custom',
defaultArea: CustomizableUI.AREA_NAVBAR,
onBuild: function(aDocument) {
var toolbaritem = aDocument.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul', 'toolbaritem');
var image = aDocument.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul', 'image');
var props = {
id: 'navigator-throbber',
title: 'Activity Indicator',
align: 'center',
pack: 'center',
mousethrough: 'always',
removable: 'true',
sdkstylewidget: 'true',
overflows: false
};
for (var p in props) {
toolbaritem.setAttribute(p, props[p]);
}
toolbaritem.appendChild(image);
return toolbaritem;
}
});
var newURIParam = {
aURL: self.path.chrome + 'toolbarbutton.css',
aOriginCharset: null,
aBaseURI: null
}
cssUri = Services.io.newURI(newURIParam.aURL, newURIParam.aOriginCharset, newURIParam.aBaseURI);
windowListener.register();
myServices.sss.loadAndRegisterSheet(cssUri, myServices.sss.USER_SHEET); //running this last as i think its syncronus
}
function shutdown(aData, aReason) {
if (aReason == APP_SHUTDOWN) return;
windowListener.unregister();
CustomizableUI.destroyWidget('navigator-throbber');
//CustomizableUI.removeWidgetFromArea('navigator-throbber');
myServices.sss.unregisterSheet(cssUri, myServices.sss.USER_SHEET); //running htis last as i think its syncronus
if (cssUri_CustomImgIdle) {
myServices.sss.unregisterSheet(cssUri_CustomImgIdle, myServices.sss.USER_SHEET); //running htis last as i think its syncronus
}
if (cssUri_CustomImgLoading) {
myServices.sss.unregisterSheet(cssUri_CustomImgLoading, myServices.sss.USER_SHEET); //running htis last as i think its syncronus
}
//unregister all observers
for (var o in observers) {
observers[o].unreg();
}
//start pref stuff more
myPrefListener.unregister();
//end pref stuff more
}
function install(aData, aReason) {}
function uninstall(aData, aReason) {
if (aReason == ADDON_UNINSTALL) { //have to put this here because uninstall fires on upgrade/downgrade too
//this is real uninstall
//if custom images were used lets delete them now
var customImgPrefs = ['customImgIdle', 'customImgLoading'];
[].forEach.call(customImgPrefs, function(n) {
//cant check the pref i guess because it may be unintialized or deleted before i used have a `if(prefs[n].value != '') {`
//var normalized = OS.Path.normalize(prefs[n].value);
//var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, OS.Path.basename(normalized));
var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, 'throbber-restored-' + n);
var promiseDelete = OS.File.remove(profRootDirLoc);
promiseDelete.then(
function() {
//Services.prompt.alert(null, 'deleted', 'success on ' + n);
},
function(aRejReas) {
//Services.prompt.alert(null, 'deleted', 'FAILED on ' + n);
}
);
});
Services.prefs.deleteBranch(prefPrefix);
}
}
//start pref stuff
const prefPrefix = 'extensions.ThrobberRestored.'; //cannot put this in startup and cannot use self.aData.id
var prefs = { //each key here must match the exact name the pref is saved in the about:config database (without the prefix)
customImgIdle: {
default: '',
value: null,
type: 'Char',
onChange: function(oldVal, newVal, refObj) {
var msga = '';
if (oldVal === null) {
msga = 'register/init';
} else if (oldVal == newVal) {
msga = 'probably a programmatic force';
} else if (oldVal != newVal) {
msga = 'really chaning';
}
//Services.prompt.alert(null, 'prefChange - ' + refObj.name, msga);
if (oldVal && oldVal != '') {
myServices.sss.unregisterSheet(cssUri_CustomImgIdle, myServices.sss.USER_SHEET);
//Services.prompt.alert(null, 'sheet unreg', 'old sheet unrgistered');
}
newVal = newVal.trim();
if (newVal == '') {
cssUri_CustomImgIdle = '';
if (oldVal !== null && oldVal != '') {
//lets delete the old one from profile folder
var normalized = OS.Path.normalize(oldVal);
//var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, OS.Path.basename(normalized));
var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, 'throbber-restored-customImgIdle');
var promiseDelete = OS.File.remove(profRootDirLoc);
promiseDelete.then(
function() {
//Services.prompt.alert(null, 'deleted', 'success');
},
function(aRejReas) {
//Services.prompt.alert(null, 'deleted', 'FAILED');
}
);
}
} else {
var normalized = OS.Path.normalize(newVal);
//var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, OS.Path.basename(normalized));
var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, 'throbber-restored-customImgIdle');
var applyIt = function() {
var file = new FileUtils.File(profRootDirLoc);
var fileuri = Services.io.newFileURI(file).spec;
//var newuri = Services.io.newURI(newVal, null, null);
//var newValRep = 'file:///' + newuri.spec.replace(/\\/g, '/');
var css = '#navigator-throbber:not([loading]) { list-style-image: url("' + fileuri + '#' + Math.random() + '") !important; }';
var newURIParam = {
aURL: 'data:text/css,' + encodeURIComponent(css),
aOriginCharset: null,
aBaseURI: null
};
cssUri_CustomImgIdle = Services.io.newURI(newURIParam.aURL, newURIParam.aOriginCharset, newURIParam.aBaseURI);
myServices.sss.loadAndRegisterSheet(cssUri_CustomImgIdle, myServices.sss.USER_SHEET); //running this last as i think its syncronus
}
if (oldVal !== null) {
//lets copy it to profile folder
var promiseCopy = OS.File.copy(normalized, profRootDirLoc);
promiseCopy.then(
function() {
applyIt();
},
function(aRejReas) {
throw new Error('FAILED TO COPY IMAGE TO PROFILE ROOT DIRECTORY');
}
);
} else {
applyIt();
}
}
}
},
customImgLoading: {
default: '',
value: null,
type: 'Char',
onChange: function(oldVal, newVal, refObj) {
var msga = '';
if (oldVal === null) {
msga = 'register/init';
} else if (oldVal == newVal) {
msga = 'probably a programmatic force';
} else if (oldVal != newVal) {
msga = 'really chaning';
}
//Services.prompt.alert(null, 'prefChange - ' + refObj.name, msga);
if (oldVal && oldVal != '') {
myServices.sss.unregisterSheet(cssUri_CustomImgLoading, myServices.sss.USER_SHEET);
//Services.prompt.alert(null, 'sheet unreg', 'old sheet unrgistered');
}
newVal = newVal.trim();
if (newVal == '') {
cssUri_CustomImgLoading = '';
if (oldVal !== null && oldVal != '') {
//lets delete the old one from profile folder
var normalized = OS.Path.normalize(oldVal);
//var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, OS.Path.basename(normalized));
var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, 'throbber-restored-customImgLoading');
var promiseDelete = OS.File.remove(profRootDirLoc);
promiseDelete.then(
function() {
//Services.prompt.alert(null, 'deleted', 'success');
},
function(aRejReas) {
//Services.prompt.alert(null, 'deleted', 'FAILED');
}
);
}
} else {
var normalized = OS.Path.normalize(newVal);
//var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, OS.Path.basename(normalized));
var profRootDirLoc = OS.Path.join(OS.Constants.Path.profileDir, 'throbber-restored-customImgLoading');
var applyIt = function() {
var file = new FileUtils.File(profRootDirLoc);
var fileuri = Services.io.newFileURI(file).spec;
//var newuri = Services.io.newURI(newVal, null, null);
//var newValRep = 'file:///' + newuri.spec.replace(/\\/g, '/');
var css = '#navigator-throbber[loading] { list-style-image: url("' + fileuri + '#' + Math.random() + '") !important; }';
var newURIParam = {
aURL: 'data:text/css,' + encodeURIComponent(css),
aOriginCharset: null,
aBaseURI: null
};
cssUri_CustomImgLoading = Services.io.newURI(newURIParam.aURL, newURIParam.aOriginCharset, newURIParam.aBaseURI);
myServices.sss.loadAndRegisterSheet(cssUri_CustomImgLoading, myServices.sss.USER_SHEET); //running this last as i think its syncronus
}
if (oldVal !== null) {
//lets copy it to profile folder
var promiseCopy = OS.File.copy(normalized, profRootDirLoc);
promiseCopy.then(
function() {
applyIt();
},
function(aRejReas) {
throw new Error('FAILED TO COPY IMAGE TO PROFILE ROOT DIRECTORY');
}
);
} else {
applyIt();
}
}
}
}
}
/**
* if want to change value of preference dont do prefs.holdTime.value = blah, instead must do `prefs.holdTime.setval(500)`
* because this will then properly set the pref on the branch then it will do the onChange properly with oldVal being correct
* NOTE: this fucntion prefSetval is not to be used directly, its only here as a contructor
*/
function prefSetval(name) {
return function(updateTo) {
if ('json' in this) {
//updateTo must be an object
if (Object.prototype.toString.call(updateTo) != '[object Object]') {
return;
}
var stringify = JSON.stringify(updateTo); //uneval(updateTo);
myPrefListener._branch['set' + this.type + 'Pref'](name, stringify);
//prefs[name].value = {};
//for (var p in updateTo) {
// prefs[name].value[p] = updateTo[p];
//}
} else {
//prefs[name].value = updateTo;
myPrefListener._branch['set' + this.type + 'Pref'](name, updateTo);
}
};
}
///pref listener generic stuff NO NEED TO EDIT
/**
* @constructor
*
* @param {string} branch_name
* @param {Function} callback must have the following arguments:
* branch, pref_leaf_name
*/
function PrefListener(branch_name, callback) {
// Keeping a reference to the observed preference branch or it will get garbage collected.
this._branch = Services.prefs.getBranch(branch_name);
this._defaultBranch = Services.prefs.getDefaultBranch(branch_name);
this._branch.QueryInterface(Ci.nsIPrefBranch2);
this._callback = callback;
}
PrefListener.prototype.observe = function(subject, topic, data) {
if (topic == 'nsPref:changed')
this._callback(this._branch, data);
};
/**
* @param {boolean=} trigger if true triggers the registered function
* on registration, that is, when this method is called.
*/
PrefListener.prototype.register = function(setDefaults, trigger) {
//adds the observer to all prefs and gives it the seval function
for (var p in prefs) {
prefs[p].setval = new prefSetval(p);
}
if (setDefaults) {
this.setDefaults();
}
//should add observer after setting defaults otherwise it triggers the callbacks
this._branch.addObserver('', this, false);
if (trigger) {
this.forceCallbacks();
}
};
PrefListener.prototype.forceCallbacks = function() {
let that = this;
this._branch.getChildList('', {}).
forEach(function (pref_leaf_name)
{ that._callback(that._branch, pref_leaf_name); });
};
PrefListener.prototype.setDefaults = function() {
//sets defaults on the prefs in prefs obj
for (var p in prefs) {
this._defaultBranch['set' + prefs[p].type + 'Pref'](p, prefs[p].default);
}
};
PrefListener.prototype.unregister = function() {
if (this._branch)
this._branch.removeObserver('', this);
};
var myPrefListener = new PrefListener(prefPrefix, function (branch, name) {
//extensions.myextension[name] was changed
if (!(name in prefs)) {
//ALSO gets here if say upgraded, and in this version this pref is not used (same with downgraded)
return;
}
var refObj = {name: name}; //passed to onPreChange and onChange
var oldVal = 'json' in prefs[name] ? prefs[name].json : prefs[name].value;
try {
var newVal = myPrefListener._branch['get' + prefs[name].type + 'Pref'](name);
} catch (ex) {
var newVal = null; //note: if ex thrown then pref was removed (likely probably)
}
prefs[name].value = newVal === null ? prefs[name].default : newVal;
if ('json' in prefs[name]) {
refObj.oldValStr = oldVal;
oldVal = JSON.parse(oldVal); //function(){ return eval('(' + oldVal + ')') }();
refObj.newValStr = prefs[name].value;
prefs[name].json = prefs[name].value;
prefs[name].value = JSON.parse(prefs[name].value); //function(){ return eval('(' + prefs[name].value + ')') }();
}
if (prefs[name].onChange) {
prefs[name].onChange(oldVal, prefs[name].value, refObj);
}
});
////end pref listener stuff
//end pref stuff