-
Notifications
You must be signed in to change notification settings - Fork 30
/
writtyautosave.js
85 lines (55 loc) · 1.91 KB
/
writtyautosave.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
document.addEventListener("DOMContentLoaded", function() {
AutoSave.start();
});
const AutoSave = (function () {
const getEditorElement = () => document.querySelector("#editor")
let timer = null;
//Save to local storage //
function save() {
const editorContent = document.getElementById('content').innerHTML;
if (editorContent) {
localStorage.setItem('AutoSave' + document.location, editorContent);
}
const dir = getEditorElement().getAttribute("dir")
localStorage.setItem('dirIsRtl', dir === "rtl" );
}
//Load from local storage //
function restore() {
//get the content from local storage
const savedContent = localStorage.getItem('AutoSave' + document.location);
//if it found some
if (savedContent) {
//grab the editor
document.getElementById('content').innerHTML =savedContent;
}
const dirIsRtl = localStorage.getItem('dirIsRtl');
getEditorElement().setAttribute("dir", JSON.parse(dirIsRtl) ? "rtl" : "ltr")
}
return {
// Start Autosave function triggered in line 2 //
start: function () {
const editor = document.getElementById('content');
if (editor)
restore();
if (timer != null) {
clearInterval(timer);
timer = null;
}
timer = setInterval(save, 2000);
},
stop: function () {
if (timer) {
clearInterval(timer);
timer = null;
}
}
};
}());
// Clear All //
function clearStorage() {
if (confirm("Are you sure you want to create a new text? This will erase all the content.")) {
window.localStorage.clear();
document.getElementById("content").innerHTML= "<p>Once upon a time...✏️</p>";
location.reload();
}
}