-
Notifications
You must be signed in to change notification settings - Fork 6
/
TocWidget.js
410 lines (360 loc) · 17.1 KB
/
TocWidget.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
/**
* Table of contents widget
* (c) Antonio Tejada 2022
*
* For text notes, it will place a table of content on the left pane, below the
* tree.
* - The table can't be modified directly but it's automatically updated when
* new headings are added to the note
* - The items in the table can be clicked to navigate the note.
*
* This is enabled by default for all text notes, but can be disabled by adding
* the tag noTocWidget to a text note.
*
* By design there's no support for non-sensical or malformed constructs:
* - headings inside elements (eg Trilium allows headings inside tables, but
* not inside lists)
* - nested headings when using raw HTML <H2><H3></H3></H2>
* - malformed headings when using raw HTML <H2></H3></H2><H3>
* - etc.
*
* In those cases the generated TOC may be incorrect or the navigation may lead
* to the wrong heading (although what "right" means in those cases is not
* clear), but it won't crash.
*
* See https://github.com/zadam/trilium/discussions/2799 for discussions
*/
function getNoteAttributeValue(note, attributeType, attributeName, defaultValue) {
let attribute = note.getAttribute(attributeType, attributeName);
let attributeValue = (attribute != null) ? attribute.value : defaultValue;
return attributeValue;
}
const tocWidgetHeightPct = getNoteAttributeValue(api.startNote, "label", "tocWidgetHeightPct", 30);
const alwaysShowWidget = (tocWidgetHeightPct > 0);
const tocWidgetHeightPctCss = alwaysShowWidget ? `height: ${tocWidgetHeightPct}%;` : "";
const TEMPLATE = `<div style="padding: 0px; border-top: 1px solid var(--main-border-color); contain: none; overflow:auto; ${tocWidgetHeightPctCss}">
Table of Contents
<span class="toc"></span>
</div>`;
const tag = "TocWidget";
const debugLevels = ["error", "warn", "info", "log", "debug"];
const debugLevel = debugLevels.indexOf(getNoteAttributeValue(api.startNote, "label",
"debugLevel", "info"));
let warn = function() {};
if (debugLevel >= debugLevels.indexOf("warn")) {
warn = console.warn.bind(console, tag + ": ");
}
let info = function() {};
if (debugLevel >= debugLevels.indexOf("info")) {
info = console.info.bind(console, tag + ": ");
}
let log = function() {};
if (debugLevel >= debugLevels.indexOf("log")) {
log = console.log.bind(console, tag + ": ");
}
let dbg = function() {};
if (debugLevel >= debugLevels.indexOf("debug")) {
dbg = console.debug.bind(console, tag + ": ");
}
function assert(e, msg) {
console.assert(e, tag + ": " + msg);
}
function debugbreak() {
debugger;
}
/**
* Find a heading node in the parent's children given its index.
*
* @param {Element} parent Parent node to find a headingIndex'th in.
* @param {uint} headingIndex Index for the heading
* @returns {Element|null} Heading node with the given index, null couldn't be
* found (ie malformed like nested headings, etc)
*/
function findHeadingNodeByIndex(parent, headingIndex) {
log("Finding headingIndex " + headingIndex + " in parent " + parent.name);
let headingNode = null;
for (let i = 0; i < parent.childCount; ++i) {
let child = parent.getChild(i);
dbg("Inspecting node: " + child.name +
", attrs: " + Array.from(child.getAttributes()) +
", path: " + child.getPath());
// Headings appear as flattened top level children in the CKEditor
// document named as "heading" plus the level, eg "heading2",
// "heading3", "heading2", etc and not nested wrt the heading level. If
// a heading node is found, decrement the headingIndex until zero is
// reached
if (child.name.startsWith("heading")) {
if (headingIndex == 0) {
dbg("Found heading node " + child.name);
headingNode = child;
break;
}
headingIndex--;
}
}
return headingNode;
}
function findHeadingElementByIndex(parent, headingIndex) {
log("Finding headingIndex " + headingIndex + " in parent " + parent.innerHTML);
let headingElement = null;
for (let i = 0; i < parent.children.length; ++i) {
let child = parent.children[i];
dbg("Inspecting node: " + child.innerHTML);
// Headings appear as flattened top level children in the DOM named as
// "H" plus the level, eg "H2", "H3", "H2", etc and not nested wrt the
// heading level. If a heading node is found, decrement the headingIndex
// until zero is reached
if (child.tagName.match(/H\d+/) !== null) {
if (headingIndex == 0) {
dbg("Found heading element " + child.tagName);
headingElement = child;
break;
}
headingIndex--;
}
}
return headingElement;
}
/**
* Return the active tab's element containing the HTML element that contains
* a readonly note's HTML.
*
*/
function getActiveTabReadOnlyTextElement() {
// The note's html is in the following hierarchy
// note-split data-ntx-id=XXXX
// ...
// note-detail-readonly-text component
// <styles>
// note-detail-readonly-text-content
// <html>
// Note
// 1. the readonly text element is not removed but hidden when readonly is
// toggled without reloading,
// 2. There can also be hidden readonly text elements in inactive tabs
// 3. There can be more visible readonly text elements in inactive splits
log("getActiveTabReadOnlyTextElement");
const activeNtxId = glob.appContext.tabManager.activeNtxId;
const readOnlyTextElement = $(".note-split[data-ntx-id=" + activeNtxId +
"] .note-detail-readonly-text-content");
assert(readOnlyTextElement.length == 1,
"Duplicated element found for " + readOnlyTextElement);
return readOnlyTextElement[0];
}
function getActiveTabTextEditor(callback) {
log("getActiveTabTextEditor");
// Wrapper until this commit is available
// https://github.com/zadam/trilium/commit/11578b1bc3dda7f29a91281ec28b5fe6f6c63fef
api.getActiveTabTextEditor(function (textEditor) {
const textEditorNtxId = textEditor.sourceElement.parentElement.component.noteContext.ntxId;
if (glob.appContext.tabManager.activeNtxId == textEditorNtxId) {
callback(textEditor);
}
});
}
class TocWidget extends api.NoteContextAwareWidget {
get position() {
log("getPosition id " + this.note?.noteId + " ntxId " + this.noteContext?.ntxId);
// higher value means position towards the bottom/right
return 100;
}
get parentWidget() {
log("getParentWidget id " + this.note?.noteId + " ntxId " + this.noteContext?.ntxId);
return 'left-pane';
}
isEnabled() {
log("isEnabled id " + this.note?.noteId + " ntxId " + this.noteContext?.ntxId);
return super.isEnabled()
&& (alwaysShowWidget || (this.note.type === 'text'))
&& !this.note.hasLabel('noTocWidget');
}
doRender() {
log("doRender id " + this.note?.noteId);
this.$widget = $(TEMPLATE);
this.$toc = this.$widget.find('.toc');
return this.$widget;
}
async noteSwitchedEvent(eventData) {
const {noteContext, notePath } = eventData;
log("noteSwitchedEvent id " + this.note?.noteId + " ntxId " + this.noteContext?.ntxId +
" to id " + noteContext.note?.noteId + " ntxId " + noteContext.ntxId);
return await super.noteSwitchedEvent(eventData);
}
async activeContextChangedEvent(eventData) {
const {noteContext} = eventData;
log("activeContextChangedEvent id " + this.note?.noteId + " ntxId " + this.noteContext?.ntxId +
" to id " + noteContext.note?.noteId + " ntxId " + noteContext.ntxId);
return await super.activeContextChangedEvent(eventData);
}
async noteSwitchedAndActivatedEvent(eventData) {
const {noteContext, notePath} = eventData;
log("noteSwitchedAndActivatedEvent id " + this.note?.noteId + " ntxId " + this.noteContext?.ntxId +
" to id " + noteContext.note?.noteId + " ntxId " + noteContext.ntxId);
return await super.noteSwitchedAndActivatedEvent(eventData);
}
async noteTypeMimeChangedEvent(eventData) {
const {noteId} = eventData;
log("noteTypeMimeChangedEvent id " + this.note?.noteId + " ntxId " + this.noteContext?.ntxId +
" to id " + noteId);
return await super.noteTypeMimeChangedEvent(eventData);
}
async frocaReloadedEvent(eventData) {
log("frocaReloadedEvent id " + this.note?.noteId + " ntxId " + this.noteContext?.ntxId);
return await super.frocaReloadedEvent(eventData);
}
async refreshWithNote(note) {
log("refreshWithNote id " + this.note?.noteId + " ntxId " + this.noteContext?.ntxId + " with " + note.noteId);
let toc = "";
// Check for type text unconditionally in case alwaysShowWidget is set
if (this.note.type === 'text') {
const { content } = await note.getNoteComplement();
toc = await this.getToc(content);
}
this.$toc.html(toc);
}
/**
* Builds a jquery table of contents.
*
* @param {String} html Note's html content
* @returns {jquery} ordered list table of headings, nested by heading level
* with an onclick event that will cause the document to scroll to
* the desired position.
*/
getToc(html) {
log("getToc");
// Regular expression for headings <h1>...</h1> using non-greedy
// matching and backreferences
let reHeadingTags = /<h(\d+)>(.*?)<\/h\1>/g;
// Use jquery to build the table rather than html text, since it makes
// it easier to set the onclick event that will be executed with the
// right captured callback context
let $toc = $("<ol>");
// Note heading 2 is the first level Trilium makes available to the note
let curLevel = 2;
let $ols = [$toc];
let widget = this;
for (let m = null, headingIndex = 0; ((m = reHeadingTags.exec(html)) !== null);
++headingIndex) {
//
// Nest/unnest whatever necessary number of ordered lists
//
let newLevel = m[1];
let levelDelta = newLevel - curLevel;
if (levelDelta > 0) {
// Open as many lists as newLevel - curLevel
for (let i = 0; i < levelDelta; ++i) {
let $ol = $("<ol>");
$ols[$ols.length - 1].append($ol);
$ols.push($ol);
}
} else if (levelDelta < 0) {
// Close as many lists as curLevel - newLevel
for (let i = 0; i < -levelDelta; ++i) {
$ols.pop();
}
}
curLevel = newLevel;
//
// Create the list item and setup the click callback
//
let $li = $('<li style="cursor:pointer">' + m[2] + '</li>');
// XXX Do this with CSS? How to inject CSS in doRender?
$li.hover(function () {
$(this).css("font-weight", "bold");
}).mouseout(function () {
$(this).css("font-weight", "normal");
});
$li.on("click", async function () {
log("clicked");
// A readonly note can change state to "readonly disabled
// temporarily" (ie "edit this note" button) without any
// intervening events, do the readonly calculation at navigation
// time and not at outline creation time
// See https://github.com/zadam/trilium/issues/2828
const isReadOnly = await widget.noteContext.isReadOnly();
if (isReadOnly) {
let readonlyTextElement = getActiveTabReadOnlyTextElement();
let headingElement = findHeadingElementByIndex(readonlyTextElement, headingIndex);
if (headingElement != null) {
headingElement.scrollIntoView();
} else {
warn("Malformed HTML, unable to navigate, TOC rendering is probably wrong too.");
}
} else {
getActiveTabTextEditor(textEditor => {
const model = textEditor.model;
const doc = model.document;
const root = doc.getRoot();
let headingNode = findHeadingNodeByIndex(root, headingIndex);
// headingNode could be null if the html was malformed or
// with headings inside elements, just ignore and don't
// navigate (note that the TOC rendering and other TOC
// entries' navigation could be wrong too)
if (headingNode != null) {
// Setting the selection alone doesn't scroll to the
// caret, needs to be done explicitly and outside of
// the writer change callback so the scroll is
// guaranteed to happen after the selection is
// updated.
// In addition, scrolling to a caret later in the
// document (ie "forward scrolls"), only scrolls
// barely enough to place the caret at the bottom of
// the screen, which is a usability issue, you would
// like the caret to be placed at the top or center
// of the screen.
// To work around that issue, first scroll to the
// end of the document, then scroll to the desired
// point. This causes all the scrolls to be
// "backward scrolls" no matter the current caret
// position, which places the caret at the top of
// the screen.
// XXX This could be fixed in another way by using
// the underlying CKEditor5
// scrollViewportToShowTarget, which allows to
// provide a larger "viewportOffset", but that
// has coding complications (requires calling an
// internal CKEditor utils funcion and passing
// an HTML element, not a CKEditor node, and
// CKEditor5 doesn't seem to have a
// straightforward way to convert a node to an
// HTML element? (in CKEditor4 this was done
// with $(node.$) )
// Scroll to the end of the note to guarantee the
// next scroll is a backwards scroll that places the
// caret at the top of the screen
model.change(writer => {
writer.setSelection(root.getChild(root.childCount - 1), 0);
});
textEditor.editing.view.scrollToTheSelection();
// Backwards scroll to the heading
model.change(writer => {
writer.setSelection(headingNode, 0);
});
textEditor.editing.view.scrollToTheSelection();
} else {
warn("Malformed HTML, unable to navigate, TOC rendering is probably wrong too.");
}
});
}
});
$ols[$ols.length - 1].append($li);
}
return $toc;
}
async entitiesReloadedEvent(eventData) {
const { loadResults } = eventData;
log("entitiesReloadedEvent id " + this.note?.noteId + " ntxId " + this.noteContext?.ntxId);
// The TOC needs refreshing when
// - the note content changes, which loadResults.isNoteContentReloaded
// reports
// - the note readonly/editable changes, which
// loadResults.hasAttributeRelatedChanges reports
// - the note type changes and needs to show/hide (eg text to plain
// text), etc which loadResults has no way to find out
// so refresh unconditionally
// See https://github.com/zadam/trilium/issues/2787#issuecomment-1114027030
this.refresh();
}
}
info(`Creating TocWidget debugLevel:${debugLevel} heightPct:${tocWidgetHeightPct}`);
module.exports = new TocWidget();