generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
162 lines (122 loc) · 4.9 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
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
import { Editor, Plugin, TAbstractFile, TFile, Notice } from 'obsidian';
import { UnusedAliasModal, SolidifyLinkModal, AliasLinkModal, SilentNoteModal } from "./ui/modal";
import {SettingTab} from "./ui/setting"
// eslint-disable-next-line @typescript-eslint/no-empty-interface
interface QuickNoteSettings {}
const DEFAULT_SETTINGS: QuickNoteSettings = {}
export default class QuickNotePlugin extends Plugin {
settings: QuickNoteSettings;
notes: TFile[]
async onload() {
await this.loadSettings();
const findPossibleAliases = () => {
const activeFile = this.app.workspace.getActiveFile()
if (!activeFile) {
new Notice("No active file!")
return;
}
const linkedFiles = Object.entries(this.app.metadataCache.resolvedLinks).filter(([_, value]) => Object.keys(value).contains(activeFile.path)).map(([key, _]) => key)
let aliases = linkedFiles.map( (file) => {
const cache = this.app.metadataCache.getCache(file)
if (!cache){
return
}
let cacheLinks = cache.links
if (!cacheLinks){
return
}
cacheLinks = cacheLinks.filter((l) => l.link.toLowerCase() == activeFile.basename.toLowerCase())
const aliasNames = cacheLinks.map((x) => x.displayText)
return aliasNames
}).flat();
aliases = [... new Set(aliases)]
const cache = this.app.metadataCache.getFileCache(activeFile)
if (!cache){
new Notice('No cache');
return;
}
let oldAliases: string[] = []
if (!(!cache.frontmatter || !cache.frontmatter.aliases)){
oldAliases = cache.frontmatter.aliases
}
oldAliases = [...oldAliases, activeFile.basename.replace(".md","")]
oldAliases = oldAliases.map((x)=> x.toLowerCase())
const newAliases = aliases.filter((item): item is string => item !== undefined).filter((x) => !(oldAliases.contains(x.toLowerCase())))
new UnusedAliasModal(this.app, activeFile, newAliases).open();
}
this.addRibbonIcon('merge', 'Find possible aliases', findPossibleAliases);
this.addCommand({
id: 'find-possible-aliases',
name: 'Find possible aliases',
callback: findPossibleAliases});
const solidfyLinks = () => {
const activeFile = this.app.workspace.getActiveFile()
if (!activeFile) {
new Notice("No active file!")
return;
}
const linkedFiles = Object.entries(this.app.metadataCache.resolvedLinks).filter(([_, value]) => Object.keys(value).contains(activeFile.name)).map(([key, _]) => key)
if (activeFile){new SolidifyLinkModal(this.app, activeFile, linkedFiles).open()}
}
this.addRibbonIcon('shield', 'Solidify links', solidfyLinks)
this.addCommand({
id: 'solidify-links',
name: 'Solidify links',
callback: solidfyLinks});
setTimeout(() => this.notes = this.getAllNotes(), 200)
this.addSettingTab(new SettingTab(this.app, this));
this.registerEvent(this.app.workspace.on('editor-menu', (menu, editor, view) => {
menu.addItem(item => {
item.setTitle('Silently create note');
item.setIcon('pencil');
item.onClick(() => this.createNoteSilent(editor));
});
}));
this.registerEvent(this.app.workspace.on('editor-menu', (menu, editor, view) => {
menu.addItem(item => {
item.setTitle('Silently create note with different name');
item.setIcon('pencil');
item.onClick(() => this.createNoteSilent2(editor));
});
}));
this.registerEvent(this.app.workspace.on('editor-menu', (menu, editor, view) => {
menu.addItem(item => {
item.setTitle('Link to note as alias');
item.setIcon('pencil');
item.onClick(() => this.aliasLink(editor));
});
}));
}
getAllNotes() {
const files = this.app.vault.getFiles();
const notes = files.filter(file => file.extension === "md");
return notes;
}
createNoteSilent(editor: Editor){
const selectedText = editor.getSelection()
const allFiles = this.app.vault.getAllLoadedFiles().map((x: TAbstractFile) => {return x.name.toLowerCase().replace(".md", "")})
if (!allFiles.contains(selectedText.toLowerCase())){this.createNote(selectedText)}
editor.replaceSelection("[[" + selectedText + "]]")
}
createNoteSilent2(editor: Editor){
const selectedText = editor.getSelection()
const allFiles = this.app.vault.getAllLoadedFiles().map((x: TAbstractFile) => {return x.name.toLowerCase().replace(".md", "")})
new SilentNoteModal(this, selectedText, allFiles, editor).open()
}
aliasLink(editor: Editor){
new AliasLinkModal(this.app, editor, this).open();
}
async createNote(filename: string) {
const fileName = filename+".md";
await this.app.vault.create(fileName, '');
//const file = await this.app.vault.create(fileName, '');
}
onunload() {
}
async loadSettings() {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
}
async saveSettings() {
await this.saveData(this.settings);
}
}