-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
235 lines (203 loc) · 6.16 KB
/
app.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
window.location.hash = '';
window.location.hash = '/root';
const currentData = window.localStorage.docFormatter ? JSON.parse(window.localStorage.docFormatter) : {
currentNode: 1,
'root': {
title: 'The Title',
data: ''
}
};
const tree = document.querySelector('.tree-wrapper');
loadTree();
function pushToLocalStorage() {
window.localStorage.setItem('docFormatter', JSON.stringify(currentData));
}
// EDITOR
const toolbarOptions = [
['bold', 'italic', 'underline', 'strike'], // toggled buttons
['blockquote', 'code-block', 'image'],
[{ 'list': 'ordered'}, { 'list': 'bullet' }],
[{ 'script': 'sub'}, { 'script': 'super' }], // superscript/subscript
[{ 'indent': '-1'}, { 'indent': '+1' }], // outdent/indent
[{ 'size': ['small', false, 'large', 'huge'] }], // custom dropdown
[{ 'header': [1, 2, 3, 4, 5, 6, false] }],
[{ 'color': [] }, { 'background': [] }], // dropdown with defaults from theme
[{ 'font': [] }],
[{ 'align': [] }]
];
const quill = new Quill('#editor', {
theme: 'snow',
modules: {
toolbar: toolbarOptions
}
});
//Modal and tooltip container
window.onload = function () {
const cl = document.querySelector(".close-btn");
cl.onclick = function () {
document.getElementById('modal').style.display = "none";
}
};
function modal_display() {
document.querySelector('#modal').style.display='block';
}
function tooltip() {
clearTooltips();
const currentAddress = getCurrentAddress();
const currentNode = document.querySelector(`#${currentAddress} .fa.fa-plus`);
const tp = document.createElement('div');
tp.className = 'tooltip';
tp.innerHTML = `
<span class="tooltiptext">
<i class="fa fa-pencil" aria-hidden="true" onclick="modal_display()"></i>
<i class="fa fa-files-o" aria-hidden="true"></i>
<i class="fa fa-trash" aria-hidden="true" onclick="removeNode()"></i>
</span>
`;
insertAfter(tp, currentNode);
}
function insertAfter(newElement, refElement) {
refElement.parentNode.insertBefore(newElement, refElement.nextSibling);
}
function clearTooltips() {
const tp = document.querySelector(".tooltip");
if (tp) { tp.parentNode.removeChild(tp); }
}
document.addEventListener('click', clearTooltips);
// TREE
function parentIcon(parent) {
const icon = parent.querySelector('.expand');
if (parent.querySelector('ul')) {
icon.classList.remove('fa-file');
icon.classList.add('fa-folder');
} else {
icon.classList.remove('fa-folder');
icon.classList.add('fa-file');
}
}
function* nodeGenerator() {
while (true) {
yield `node${currentData.currentNode++}`;
}
}
const getNodeNo = nodeGenerator();
tree.addEventListener('click', e => {
const target = e.srcElement;
const parent = target.parentElement;
if ([...target.classList].includes('fa-plus')) {
const node = getNodeNo.next().value;
currentData[node] = {};
currentData[node]['data'] = 'Start writing...';
currentData[node]['title'] = 'Untitled';
currentData[node]['parent'] = parent.id;
renderNode(parent, node);
pushToLocalStorage();
}
});
tree.addEventListener('dblclick', e => {
if ([...e.target.classList].includes('active')) {
e.preventDefault();
const currentAddress = getCurrentAddress();
window.location.hash = '';
window.location.hash = `/${currentAddress}`;
}
});
function loadTree() {
tree.querySelector('.title').textContent = currentData.root.title;
for (let i in currentData) {
if (currentData[i].parent) {
const parent = document.querySelector(`#${currentData[i].parent}`);
const node = i;
renderNode(parent, node);
}
}
}
function renderNode(parent, node) {
const ul = parent.querySelector('ul') || function() {
let result = document.createElement('ul');
parent.appendChild(result);
return result;
}();
const li = document.createElement('li');
li.id = node;
li.classList.add('nodes');
li.innerHTML = `
<i class="fa fa-file expand" aria-hidden="true"></i>
<a href="#/${node}" data-link="${node}">${currentData[node]['title']}</a>
<i class="fa fa-plus" aria-hidden="true"></i>
`;
ul.appendChild(li);
parentIcon(parent);
}
// DATA STORAGE AND LINKAGE
const titleName = document.querySelector('.title-name');
const remove = document.querySelector('.remove');
const editor = document.querySelector('.ql-editor');
const root = document.querySelector('.root');
function getCurrentAddress() {
return String(window.location.hash.substring(2, window.location.hash.length));
}
window.addEventListener('hashchange', function(e) {
if (this.location.hash) {
const location = getCurrentAddress();
const activeLink = root.querySelector(`a[data-link=${location}]`);
[...root.querySelectorAll('a')].forEach( a => {
if (a.getAttribute('data-link') === location) {
a.classList.add('active');
} else {
a.classList.remove('active');
}
});
editor.innerHTML = currentData[location]['data'];
titleName.value = currentData[location]['title'];
tooltip();
}
});
function storeData() {
const data = String(this.innerHTML);
const node = getCurrentAddress();
currentData[node]['data'] = data;
pushToLocalStorage();
}
function storeTitle() {
const node = getCurrentAddress();
const value = this.value.trim() || 'Untitled';
currentData[node]['title'] = value;
pushToLocalStorage();
if (node === 'root') {
root.querySelector('.title').textContent = value;
} else {
const element = root.querySelector(`a[data-link=${node}]`);
element.textContent = value;
}
}
function removeNode() {
const node = getCurrentAddress();
if (node === 'root') {
alert('Cannot delete root');
return;
}
delete currentData[node];
deleteChildren(node);
pushToLocalStorage();
const element = root.querySelector(`a[data-link=${node}]`);
const ul = element.parentElement.parentElement;
const li = element.parentElement;
ul.removeChild(li);
window.location.hash = '/root';
}
function deleteChildren(node) {
for (let i in currentData) {
if (currentData[i].parent === node) {
delete currentData[i];
deleteChildren(i);
}
}
}
editor.addEventListener('input', storeData);
editor.addEventListener('focus', function() {
window.setTimeout(() => storeData.bind(this)(), 1000);
});
titleName.addEventListener('input', storeTitle);
titleName.addEventListener('paste', storeTitle);
remove.addEventListener('click', removeNode);