summaryrefslogtreecommitdiff
path: root/src/static
diff options
context:
space:
mode:
Diffstat (limited to 'src/static')
-rw-r--r--src/static/css/pad.css17
-rw-r--r--src/static/js/pad_automatic_reconnect.js182
-rw-r--r--src/static/js/pad_modals.js9
3 files changed, 206 insertions, 2 deletions
diff --git a/src/static/css/pad.css b/src/static/css/pad.css
index 5764c5e4..0b881d78 100644
--- a/src/static/css/pad.css
+++ b/src/static/css/pad.css
@@ -517,6 +517,23 @@ table#otheruserstable {
display: block;
}
+/* styles for the automatic reconnection timer: */
+#connectivity .visible.with_reconnect_timer button,
+#connectivity .visible.with_reconnect_timer .reconnecttimer * {
+ display: inline-block;
+}
+
+#connectivity .with_reconnect_timer .hidden,
+#connectivity .with_reconnect_timer #defaulttext.hidden,
+#connectivity .with_reconnect_timer button.hidden {
+ display: none;
+}
+
+#connectivity .with_reconnect_timer #cancelreconnect {
+ margin-left: 10px;
+}
+/* end of styles for the automatic reconnection timer */
+
#reconnect_form button {
font-size: 12pt;
padding: 5px;
diff --git a/src/static/js/pad_automatic_reconnect.js b/src/static/js/pad_automatic_reconnect.js
new file mode 100644
index 00000000..b5b99bcd
--- /dev/null
+++ b/src/static/js/pad_automatic_reconnect.js
@@ -0,0 +1,182 @@
+
+exports.showCountDownTimerToReconnectOnModal = function($modal, pad) {
+ if (clientVars.automaticReconnectionTimeout && $modal.is('.with_reconnect_timer')) {
+ createCountDownElementsIfNecessary($modal);
+
+ var timer = createTimerForModal($modal, pad);
+
+ $modal.find('#cancelreconnect').one('click', function() {
+ timer.cancel();
+ disableAutomaticReconnection($modal);
+ });
+
+ enableAutomaticReconnection($modal);
+ }
+}
+
+var createCountDownElementsIfNecessary = function($modal) {
+ var elementsDoNotExist = $modal.find('#cancelreconnect').length === 0;
+ if (elementsDoNotExist) {
+ var $defaultMessage = $modal.find('#defaulttext');
+ var $reconnectButton = $modal.find('#forcereconnect');
+
+ // create extra DOM elements, if they don't exist
+ var $reconnectTimerMessage = $('<p class="reconnecttimer"> \
+ <span data-l10n-id="pad.modals.reconnecttimer">Trying to reconnect in </span> \
+ <span class="timetoexpire"></span> \
+ </p>');
+ var $cancelReconnect = $('<button id="cancelreconnect" data-l10n-id="pad.modals.cancel">Cancel</button>');
+
+ localize($reconnectTimerMessage);
+ localize($cancelReconnect);
+
+ $reconnectTimerMessage.insertAfter($defaultMessage);
+ $cancelReconnect.insertAfter($reconnectButton);
+ }
+}
+
+var localize = function($element) {
+ html10n.translateElement(html10n.translations, $element.get(0));
+};
+
+var createTimerForModal = function($modal, pad) {
+ var timeUntilReconnection = clientVars.automaticReconnectionTimeout * reconnectionTries.nextTry();
+ var timer = new CountDownTimer(timeUntilReconnection);
+
+ timer.onTick(function(minutes, seconds) {
+ updateCountDownTimerMessage($modal, minutes, seconds);
+ }).onExpire(function() {
+ var wasANetworkError = $modal.is('.disconnected');
+ if (wasANetworkError) {
+ // cannot simply reconnect, client is having issues to establish connection to server
+ waitUntilClientCanConnectToServerAndThen(function() { forceReconnection($modal); }, pad);
+ } else {
+ forceReconnection($modal);
+ }
+ }).start();
+
+ return timer;
+}
+
+var disableAutomaticReconnection = function($modal) {
+ toggleAutomaticReconnectionOption($modal, true);
+}
+var enableAutomaticReconnection = function($modal) {
+ toggleAutomaticReconnectionOption($modal, false);
+}
+var toggleAutomaticReconnectionOption = function($modal, disableAutomaticReconnect) {
+ $modal.find('#cancelreconnect, .reconnecttimer').toggleClass('hidden', disableAutomaticReconnect);
+ $modal.find('#defaulttext').toggleClass('hidden', !disableAutomaticReconnect);
+}
+
+var waitUntilClientCanConnectToServerAndThen = function(callback, pad) {
+ whenConnectionIsRestablishedWithServer(callback, pad);
+ pad.socket.connect();
+}
+
+var whenConnectionIsRestablishedWithServer = function(callback, pad) {
+ // only add listener for the first try, don't need to add another listener
+ // on every unsuccessful try
+ if (reconnectionTries.counter === 1) {
+ pad.socket.once('connect', callback);
+ }
+}
+
+var forceReconnection = function($modal) {
+ $modal.find('#forcereconnect').click();
+}
+
+var updateCountDownTimerMessage = function($modal, minutes, seconds) {
+ minutes = minutes < 10 ? '0' + minutes : minutes;
+ seconds = seconds < 10 ? '0' + seconds : seconds;
+
+ $modal.find('.timetoexpire').text(minutes + ':' + seconds);
+}
+
+// store number of tries to reconnect to server, in order to increase time to wait
+// until next try
+var reconnectionTries = {
+ counter: 0,
+
+ nextTry: function() {
+ // double the time to try to reconnect on every time reconnection fails
+ var nextCounterFactor = Math.pow(2, this.counter);
+ this.counter++;
+
+ return nextCounterFactor;
+ }
+}
+
+// Timer based on http://stackoverflow.com/a/20618517.
+// duration: how many **seconds** until the timer ends
+// granularity (optional): how many **milliseconds** between each 'tick' of timer. Default: 1000ms (1s)
+var CountDownTimer = function(duration, granularity) {
+ this.duration = duration;
+ this.granularity = granularity || 1000;
+ this.running = false;
+
+ this.onTickCallbacks = [];
+ this.onExpireCallbacks = [];
+}
+
+CountDownTimer.prototype.start = function() {
+ if (this.running) {
+ return;
+ }
+ this.running = true;
+ var start = Date.now(),
+ that = this,
+ diff;
+
+ (function timer() {
+ diff = that.duration - Math.floor((Date.now() - start) / 1000);
+
+ if (diff > 0) {
+ that.timeoutId = setTimeout(timer, that.granularity);
+ that.tick(diff);
+ } else {
+ that.running = false;
+ that.tick(0);
+ that.expire();
+ }
+ }());
+};
+
+CountDownTimer.prototype.tick = function(diff) {
+ var obj = CountDownTimer.parse(diff);
+ this.onTickCallbacks.forEach(function(callback) {
+ callback.call(this, obj.minutes, obj.seconds);
+ }, this);
+}
+CountDownTimer.prototype.expire = function() {
+ this.onExpireCallbacks.forEach(function(callback) {
+ callback.call(this);
+ }, this);
+}
+
+CountDownTimer.prototype.onTick = function(callback) {
+ if (typeof callback === 'function') {
+ this.onTickCallbacks.push(callback);
+ }
+ return this;
+};
+
+CountDownTimer.prototype.onExpire = function(callback) {
+ if (typeof callback === 'function') {
+ this.onExpireCallbacks.push(callback);
+ }
+ return this;
+};
+
+CountDownTimer.prototype.cancel = function() {
+ this.running = false;
+ clearTimeout(this.timeoutId);
+ return this;
+};
+
+CountDownTimer.parse = function(seconds) {
+ return {
+ 'minutes': (seconds / 60) | 0,
+ 'seconds': (seconds % 60) | 0
+ };
+};
diff --git a/src/static/js/pad_modals.js b/src/static/js/pad_modals.js
index 67b03662..2fc621dc 100644
--- a/src/static/js/pad_modals.js
+++ b/src/static/js/pad_modals.js
@@ -1,5 +1,5 @@
/**
- * This code is mostly from the old Etherpad. Please help us to comment this code.
+ * This code is mostly from the old Etherpad. Please help us to comment this code.
* This helps other people to understand this code better and helps them to improve it.
* TL;DR COMMENTS ON THIS FILE ARE HIGHLY APPRECIATED
*/
@@ -19,8 +19,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-
+
var padeditbar = require('./pad_editbar').padeditbar;
+var automaticReconnect = require('./pad_automatic_reconnect');
var padmodals = (function()
{
@@ -35,6 +36,10 @@ var padmodals = (function()
padeditbar.toggleDropDown("none", function() {
$("#connectivity .visible").removeClass('visible');
$("#connectivity ."+messageId).addClass('visible');
+
+ var $modal = $('#connectivity .' + messageId);
+ automaticReconnect.showCountDownTimerToReconnectOnModal($modal, pad);
+
padeditbar.toggleDropDown("connectivity");
});
},