-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.ts
83 lines (68 loc) · 2.14 KB
/
main.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
import { Plugin, TFile} from 'obsidian';
export default class SNote extends Plugin {
private sessionNotes: TFile[] = [];
private tempNote?: TFile;
async onload() {
this.addCommand({
id: 'open-temp-note',
name: 'Open a temporary note (delete on change)',
callback: () => this.openTempNote(),
});
this.addCommand({
id: 'open-session-note',
name: 'Open a session note (delete on app close)',
callback: () => this.openSessionNote(),
});
window.addEventListener('beforeunload', (event) => {
if (this.sessionNotes.length === 0) {
return;
}
event.preventDefault();
this.deleteSessionNotes();
});
this.registerEvent(this.app.workspace.on('active-leaf-change', () => {
this.checkTempNoteDeletion();
}));
}
async openTempNote() {
const file = await this.app.vault.create('Temp Note.md', '');
this.tempNote = file;
const leaf = this.app.workspace.getLeaf();
leaf.openFile(file);
}
async openSessionNote() {
let count = 1;
let baseName = 'Session Note';
let newFileName = `${baseName} ${count}.md`;
while (this.app.vault.getAbstractFileByPath(newFileName)) {
count++;
newFileName = `${baseName} ${count}.md`;
}
const file = await this.app.vault.create(newFileName, '');
this.sessionNotes.push(file);
const leaf = this.app.workspace.getLeaf();
leaf.openFile(file);
}
checkTempNoteDeletion() {
const activeFile = this.app.workspace.getActiveFile();
if (this.tempNote && (!activeFile || activeFile.path !== this.tempNote.path)) {
this.app.vault.delete(this.tempNote);
this.tempNote = undefined;
}
}
async deleteSessionNotes() {
const deletionPromises = this.sessionNotes.map(async (note) => {
try {
await this.app.vault.delete(note);
} catch (error) {
console.error(`Failed to delete session note: ${note.path}`, error);
}
});
await Promise.allSettled(deletionPromises);
this.sessionNotes = [];
window.close();
}
onunload() {
window.removeEventListener('beforeunload', () => this.deleteSessionNotes());
}
}