generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
212 lines (188 loc) · 5.71 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
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
import {Notice, parseFrontMatterTags, Plugin, TFile, TFolder} from 'obsidian';
import {PluginSettingsTab} from "./src/PluginSettingsTab";
export const DEFAULT_SETTINGS: FolderByTagsDistributorSettings = {
addRibbon: true,
useContentTags: false,
useFrontMatterTags: true,
forceSequentialTags: false,
excludedFolders: [],
folderNameToPlaceOtherNotes: 'OtherNotes',
treatNestedTagsAsSeparateTagName: true
}
export type FolderByTagsDistributorSettings = {
addRibbon: boolean
useFrontMatterTags: boolean
useContentTags: boolean
forceSequentialTags: boolean
excludedFolders: string[]
folderNameToPlaceOtherNotes: string
treatNestedTagsAsSeparateTagName: boolean
//TODO forceNestedTagsToBeSequential:boolean
}
const stripTag = (tag: string): string => {
return tag.replace(/^#/, '');
}
const capitalizeFirstLetter = (string: string) => {
return string.charAt(0).toUpperCase() + string.slice(1);
}
export const formatNewPath = (folder: TFolder, addPath: string) => {
if (folder.path === '/') {
return `${addPath}`
}
return `${folder.path}/${addPath}`
}
export default class FolderByTagsDistributor extends Plugin {
settings: FolderByTagsDistributorSettings;
private getExactFolder(tag: string): string {
return stripTag(tag)
}
private getUpperLetterFolder(tag: string): string {
return capitalizeFirstLetter(stripTag(tag))
}
private getCapitalizedFolder(tag: string): string {
return stripTag(tag).toUpperCase()
}
private getUnderScoreFolder(tag: string): string {
return stripTag(tag).split('_').map(word => capitalizeFirstLetter(word)).join(' ')
}
private getUnderScoreImplodedFolder(tag: string): string {
return stripTag(tag).split('_').map(word => capitalizeFirstLetter(word)).join('')
}
private resolveFolderName(currentFolder: TFolder, tag: string): TFolder | null {
for (const func of [this.getExactFolder, this.getUpperLetterFolder, this.getCapitalizedFolder, this.getUnderScoreFolder, this.getUnderScoreImplodedFolder]) {
const strippedTag = stripTag(tag)
const childFolderName = func(strippedTag)
const folderPath = formatNewPath(currentFolder, childFolderName)
const folder = this.app.vault.getFolderByPath(folderPath)
if (folder) {
return folder
}
}
return null
}
private fulfilAlgo(tags: string[]): TFolder {
let currentFolder = this.app.vault.getRoot()
const remainingTags = [...tags]
let i = 0
while (i < remainingTags.length) {
const currentTag = remainingTags[i]
if (!currentTag) {
console.error(`Accessed bad index ${i}`)
break
}
const folder = this.resolveFolderName(currentFolder, currentTag);
if (folder) {
currentFolder = folder
remainingTags.remove(currentTag)
i = 0
} else {
i++
}
}
return currentFolder
}
private sequentialAlgo(tags: string[]): TFolder {
let currentFolder = this.app.vault.getRoot()
for (const tag of tags) {
const folder = this.resolveFolderName(currentFolder, tag);
if (folder) {
currentFolder = folder
}
}
return currentFolder
}
private getExistingFolderForTags(tags: string[]): TFolder | null {
if (this.settings.forceSequentialTags) {
this.sequentialAlgo(tags)
}
return this.fulfilAlgo(tags)
}
private resolveTagsForFolderDistribution(file: TFile) {
const {useContentTags, useFrontMatterTags} = this.settings
const cache = this.app.metadataCache.getFileCache(file)
if (cache) {
const tags: string[] = []
if (useContentTags) {
const contentTags = cache.tags
if (contentTags) {
tags.push(...contentTags.map(item => item.tag))
}
}
if (useFrontMatterTags) {
const frontMatterTags = parseFrontMatterTags(cache.frontmatter)
if (frontMatterTags) {
tags.push(...frontMatterTags)
}
}
return tags
}
return null
}
private isFileBelongToExcludedFolder(file: TFile): boolean {
const {excludedFolders} = this.settings
for (const folderPath of excludedFolders) {
if (folderPath && file.path.startsWith(folderPath)) {
return true
}
}
return false;
}
public async redistributeAllNotes() {
const files = this.app.vault.getMarkdownFiles()
for (const file of files) {
if (this.isFileBelongToExcludedFolder(file)) {
continue;
}
let tags = this.resolveTagsForFolderDistribution(file)
if (tags && tags.length > 0) {
if (this.settings.treatNestedTagsAsSeparateTagName) {
tags = tags.reduce<string[]>((prev, value) => {
prev.push(...value.split("/"))
return prev
}, []);
}
let folderForTags = this.getExistingFolderForTags(tags)
if (folderForTags) {
const {folderNameToPlaceOtherNotes} = this.settings
if (folderNameToPlaceOtherNotes) {
const otherNotesFolder = this.app.vault.getFolderByPath(formatNewPath(folderForTags, folderNameToPlaceOtherNotes))
if (otherNotesFolder) {
folderForTags = otherNotesFolder
}
}
}
if (folderForTags) {
if (file.parent?.path !== folderForTags.path) {
new Notice(`Moving file "${file.name}" to "${folderForTags.path}" folder`)
await this.app.vault.rename(file, formatNewPath(folderForTags, file.name))
}
}
}
}
}
private loadLayout() {
this.addCommand({
id: 'redistribute-all-notes-between-the-folders-by-tags',
name: "Redistribute all notes to folder by tags",
callback: () => {
void this.redistributeAllNotes()
},
});
this.addRibbonIcon("sync", "Redistribute all notes to folder by tags", () => {
void this.redistributeAllNotes()
});
this.addSettingTab(new PluginSettingsTab(this.app, this));
}
async onload() {
await this.loadSettings();
this.loadLayout()
}
onunload() {
}
async loadSettings() {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
}
async saveSettings() {
await this.saveData(this.settings);
}
}