Notes/wwwroot/js/site.js

70 lines
1.8 KiB
JavaScript
Raw Normal View History

2022-11-29 15:14:15 +00:00
let saveContent = function ($textarea) {
$textarea = $textarea || $('textarea');
var content = $textarea.val();
$.ajax('/api/save', {
data: content,
contentType: 'text/plain',
type: 'POST'
}).done(function (data) {
2022-12-01 02:33:41 +00:00
// show 'saved' indicator
$('#saved-indicator').addClass('show').delay(800).queue(function (next) {
$(this).removeClass('show');
next();
});
2022-11-29 15:14:15 +00:00
}).fail(function () {
alert('Could not connect to server. Check your internet connection and try again.');
});
};
$(function () {
2022-12-03 02:38:05 +00:00
// set dark mode
if (window.location.hash == '#dark') {
$('textarea').addClass('dark');
}
2022-12-01 02:33:41 +00:00
var timer = null;
2023-01-09 20:54:20 +00:00
2022-12-02 20:18:04 +00:00
let ignoredKeyCodes = [17, 18, 20, 27, 37, 38, 39, 40, 91];
2023-01-09 20:54:20 +00:00
2023-01-11 15:57:23 +00:00
// save after a second delay after typing
2022-12-02 20:18:04 +00:00
$('textarea').keyup(function (e) {
2022-12-01 02:33:41 +00:00
clearTimeout(timer);
2022-12-02 20:18:04 +00:00
// only set timer if key isn't ignored
if (!ignoredKeyCodes.includes(e.keyCode)) {
2023-01-09 20:54:20 +00:00
2022-12-02 20:18:04 +00:00
timer = setTimeout(function () {
saveContent();
}, 1000);
}
2022-11-29 15:14:15 +00:00
});
// 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;
}
});
});