mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
ff82742c22
Former-commit-id: 17fe9d49b8b7962f34f51a5925936ed15c7e41b8 [formerly 733c5b11d9094bf8e23d0aadbaa553d2cf9a9661] [formerly 3dc3a6cde964667ebc5258e73f248f050578662d [formerly 606beed1333ccc58f290103aead83b0447381ca3 [formerly2134f25d3a
]]] Former-commit-id: dd3115c3e0e720e8723d39939a95b66e65ba0b11 [formerly 7181694ef6378ef47050416285bb8d877505a936] Former-commit-id: 216e497cd2a99c6e90c3fbda0075de88b1f13ddc Former-commit-id:8b0511b0e7
61 lines
1.8 KiB
JavaScript
61 lines
1.8 KiB
JavaScript
$(document).ready(function() {
|
|
var isTyping = false;
|
|
var typingTimer; //timer identifier
|
|
var updateInterval;
|
|
var doneTypingInterval = 100; //time in ms, 5 second for example
|
|
var pollToGetNewestCopyInterval = 10000;
|
|
//on keyup, start the countdown
|
|
$('#emit').keyup(function() {
|
|
clearTimeout(typingTimer);
|
|
clearInterval(updateInterval);
|
|
typingTimer = setTimeout(doneTyping, doneTypingInterval);
|
|
});
|
|
|
|
//on keydown, clear the countdown
|
|
$('#emit').keydown(function() {
|
|
clearTimeout(typingTimer);
|
|
clearInterval(updateInterval);
|
|
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)
|
|
console.log("Done typing")
|
|
updateInterval = setInterval(updateText, pollToGetNewestCopyInterval);
|
|
document.title = "[SAVED] " + title_name;
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
c.onopen = function(){
|
|
updateText();
|
|
updateInterval = setInterval(updateText, pollToGetNewestCopyInterval);
|
|
}
|
|
});
|