mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
0be3c91823
Former-commit-id: 46c13d0c36c98e1c4cd7a0548c561dc70c0952ea [formerly 4a56a0bbffd2bb5b437c2c4e7497da0cd42dc306] [formerly c6e51179179dad88c1014b07d13e83f759ad6b6c [formerly 21cd7d092c
]]
Former-commit-id: e17744bea8af56671b35709b358bea7d4c9aaff5 [formerly 40b9fe4727f897ee471af9ffce8cd7780f22a612]
Former-commit-id: 0d2322553b3a177f74d4110044e1f801391daaeb
100 lines
3.2 KiB
JavaScript
100 lines
3.2 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 = 30000;
|
|
//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 = '✗ ' + 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, 30000);
|
|
$('#saveInfo').removeClass().addClass("glyphicon glyphicon-floppy-open");
|
|
console.log("Done typing")
|
|
updateInterval = setInterval(updateText, pollToGetNewestCopyInterval);
|
|
document.title = "✓ " + 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)
|
|
clearTimeout(uhohTimer);
|
|
}
|
|
|
|
// 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 = " " + 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);
|
|
}
|
|
|
|
|
|
$('.postselfdestruct').click(function(event) {
|
|
event.preventDefault();
|
|
$('#emit_data').val("self-destruct\n\n"+currentText() + "\n\n");
|
|
doneTyping();
|
|
});
|
|
|
|
});
|