-
Notifications
You must be signed in to change notification settings - Fork 33
/
index.js
744 lines (677 loc) · 24.2 KB
/
index.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
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
/* jshint moz: true, devel: true */
/* global CustomizableUI, AddonManager */
/**
* Copyright (c) 2015 [email protected]
*
* The MIT License (MIT)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
**/
"use strict";
const ui = require("sdk/ui");
const {Cc, Ci, Cu} = require("chrome");
Cu.import("resource://gre/modules/AddonManager.jsm"); // Addon Manager required to know addon version
Cu.import("resource:///modules/CustomizableUI.jsm");
const setTimeout = require("sdk/timers").setTimeout;
const setInterval = require("sdk/timers").setInterval;
const clearInterval = require("sdk/timers").clearInterval;
var Preferences = require("sdk/simple-prefs");
var prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefService).
getBranch("extensions.ADDON_ID.");
var Request = require("sdk/request").Request;
var tabs = require("sdk/tabs");
var data = require("sdk/self").data;
const DEBUG = false;
const TAG = "bitcoin-price-ticker";
const DATA_PROVIDERS_URL = data.url("data-providers.json");
const ADDON_UPDATE_DOCUMENT_URL = "http://sebaslogen.github.io/bitcoin-price-ticker/";
const ADDON_ID = "jid0-ziK34XHkBWB9ezxd4l9Q1yC7RP0@jetpack";
const DEFAULT_REFRESH_RATE = 60;
const DEFAULT_FONT_SIZE = 14;
const WIDGET_SUFFIX = "-widget";
const IFRAME_SUFFIX = "-iframe";
const IFRAME_URL = "chrome://bitcoin-price-ticker/content/index.html";
const EXTRA_FRAME_SPACING = 12;
const LOG = console.log.bind(console);
function dlog(message) {
if (DEBUG) {
LOG(TAG + " " + message);
}
}
var tickers = {}; // Store all tickers configuration here
var tickersFrame = null;
var toolbar = null;
var usingWidgets = false;
var draggingWidget = false;
// Methods to interact with Mozilla's preferences
function getPreference(prefName, type) {
if (typeof Preferences.prefs[prefName] === undefined) {
dlog("Addon error: " + prefName + " preference is not defined");
switch (type) {
case "boolean":
return false;
case "integer":
return -1;
case "string":
return "";
default:
return null;
}
}
return Preferences.prefs[prefName];
}
function getBooleanPreference(prefName) {
return getPreference(prefName, "boolean");
}
function getIntegerPreference(prefName) {
return getPreference(prefName, "integer");
}
function getStringPreference(prefName) {
return getPreference(prefName, "string");
}
function getBackgroundColor(id) {
var lowId = id.toLowerCase();
var otherBgCryptos = [ "dogecoin", "worldcoin", "namecoin",
"auroracoin", "blackcoin", "nxt", "bitshares",
"ripple", "maidsafe", "bitcoindark", "monero",
"dash", "burst", "ether" ];
for (var i = 0; i < otherBgCryptos.length; i++) {
if (lowId.indexOf(otherBgCryptos[i]) != -1) { // Alt-coin
if (getBooleanPreference("other-background")) {
return otherBgCryptos[i];
}
}
}
if (lowId.indexOf("litecoin") != -1) {
if (getBooleanPreference("silver-background")) { // Currency is Litecoin
return "silver";
}
} else if (getBooleanPreference("gold-background")) { // Currency is Bitcoin
return "gold";
}
return null;
}
function registerTickerEvents(tickerId) {
Preferences.on("p" + tickerId, function() { // Create event to enable/disable of tickers
toggleTicker(tickerId);
});
// Create events to update ticker when a particular option is changed
Preferences.on("p" + tickerId + "Color", function() {
if (tickers[tickerId] !== null) {
updateTickerConfiguration(tickerId);
}
});
}
// Register general settings' events
Preferences.on("toolbar", toggleBarDisplay);
Preferences.on("Timer", updateTickerRefreshInterval);
Preferences.on("defaultFontSize", updateActiveTickersSharedStyle);
Preferences.on("gold-background", updateActiveTickersSharedStyle);
Preferences.on("silver-background", updateActiveTickersSharedStyle);
Preferences.on("other-background", updateActiveTickersSharedStyle);
Preferences.on("show-currency-label", updateActiveTickersSharedStyle);
Preferences.on("show-currency-name", updateActiveTickersSharedStyle);
Preferences.on("do-not-round", updateActiveTickersSharedStyle);
Preferences.on("infoButton", showAddonUpdateDocument);
// Check updated version
AddonManager.getAddonByID(ADDON_ID, function(addon) {
showAddonUpdate(addon.version);
});
function registerEvents() {
for (var tickerId in tickers) {
if (tickers.hasOwnProperty(tickerId)) {
registerTickerEvents(tickerId);
}
}
}
function getWidgetWindow(tickerId) {
var doc = tickers[tickerId].doc;
if ((doc !== undefined) && (doc !== null) &&
(doc.getElementById(tickerId + IFRAME_SUFFIX))) { // Widgets
var win = doc.getElementById(tickerId + IFRAME_SUFFIX).contentWindow;
if (!(win)) {
dlog("getWidgetWindow ticker for " + tickerId + " has no content Window: " + win);
}
return win;
} else {
return null;
}
}
function getTickerConfigurationData(tickerId) {
var fontSize = getIntegerPreference("defaultFontSize");
if (fontSize <= 0) {
fontSize = DEFAULT_FONT_SIZE;
}
var ticker = tickers[tickerId];
if (ticker) {
ticker.enabled = getBooleanPreference("p" + tickerId);
ticker.currencyPosition = getStringPreference("show-currency-label");
ticker.color = getStringPreference("p" + tickerId + "Color");
ticker.fontSize = fontSize;
ticker.background = getBackgroundColor(tickerId);
ticker.showCurrencyName = getBooleanPreference("show-currency-name");
ticker.noRounding = getBooleanPreference("do-not-round");
}
}
/**
* Load tickers enabled in preferences
**/
function loadTickers() {
for (var tickerId in tickers) {
if ( getBooleanPreference("p" + tickerId) ) { // Create Ticker
dlog("Loading ticker for " + tickerId);
updateTickerConfiguration(tickerId);
if (usingWidgets) {
createNewTickersWidget(tickerId);
}
}
}
}
/**
* Live enable/disable ticker from options checkbox
**/
function toggleTicker(tickerId) {
if ( getBooleanPreference("p" + tickerId) ) { // Enable Ticker
enableTicker(tickerId);
} else if (tickers[tickerId].enabled) { // Disable Ticker if it exists
disableTicker(tickerId);
}
}
function enableTicker(tickerId) {
updateTickerConfiguration(tickerId);
if (usingWidgets) {
createNewTickersWidget(tickerId);
} else {
updateTickerRefreshIntervalForTicker(tickerId);
}
}
function disableTicker(tickerId) {
tickers[tickerId].enabled = false;
stopAutoPriceUpdate(tickerId);
updateTickerConfiguration(tickerId);
if (usingWidgets) {
dlog("Destroying ticker:" + tickerId);
destroyTickersWidget(tickerId);
}
}
// Methods to comunicate between Addon and Visualization interface
/**
* This method send all the configuration about
* the data providers when a tickers are created
**/
function sendUpdatedProvidersData() {
dlog("Sending Providers JSON data to tickers");
var filteredTickersData = JSON.stringify(getFilteredTickersData());
if (usingWidgets) { // For Widgets
for (var tickerId in tickers) {
if (tickers.hasOwnProperty(tickerId)) {
var doc = tickers[tickerId].doc;
if ((doc !== undefined) && (doc !== null)) {
var win = getWidgetWindow(tickerId);
if ((tickers[tickerId].enabled) && (win)) {
win.postMessage({
"type": "updateProvidersData",
"data": filteredTickersData
}, "*");
}
}
}
}
} else if (tickersFrame !== null) { // For Toolbar
tickersFrame.postMessage({
"type": "updateProvidersData",
"data": filteredTickersData
}, tickersFrame.url);
} else if (DEBUG) {
dlog("Error: There is no ticker ready to receive Providers JSON data");
}
}
/**
* This method loads and updates the configuration of a ticker
* then sends this configuration to client (i)Frame that updates
* the configuration of the ticker or creates it if it didn't exist
*
* tickerId: Unique ID of the ticker to update
**/
function updateTickerConfiguration(tickerId) {
getTickerConfigurationData(tickerId);
dlog("Updating configuration for ticker:" + tickerId +
"-" + JSON.stringify(tickers[tickerId]));
sendUpdatedTickerConfiguration(tickerId);
}
function getFilteredTickerData(tickerId) {
var data = JSON.parse(JSON.stringify(tickers[tickerId]));
data.doc = null;
return data;
}
function getFilteredTickersData() {
var data = {};
for (var tickerId in tickers) { // Update all tickers that require it
if (tickers.hasOwnProperty(tickerId)) {
data[tickerId] = getFilteredTickerData(tickerId);
}
}
return data;
}
function sendUpdatedTickerConfiguration(tickerId) {
dlog("Sending configuration updated JSON data to " + tickerId);
var doc = tickers[tickerId].doc;
if (usingWidgets &&
(doc !== undefined) && (doc !== null)) { // For Widgets
var win = getWidgetWindow(tickerId);
if ((tickers[tickerId].enabled) && (win)) {
win.postMessage({
"type": "updateTickerConfiguration",
"id": tickerId,
"data": getFilteredTickerData(tickerId)
}, "*");
adjustWidgetSize(tickerId);
}
} else if (tickersFrame !== null) { // For Toolbar
tickersFrame.postMessage({
"type": "updateTickerConfiguration",
"id": tickerId,
"data": getFilteredTickerData(tickerId)
}, tickersFrame.url);
} else if (DEBUG) {
dlog("Frame & Widget docs are both empty for Widget " + tickerId);
}
}
function fetchURLData(tickerId, url, jsonPath) {
if (tickerId === undefined || url === undefined || jsonPath === undefined) {
return;
}
if (usingWidgets) {
// This update is required becuase the ticker's iframe
// is sometimes destroyed by Firefox's UI updates
sendUpdatedProvidersData();
updateTickerConfiguration(tickerId);
}
dlog("Requesting JSON price data from " + url);
Request({
url: url,
onComplete: function (response) {
if ((response !== null) && (response.json !== null)) {
dlog("Price data received. Searching in document for path:" + jsonPath);
var price = response.json;
for (var i = 0; i < jsonPath.length; i++) { // Parse JSON path
if (typeof price[jsonPath[i]] === undefined) {
dlog("Error loading ticker " + tickerId +
". URL is not correctly responding:" + url);
return;
}
price = price[jsonPath[i]];
}
dlog("Price received and parsed for " + tickerId + ": " + price);
var doc = tickers[tickerId].doc;
if (usingWidgets &&
(doc !== undefined) && (doc !== null)) { // For Widgets
var win = getWidgetWindow(tickerId);
if (win) {
win.postMessage({
"type": "updateTickerModelPrice",
"id": tickerId,
"data": {
"price": price
}
}, "*");
adjustWidgetSize(tickerId);
} else {
dlog("Win for " + tickerId + " not found, re-creating ticker in 30.000 ms");
dlog("Disabling ticker:" + tickerId);
disableTicker(tickerId);
setTimeout(function () { // Retry with exponential backoff
dlog("Enabling ticker:" + tickerId);
enableTicker(tickerId);
}, 30000);
}
} else if (tickersFrame !== null) { // For Toolbar
tickersFrame.postMessage({
"type": "updateTickerModelPrice",
"id": tickerId,
"data": {
"price": price
}
}, tickersFrame.url);
} else {
dlog("Frame and Widget document are both empty for Widget " + tickerId);
}
}
}
}).get();
}
// Methods to create tickers and manipulate them
/**
* Create a Widget, attach listeners and
* trigger update on Widget Added to window
**/
function createNewTickersWidget(tickerId) {
dlog("Creating widget for ticker " + tickerId);
var ticker = tickers[tickerId];
var tickerTitle = ticker.exchangeName + " " +
ticker.currency + "/" + ticker.baseCurrency;
CustomizableUI.createWidget({
id: tickerId + WIDGET_SUFFIX,
type: "custom",
label: tickerId,
removable: true,
defaultArea: CustomizableUI.AREA_NAVBAR,
/**
* Build widget iFrame content and attach listeners
**/
onBuild: function(aDocument) {
ticker.doc = aDocument;
var node = aDocument.createElement("toolbaritem");
var props = {
id: this.id,
title: "Bitcoin Price Ticker " + tickerId,
align: "center",
label: tickerTitle,
height: 10,
tooltiptext: tickerTitle,
class: "chromeclass-toolbar-additional panel-wide-item"
};
for (var p1 in props) {
node.setAttribute(p1, props[p1]);
}
var iframe = aDocument.createElement("iframe");
props = {
id: tickerId + IFRAME_SUFFIX,
type: "content",
src: IFRAME_URL,
transparent: true
};
for (var p2 in props) {
iframe.setAttribute(p2, props[p2]);
}
node.appendChild(iframe);
var listener = {
onWidgetAdded: function(aWidgetId, aArea, aPosition) {
if (aWidgetId == this.id) {
dlog("onWidgetAdded for " + tickerId);
activateWidgetWithDelay(tickerId, 500);
}
}.bind(this),
onCustomizeStart: function(aWindow) {
dlog("onCustomizeStart for " + tickerId);
activateWidgetWithDelay(tickerId, 2000);
}.bind(this),
onWidgetMoved: function(aWidgetId, aArea, aOldPosition, aNewPosition) {
if (aWidgetId == this.id) {
dlog("onWidgetMoved for " + tickerId);
setTimeout(function () { // Wait for Customize tab to load
sendUpdatedProvidersData();
updateTickerRefreshInterval(true);
}, 500);
}
}.bind(this),
onWidgetDrag: function(aWidgetId, aArea) {
if (aWidgetId == this.id) {
dlog("onWidgetDrag for " + tickerId);
draggingWidget = true; // This triggers Ticker updates after DOM change
}
}.bind(this),
onWidgetAfterDOMChange: function(aNode, aNextNode, aContainer, aWasRemoval) {
if (aNode == node) {
dlog("onWidgetAfterDOMChange for " + tickerId + "-aContainer:" + aContainer + "-aWasRemoval:" + aWasRemoval);
if (draggingWidget) {
draggingWidget = false;
setTimeout(function () { // Wait for Customize tab to load
updateTickerRefreshInterval(true);
}, 1000);
}
}
}.bind(this),
onCustomizeEnd: function(aWindow) {
dlog("onCustomizeEnd for " + tickerId);
activateWidgetWithDelay(tickerId, 500);
}.bind(this),
onWidgetDestroyed: function(aWidgetId) {
if (aWidgetId == this.id) {
dlog("onWidgetDestroyed for " + tickerId);
CustomizableUI.removeListener(listener);
}
}.bind(this),
onWidgetRemoved: function(aWidgetId, aPrevArea) {
if (aWidgetId == this.id) {
dlog("onWidgetRemoved for " + tickerId);
activateWidgetWithDelay(tickerId, 500);
}
}.bind(this)
};
CustomizableUI.addListener(listener);
return node;
}
});
}
function destroyTickersWidget(tickerId) {
dlog("Destroying widget for " + tickerId);
CustomizableUI.destroyWidget(tickerId + WIDGET_SUFFIX);
tickers[tickerId].doc = null;
}
function activateWidgetWithDelay(tickerId, delay) {
setTimeout(function() { // Allow the ticker's iFrame to be created
sendUpdatedProvidersData();
updateTickerRefreshIntervalForTicker(tickerId, true);
}, delay);
}
function startAutoPriceUpdate(tickerId) {
var ticker = tickers[tickerId];
if (ticker.url && ticker.jsonPath) {
var fetchURLDataWrapper = function() {
fetchURLData(tickerId, ticker.url, ticker.jsonPath);
};
fetchURLDataWrapper();
ticker.timer = setInterval(fetchURLDataWrapper, (ticker.updateInterval * 1000));
}
}
function stopAutoPriceUpdate(tickerId) {
if (tickers[tickerId].timer) { // Remove previous auto-update call if any
clearInterval(tickers[tickerId].timer); // Stop automatic refresh
tickers[tickerId].timer = null;
}
}
function updateTickerRefreshIntervalForTicker(tickerId, forceRefresh) {
var refreshRate = getIntegerPreference("Timer");
if (refreshRate < 1) {
refreshRate = DEFAULT_REFRESH_RATE;
}
var ticker = tickers[tickerId];
if (ticker && ticker.enabled) {
dlog("updateTickerRefreshIntervalForTicker:" + tickerId);
if (forceRefresh || (ticker.updateInterval != refreshRate)) { // Update the real interval
ticker.updateInterval = refreshRate;
stopAutoPriceUpdate(tickerId);
startAutoPriceUpdate(tickerId);
}
}
}
/*
* Create new refresh interval for each ticker when option is changed
**/
function updateTickerRefreshInterval(forceRefresh) {
for (var tickerId in tickers) { // Update all tickers that require it
if (tickers.hasOwnProperty(tickerId)) {
updateTickerRefreshIntervalForTicker(tickerId, forceRefresh);
}
}
}
function updateActiveTickersSharedStyle() {
for (var tickerId in tickers) {
if (tickers.hasOwnProperty(tickerId) &&
tickers[tickerId] && tickers[tickerId].enabled) {
updateTickerConfiguration(tickerId); // Update configuration
}
}
}
function adjustWidgetSize(tickerId) {
setTimeout(function () {
// Shrink ticker widget until adjusted or scroll appears
// When scroll appears start enlarging ticker widget again until scroll disappears
shrinkWidgetSizeRecursively(tickerId);
}, 300); // Update size some time after HTML content is updated
}
function shrinkWidgetSizeRecursively(tickerId) {
setTimeout(function () {
dlog("<<Shrinking Widget size for " + tickerId);
var win = getWidgetWindow(tickerId);
if (win && win.document.body) {
var doc = tickers[tickerId].doc;
var oldIframeWidth = doc.getElementById(tickerId + IFRAME_SUFFIX).width;
var oldWidgetWidth = doc.getElementById(tickerId + WIDGET_SUFFIX).width;
var isScrollPresent = scrollPresent(win);
dlog("Scroll for " + tickerId + " is " + isScrollPresent);
if (isScrollPresent) {
enlargeWidgetSizeRecursively(tickerId);
} else {
var scrollWidth = parseInt(win.document.body.scrollWidth) || 0;
var newWidth = (scrollWidth + EXTRA_FRAME_SPACING) + "px";
doc.getElementById(tickerId + IFRAME_SUFFIX).width = newWidth;
doc.getElementById(tickerId + WIDGET_SUFFIX).width = newWidth;
dlog("Resizing " + tickerId + " from oldIframeWidth:" + oldIframeWidth + "/oldWidgetWidth:" + oldWidgetWidth + " to " + newWidth);
if ((oldIframeWidth != newWidth) || ( oldWidgetWidth != newWidth)) {
shrinkWidgetSizeRecursively(tickerId); // Keep shinking until new width doesn't change or scroll appears
}
}
}
}, 20); // Update size some time after HTML content is updated
}
function enlargeWidgetSizeRecursively(tickerId) {
setTimeout(function () {
dlog(">>Enlarging Widget size for " + tickerId);
var win = getWidgetWindow(tickerId);
if (win && win.document.body) {
var doc = tickers[tickerId].doc;
var oldIframeWidth = doc.getElementById(tickerId + IFRAME_SUFFIX).width;
var oldWidgetWidth = doc.getElementById(tickerId + WIDGET_SUFFIX).width;
var isScrollPresent = scrollPresent(win);
dlog("Scroll for " + tickerId + " is " + isScrollPresent);
if (isScrollPresent) {
var oldWidth = parseInt(oldIframeWidth) || 0;
var newWidth = (oldWidth + 1) + "px";
doc.getElementById(tickerId + IFRAME_SUFFIX).width = newWidth;
doc.getElementById(tickerId + WIDGET_SUFFIX).width = newWidth;
dlog("Resizing " + tickerId + " from oldIframeWidth:" + oldIframeWidth + "/oldWidgetWidth:" + oldWidgetWidth + " to " + newWidth);
if ((oldIframeWidth != newWidth) || ( oldWidgetWidth != newWidth)) {
enlargeWidgetSizeRecursively(tickerId);
}
}
}
}, 10); // Update size some time after HTML content is updated
}
function scrollPresent(window) {
return window.document.body.scrollHeight !== window.document.body.clientHeight || window.document.body.scrollWidth !== window.document.body.clientWidth;
}
function showAddonUpdateDocument() {
tabs.open(ADDON_UPDATE_DOCUMENT_URL);
}
function showAddonUpdate(version) {
try {
if (( ! getBooleanPreference("show-updates")) || // Requested to not show updates
(prefs.getCharPref("extensions.ADDON_ID.version") == version)) { // Not updated
return;
}
} catch (e) {} // There is no addon version set yet
if (! DEBUG) {
setTimeout(showAddonUpdateDocument, 5000); // Showing update webpage
}
prefs.setCharPref("extensions.ADDON_ID.version", version); // Update version number in preferences
}
// Methods to initialize the Addon
function loadProvidersData() {
if (Object.keys(tickers).length !== 0) { // Data already loaded
initAfterLoad();
} else {
var url = DATA_PROVIDERS_URL;
dlog("Requesting Providers JSON data from " + DATA_PROVIDERS_URL);
Request({
url: url,
onComplete: function (response) {
if ((response !== null) && (response.json !== null)) {
dlog("Data received from data providers JSON configuration");
tickers = response.json;
if (Object.keys(tickers).length === 0) {
dlog("Error: No ticker configuration found in JSON configuration received from server:"+url);
return;
}
initAfterLoad();
}
}
}).get();
}
}
function initAfterLoad() {
if (! usingWidgets) { // Widget tickers will do this on load
sendUpdatedProvidersData();
}
loadTickers();
registerEvents();
if (! usingWidgets) { // Widget tickers will do this on event onWidgetAdded
updateTickerRefreshInterval(true);
}
}
function createNewTickersToolbar() {
tickersFrame = ui.Frame({
url: "./index.html"
}).on("ready", loadProvidersData);
// When the presenter is ready load config data and tickers
toolbar = ui.Toolbar({
title: "Bitcoin Price Ticker",
items: [tickersFrame]
});
}
function destroyTickersToolbar() {
if (toolbar !== null) {
toolbar.destroy();
toolbar = null;
}
if (tickersFrame !== null) {
tickersFrame.destroy();
tickersFrame = null;
}
}
// Toggle between a separate toolbar or the naviagtion bar
function toggleBarDisplay() {
if (getBooleanPreference("toolbar")) {
usingWidgets = false;
for (var tickerId in tickers) {
if (tickers.hasOwnProperty(tickerId)) {
destroyTickersWidget(tickerId);
}
}
if (toolbar === null) {
createNewTickersToolbar();
}
} else {
usingWidgets = true;
if (toolbar) {
destroyTickersToolbar();
}
loadProvidersData(); // This will take care of widgets creation
}
}
function startApplication() {
toggleBarDisplay();
}
setTimeout(function () { // Wait for Firefox to load
startApplication();
setTimeout(function () { // Some Firefox sessions are too slow on boot that need an extra refresh after 1/2 min.
updateTickerRefreshInterval(true);
}, 30000);
}, 3000);