mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
b613c3e83a
Former-commit-id: 16d3982212d80dfc631e72d114f825fc860985df [formerly 40f4be30fed6c796301cd5d728b8d61a48f5b6e4] [formerly e18904f46decc08c0fb9db23ae877f9915d9eee6 [formerly 6d38da9c02
]]
Former-commit-id: aa4daffeac0023cf80226d03a0381126d0f00e33 [formerly b73298c2652b0bc5cae6d5d6bc714cf7a1a020db]
Former-commit-id: b18129d6af5212a9c4af1c61b9d4572563e824d5
91 lines
3.0 KiB
JavaScript
91 lines
3.0 KiB
JavaScript
var selfDestruct = false;
|
|
|
|
$(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: currentText(), 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;
|
|
if (currentText().indexOf("self-destruct\n") > -1 || currentText().indexOf("\nself-destruct") > -1) {
|
|
if (selfDestruct == false) {
|
|
selfDestruct = true;
|
|
swal({ title: "Info", text: "This page is primed to self-destruct.", timer: 1000, showConfirmButton: true });
|
|
}
|
|
} else {
|
|
if (selfDestruct == true) {
|
|
selfDestruct = false;
|
|
swal({ title: "Info", text: "This page is no longer primed to self-destruct.", timer: 1000, showConfirmButton: true });
|
|
}
|
|
}
|
|
}
|
|
|
|
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: currentText(), Title: title_name, UpdateServer: false, UpdateClient: true })
|
|
send(payload)
|
|
}
|
|
|
|
// websockets
|
|
url = socketType + '://'+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);
|
|
}
|
|
});
|