-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSideTrayView.ts
133 lines (106 loc) · 3.8 KB
/
SideTrayView.ts
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
import {
ItemView,
MarkdownRenderer,
TFile,
WorkspaceLeaf,
moment
} from "obsidian";
import { getDailyNote } from "obsidian-daily-notes-interface";
import { get } from "svelte/store";
import { dailyNotesStore } from "ui/stores";
export const VIEW_TYPE = "super-scratchpad";
export class SideTrayView extends ItemView {
private timer: NodeJS.Timeout | null = null;
private today: moment.Moment;
private baseContainer: HTMLElement;
constructor(leaf: WorkspaceLeaf) {
super(leaf);
this.onFileModified = this.onFileModified.bind(this);
this.openSelectedDayNoteInRootLeaf = this.openSelectedDayNoteInRootLeaf.bind(this);
this.registerEvent(this.app.vault.on("modify", this.onFileModified));
this.today = moment();
this.baseContainer = document.createElement('div');
this.baseContainer.id = "super-scratchpad"
this.containerEl.empty();
this.containerEl.appendChild(this.baseContainer)
}
getViewType() {
return VIEW_TYPE;
}
getDisplayText() {
return "Super Scratchpad";
}
getIcon(): string {
return "beer"
}
private async onFileModified(file: TFile): Promise<void> {
if (file.parent?.name != "Journal") return;
var lastClick = 0;
var delay = 200;
if (lastClick >= (Date.now() - delay)) return;
lastClick = Date.now();
this.mergeAllDailyNotesAndDisplay()
}
async onOpen(): Promise<void> {
this.mergeAllDailyNotesAndDisplay();
}
private async mergeAllDailyNotesAndDisplay() {
this.baseContainer.empty();
const mergedDailyNotes = await this.mergeAllDailyNotes();
MarkdownRenderer.render(this.app, mergedDailyNotes, this.baseContainer, "", this);
this.attachOnClickEventHandlerToDateLinks();
}
private async mergeAllDailyNotes() {
dailyNotesStore.reindex();
const allNotes: Record<string, TFile> = get(dailyNotesStore);
const allMoments: moment.Moment[] = Object
.keys(allNotes)
.map(k => k.replace(/^day-/i, ''))
.map(v => moment(v))
.sort()
;
// Sorting the array of moment objects
allMoments.sort((a, b) => b.diff(a));
var headingsAndNotesForEachDay: string[] = [];
for (const thatMoment of allMoments) {
const thatDatesNote = getDailyNote(thatMoment, allNotes);
const thatDatesData = await this.app.vault.adapter.read(thatDatesNote.path);
headingsAndNotesForEachDay.push(`# [${thatMoment.format("DD.MM.YYYY")}](${thatMoment.format("DD.MM.YYYY")})\n`);
headingsAndNotesForEachDay.push(thatDatesData + '\n');
}
const headingAndContentPairs: string[] = [];
for (var i = 0; i < headingsAndNotesForEachDay.length; i += 2) {
const headingAndContentPair = headingsAndNotesForEachDay.slice(i, i + 2).join('\n');
headingAndContentPairs.push(headingAndContentPair);
}
const mergedDailyNotes = headingAndContentPairs.join('\n---\n');
return mergedDailyNotes;
}
private attachOnClickEventHandlerToDateLinks() {
const dateLinks = document.querySelectorAll('#super-scratchpad h1>a.internal-link');
dateLinks.forEach((link: HTMLAnchorElement) => {
link.addEventListener('click', this.openSelectedDayNoteInRootLeaf);
});
}
private async openSelectedDayNoteInRootLeaf(event: MouseEvent) {
const tFile = this.getTFileForClickedNote(event);
if (tFile == null) return
this.openTFileInRootLeaf(tFile)
}
private getTFileForClickedNote(event: MouseEvent): TFile | null {
const element = event.target as HTMLAnchorElement;
const noteName: string | null = element.getAttribute('href');
const path = 'confluent-notes/Journal/' + noteName + '.md';
return this.app.vault.getAbstractFileByPath(path) as TFile | null;
}
private async openTFileInRootLeaf(tFile: TFile) {
const newLeaf: WorkspaceLeaf = this.app.workspace.getLeaf(true);
await newLeaf.setViewState({ type: "tab", active: true });
newLeaf.openFile(tFile)
this.app.workspace.revealLeaf(newLeaf)
}
async onClose() {
console.log("Closed");
// Nothing to clean up.
}
}