generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.ts
239 lines (209 loc) · 6.03 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
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
import {
App,
Editor,
MarkdownView,
Notice,
Plugin,
PluginSettingTab,
Setting,
TFile,
normalizePath,
} from "obsidian";
const ARCHIVE_FOLDER_GROUPINGS = ["NoGrouping", "Year", "Month"] as const;
type ArchiveFolderGrouping = (typeof ARCHIVE_FOLDER_GROUPINGS)[number];
interface NoteArchiverSettings {
version: string;
archiveFolderName: string;
grouping: ArchiveFolderGrouping;
}
const DEFAULT_SETTINGS: NoteArchiverSettings = {
version: "0.1.0",
archiveFolderName: "Archive",
grouping: "NoGrouping",
};
export default class NoteArchiverPlugin extends Plugin {
settings: NoteArchiverSettings;
async onload() {
await this.loadSettings();
// This adds an editor command that can perform some operation on the current editor instance
this.addCommand({
id: "archive-current-note",
name: "Archive current note",
editorCheckCallback: (
checking: boolean,
editor: Editor,
view: MarkdownView
) => {
if (checking) {
return !view.file.path.startsWith(
this.settings.archiveFolderName
);
} else {
this.archivePage(view.file.path);
return true;
}
},
});
// on right-clicking a file
this.registerEvent(
this.app.workspace.on("file-menu", (menu, file) => {
if (!file.path.startsWith(this.settings.archiveFolderName)) {
menu.addItem((item) => {
item.setTitle("📤 Archive file")
.setIcon("document")
.onClick(async () => {
this.archivePage(file.path);
});
});
}
})
);
// on clicking the 3-dots on the top right of an editor
this.registerEvent(
this.app.workspace.on("editor-menu", (menu, editor, view) => {
menu.addItem((item) => {
let path = view.file?.path;
if (
path &&
!path.startsWith(this.settings.archiveFolderName)
) {
item.setTitle("📤 Archive file")
.setIcon("document")
.onClick(async () => {
this.archivePage(path ?? "");
});
}
});
})
);
// This adds a settings tab so the user can configure various aspects of the plugin
this.addSettingTab(new NoteArchiverSettingTab(this.app, this));
}
onunload() {}
async archivePage(path: string) {
let targetFile = this.app.vault.getAbstractFileByPath(path) as TFile;
// get and create archive folder
let archiveFolder = this.settings.archiveFolderName;
if (this.settings.grouping === "NoGrouping") {
archiveFolder = this.settings.archiveFolderName;
} else {
if (this.settings.grouping === "Year") {
let year = new Date().getFullYear();
archiveFolder = normalizePath(
`${this.settings.archiveFolderName}/${year}`
);
} else if (this.settings.grouping === "Month") {
let now = new Date();
let year = now.getFullYear();
let paddedMonthNumber = (now.getMonth() + 1)
.toString()
.padStart(2, "0");
let monthName = now.toLocaleString("default", {
month: "long",
});
archiveFolder = normalizePath(
`${this.settings.archiveFolderName}/${year}/${paddedMonthNumber}-${monthName}`
);
}
}
// new path for archived file
let newPath = normalizePath(`${archiveFolder}/${path}`);
// make sure the folder for the file exists
let newFolder = newPath.substring(0, newPath.lastIndexOf('/'));
if (this.app.vault.getAbstractFileByPath(newFolder) === null) {
await this.app.vault.createFolder(newFolder);
}
// move the file
await this.app.fileManager.renameFile(targetFile, newPath);
new Notice(`${path} moved to ${newPath}`);
}
async loadSettings() {
this.settings = Object.assign(
{},
DEFAULT_SETTINGS,
await this.loadData()
);
}
async saveSettings() {
await this.saveData(this.settings);
}
}
class NoteArchiverSettingTab extends PluginSettingTab {
plugin: NoteArchiverPlugin;
constructor(app: App, plugin: NoteArchiverPlugin) {
super(app, plugin);
this.plugin = plugin;
}
display(): void {
const { containerEl } = this;
containerEl.empty();
// folder path
let folderPathSetting = new Setting(containerEl)
.setName("Archive folder")
.setDesc("Where should I put your archived files?")
.addText((text) =>
text
.setPlaceholder("Enter your secret")
.setValue(this.plugin.settings.archiveFolderName)
.onChange(async (value) => {
let folder = normalizePath(value);
this.plugin.settings.archiveFolderName = folder;
await this.plugin.saveSettings();
updateFolderPathHelpMessage(
this.plugin.settings.archiveFolderName
);
})
);
// helper message for folder path not existing
let folderPathHelpMessage = folderPathSetting.infoEl.createEl("p", {
text: "",
cls: ["setting-item-description", "setting-item-extra-info"],
});
let updateFolderPathHelpMessage = (folder: string) => {
let abstractFile = this.app.vault.getAbstractFileByPath(
normalizePath(folder)
);
if (!abstractFile) {
folderPathHelpMessage.textContent =
"Folder not in vault, it will be created when you archive a note here";
} else {
if (abstractFile instanceof TFile) {
folderPathHelpMessage.textContent =
"File exists with this name, you can't archive anything until you change this";
} else {
folderPathHelpMessage.textContent =
"Folder exists, all good";
}
}
};
updateFolderPathHelpMessage(this.plugin.settings.archiveFolderName);
new Setting(containerEl)
.setName("Group by")
.setDesc("Should I group your archived files?")
.addDropdown((dropdown) =>
dropdown
.addOption("NoGrouping", "Don't group my files")
.addOption("Year", "Group by year file is archived")
.addOption(
"Month",
"Group by year and month file is archived"
)
.setValue(this.plugin.settings.grouping)
.onChange(async (value) => {
if (
!ARCHIVE_FOLDER_GROUPINGS.find(
(validName) => value === validName
)
) {
throw new Error(
"Unable to parse ArchiveFolderGrouping from value " +
value
);
}
this.plugin.settings.grouping =
value as ArchiveFolderGrouping;
await this.plugin.saveSettings();
})
);
}
}