let connection = new signalR.HubConnectionBuilder().withUrl("/noteHub").build(); connection.start().then(function () { console.log('Started websocket listener'); }).catch(function (err) { return console.error(err.toString()); }); let showToast = function (selector) { const cssClass = 'show'; // show 'saved' indicator $(selector).addClass(cssClass).delay(800).queue(function (next) { $(this).removeClass(cssClass); next(); }); } let saveContent = function ($textarea) { $textarea = $textarea || $('textarea'); var content = $textarea.val(); connection.invoke('SaveNote', content).then(function () { showToast('#saved-indicator'); }); }; $(function () { let $textarea = $('textarea'); // update content upon sync save connection.on('updateNote', function (content) { $textarea.val(content); showToast('#update-indicator'); }); // set dark mode if (window.location.hash == '#dark') { $textarea.addClass('dark'); } var timer = null; let ignoredKeyCodes = [17, 18, 20, 27, 37, 38, 39, 40, 91]; // save after a second delay after typing $textarea.keyup(function (e) { clearTimeout(timer); // only set timer if key isn't ignored if (!ignoredKeyCodes.includes(e.keyCode)) { timer = setTimeout(function () { saveContent(); }, 1000); } }); // support tab key in textarea $textarea.keydown(function (e) { if (e.keyCode === 9) { // tab was pressed // get caret position/selection var start = this.selectionStart; end = this.selectionEnd; var $this = $(this); // set textarea value to: text before caret + tab + text after caret $this.val($this.val().substring(0, start) + '\t' + $this.val().substring(end)); // put caret at right position again this.selectionStart = this.selectionEnd = start + 1; // prevent the focus lose return false; } }); });