1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
cowyo/static/js/websockets.js
Zack 098b814897 Reloads page after 4 seconds of no websocket connection Issue #21
Former-commit-id: d6596865b03100e14ede53fea43cb21065f84ceb [formerly 34c11b504302a7179385580aa3b8dea2b713f2e6] [formerly c99631cc0ec8a8b124157225656a9d670b7b87e7 [formerly 08654633199825bdfc6e5dd39198e6af4b74c9f6 [formerly 848a4f27bd]]]
Former-commit-id: ffd18222cefd54da1f4565913f1f4a06567f1e30 [formerly 2245118495b9f15f6dae8068d1bfdad6f1e7f320]
Former-commit-id: 2c2762cff7df2530c979b61db77683ba951f793c
Former-commit-id: aaebcc5add
2016-02-11 09:05:49 -05:00

77 lines
2.5 KiB
JavaScript

$(document).ready(function() {
var isTyping = false;
var typingTimer; //timer identifier
var updateInterval;
var uhohTimer;
var doneTypingInterval = 500; //time in ms, 5 second for example
var pollToGetNewestCopyInterval = 10000;
//on keyup, start the countdown
$('#emit').keyup(function() {
clearTimeout(typingTimer);
clearInterval(updateInterval);
$('#saveInfo').removeClass().addClass("glyphicon glyphicon-floppy-remove");
typingTimer = setTimeout(doneTyping, doneTypingInterval);
});
//on keydown, clear the countdown
$('#emit').keydown(function() {
clearTimeout(typingTimer);
clearInterval(updateInterval);
$('#saveInfo').removeClass().addClass("glyphicon glyphicon-floppy-remove");
document.title = "[UNSAVED] " + title_name;
});
//user is "finished typing," do something
function doneTyping() {
payload = JSON.stringify({ TextData: $('#emit_data').val(), Title: title_name, UpdateServer: true, UpdateClient: false })
send(payload)
uhohTimer = setTimeout(uhoh, 3000);
$('#saveInfo').removeClass().addClass("glyphicon glyphicon-floppy-open");
console.log("Done typing")
updateInterval = setInterval(updateText, pollToGetNewestCopyInterval);
document.title = "[SAVED] " + title_name;
}
function uhoh() {
$('#saveInfo').removeClass().addClass("glyphicon glyphicon-remove");
setInterval(location.reload(), 1000);
}
function updateText() {
console.log("Getting server's latest copy")
payload = JSON.stringify({ TextData: $('#emit_data').val(), Title: title_name, UpdateServer: false, UpdateClient: true })
send(payload)
}
// websockets
url = 'ws://'+external_ip+'/ws';
c = new WebSocket(url);
send = function(data){
console.log("Sending: " + data)
c.send(data)
}
c.onmessage = function(msg){
console.log(msg)
data = JSON.parse(msg.data);
if (data.UpdateClient == true) {
console.log("Updating...")
$('#emit_data').val(data.TextData)
document.title = "[LOADED] " + title_name;
}
console.log((data.TextData == "saved"))
console.log(data.TextData)
if (data.TextData == "saved") {
$('#saveInfo').removeClass().addClass("glyphicon glyphicon-floppy-saved");
clearTimeout(uhohTimer);
}
console.log(data)
}
c.onopen = function(){
// updateText();
updateInterval = setInterval(updateText, pollToGetNewestCopyInterval);
}
});