mirror of
https://github.com/lostpaul/obsidian-folder-notes.git
synced 2026-07-22 07:40:24 +00:00
498 lines
18 KiB
TypeScript
498 lines
18 KiB
TypeScript
import { App, TFolder, Menu, TAbstractFile, Notice, TFile, Editor, MarkdownView, Platform } from 'obsidian';
|
|
import FolderNotesPlugin from './main';
|
|
import { getFolderNote, createFolderNote, deleteFolderNote, turnIntoFolderNote, openFolderNote, extractFolderName, detachFolderNote } from './functions/folderNoteFunctions';
|
|
import { ExcludedFolder } from './ExcludeFolders/ExcludeFolder';
|
|
import { getFolderPathFromString, getFileExplorerActiveFolder } from './functions/utils';
|
|
import { deleteExcludedFolder, getDetachedFolder, getExcludedFolder } from './ExcludeFolders/functions/folderFunctions';
|
|
import { hideFolderNoteInFileExplorer, showFolderNoteInFileExplorer } from './functions/styleFunctions';
|
|
|
|
|
|
|
|
export class Commands {
|
|
plugin: FolderNotesPlugin;
|
|
app: App;
|
|
constructor(app: App, plugin: FolderNotesPlugin) {
|
|
this.plugin = plugin;
|
|
this.app = app;
|
|
}
|
|
registerCommands() {
|
|
this.editorCommands();
|
|
this.fileCommands();
|
|
this.regularCommands();
|
|
}
|
|
regularCommands() {
|
|
this.plugin.addCommand({
|
|
id: 'turn-into-folder-note',
|
|
name: 'Use this file as the folder note for its parent folder',
|
|
checkCallback: (checking: boolean) => {
|
|
const file = this.app.workspace.getActiveFile();
|
|
if (!(file instanceof TFile)) return false;
|
|
const folder = file.parent;
|
|
if (!folder || !(folder instanceof TFolder)) return false;
|
|
// Only show if file is NOT in the root folder
|
|
if (folder.path === '' || folder.path === '/') return false;
|
|
const folderNote = getFolderNote(this.plugin, folder.path);
|
|
if (folderNote instanceof TFile && folderNote === file) return false;
|
|
if (checking) return true;
|
|
turnIntoFolderNote(this.plugin, file, folder, folderNote);
|
|
},
|
|
});
|
|
|
|
this.plugin.addCommand({
|
|
id: 'create-folder-note',
|
|
name: 'Make a folder with this file as its folder note',
|
|
callback: async () => {
|
|
const file = this.app.workspace.getActiveFile();
|
|
if (!(file instanceof TFile)) return;
|
|
let newPath = file.parent?.path + '/' + file.basename;
|
|
if (file.parent?.path === '' || file.parent?.path === '/') {
|
|
newPath = file.basename;
|
|
}
|
|
if (this.plugin.app.vault.getAbstractFileByPath(newPath)) {
|
|
return new Notice('Folder already exists');
|
|
}
|
|
const automaticallyCreateFolderNote = this.plugin.settings.autoCreate;
|
|
this.plugin.settings.autoCreate = false;
|
|
this.plugin.saveSettings();
|
|
await this.plugin.app.vault.createFolder(newPath);
|
|
const folder = this.plugin.app.vault.getAbstractFileByPath(newPath);
|
|
if (!(folder instanceof TFolder)) return;
|
|
createFolderNote(this.plugin, folder.path, true, '.' + file.extension, false, file);
|
|
this.plugin.settings.autoCreate = automaticallyCreateFolderNote;
|
|
this.plugin.saveSettings();
|
|
},
|
|
});
|
|
|
|
this.plugin.addCommand({
|
|
id: 'create-folder-note-for-current-folder',
|
|
name: 'Create markdown folder note for this folder',
|
|
checkCallback: (checking) => {
|
|
const file = this.app.workspace.getActiveFile();
|
|
if (!(file instanceof TFile)) return false;
|
|
const folder = file.parent;
|
|
if (!(folder instanceof TFolder)) return false;
|
|
if (folder.path === '' || folder.path === '/') return false;
|
|
if (checking) return true;
|
|
createFolderNote(this.plugin, folder.path, true, '.md', false);
|
|
},
|
|
});
|
|
|
|
this.plugin.settings.supportedFileTypes.forEach((fileType) => {
|
|
if (fileType === 'md') return;
|
|
this.plugin.addCommand({
|
|
id: `create-${fileType}-folder-note-for-current-folder`,
|
|
name: `Create ${fileType} folder note for this folder`,
|
|
checkCallback: (checking) => {
|
|
const file = this.app.workspace.getActiveFile();
|
|
if (!(file instanceof TFile)) return false;
|
|
const folder = file.parent;
|
|
if (!(folder instanceof TFolder)) return false;
|
|
if (folder.path === '' || folder.path === '/') return false;
|
|
if (checking) return true;
|
|
createFolderNote(this.plugin, folder.path, true, '.' + fileType, false);
|
|
},
|
|
});
|
|
});
|
|
this.plugin.settings.supportedFileTypes.forEach((fileType) => {
|
|
const type = fileType === 'md' ? 'markdown' : fileType;
|
|
this.plugin.addCommand({
|
|
id: `create-${type}-folder-note-for-active-file-explorer-folder`,
|
|
name: `Create ${type} folder note for current active folder in file explorer`,
|
|
checkCallback: (checking: boolean) => {
|
|
const folder = getFileExplorerActiveFolder();
|
|
if (!folder) return false;
|
|
// Is there already a folder note for the active folder?
|
|
const folderNote = getFolderNote(this.plugin, folder.path);
|
|
if (folderNote instanceof TFile) return false;
|
|
if (checking) return true;
|
|
|
|
// Everything is fine and not checking, let's create the folder note.
|
|
const ext = '.' + fileType;
|
|
const path = folder.path;
|
|
createFolderNote(this.plugin, path, true, ext, false);
|
|
},
|
|
});
|
|
});
|
|
|
|
this.plugin.addCommand({
|
|
id: 'delete-folder-note-for-current-folder',
|
|
name: 'Delete this folder\'s linked note',
|
|
checkCallback: (checking) => {
|
|
const file = this.app.workspace.getActiveFile();
|
|
if (!(file instanceof TFile)) return false;
|
|
const folder = file.parent;
|
|
if (!(folder instanceof TFolder)) return false;
|
|
const folderNote = getFolderNote(this.plugin, folder.path);
|
|
if (!(folderNote instanceof TFile)) return false;
|
|
if (checking) return true;
|
|
deleteFolderNote(this.plugin, folderNote, true);
|
|
},
|
|
});
|
|
|
|
this.plugin.addCommand({
|
|
id: 'delete-folder-note-of-active-file-explorer-folder',
|
|
name: 'Delete folder note of current active folder in file explorer',
|
|
checkCallback: (checking: boolean) => {
|
|
const folder = getFileExplorerActiveFolder();
|
|
if (!folder) return false;
|
|
// Is there any folder note for the active folder?
|
|
const folderNote = getFolderNote(this.plugin, folder.path);
|
|
if (!(folderNote instanceof TFile)) return false;
|
|
if (checking) return true;
|
|
|
|
// Everything is fine and not checking, let's delete the folder note.
|
|
deleteFolderNote(this.plugin, folderNote, true);
|
|
},
|
|
});
|
|
this.plugin.addCommand({
|
|
id: 'open-folder-note-for-current-folder',
|
|
name: 'Open this folder\'s linked note',
|
|
checkCallback: (checking) => {
|
|
const file = this.app.workspace.getActiveFile();
|
|
if (!(file instanceof TFile)) return false;
|
|
const folder = file.parent;
|
|
if (!(folder instanceof TFolder)) return false;
|
|
const folderNote = getFolderNote(this.plugin, folder.path);
|
|
if (!(folderNote instanceof TFile)) return false;
|
|
if (checking) return true;
|
|
openFolderNote(this.plugin, folderNote);
|
|
},
|
|
});
|
|
this.plugin.addCommand({
|
|
id: 'open-folder-note-of-active-file-explorer-folder',
|
|
name: 'Open folder note of current active folder in file explorer',
|
|
checkCallback: (checking: boolean) => {
|
|
const folder = getFileExplorerActiveFolder();
|
|
if (!folder) return false;
|
|
// Is there any folder note for the active folder?
|
|
const folderNote = getFolderNote(this.plugin, folder.path);
|
|
if (!(folderNote instanceof TFile)) return false;
|
|
if (checking) return true;
|
|
|
|
// Everything is fine and not checking, let's open the folder note.
|
|
openFolderNote(this.plugin, folderNote);
|
|
},
|
|
});
|
|
|
|
this.plugin.addCommand({
|
|
id: 'create-folder-note-from-selected-text',
|
|
name: 'Create folder note from selection',
|
|
editorCheckCallback: (checking: boolean, editor: Editor, view: MarkdownView) => {
|
|
const text = editor.getSelection().trim();
|
|
const file = view.file;
|
|
if (!(file instanceof TFile)) return false;
|
|
if (text && text.trim() !== '') {
|
|
if (checking) { return true; }
|
|
const blacklist = ['*', '\\', '"', '/', '<', '>', '?', '|', ':'];
|
|
for (const char of blacklist) {
|
|
if (text.includes(char)) {
|
|
new Notice('File name cannot contain any of the following characters: * " \\ / < > : | ?');
|
|
return false;
|
|
}
|
|
}
|
|
if (text.endsWith('.')) {
|
|
new Notice('File name cannot end with a dot');
|
|
return;
|
|
}
|
|
let folder: TAbstractFile | null;
|
|
const folderPath = getFolderPathFromString(file.path);
|
|
if (folderPath === '') {
|
|
folder = this.plugin.app.vault.getAbstractFileByPath(text);
|
|
if (folder instanceof TFolder) {
|
|
new Notice('Folder note already exists');
|
|
return false;
|
|
} else {
|
|
this.plugin.app.vault.createFolder(text);
|
|
createFolderNote(this.plugin, text, false);
|
|
}
|
|
} else {
|
|
folder = this.plugin.app.vault.getAbstractFileByPath(folderPath + '/' + text);
|
|
if (folder instanceof TFolder) {
|
|
new Notice('Folder note already exists');
|
|
return false;
|
|
}
|
|
if (this.plugin.settings.storageLocation === 'parentFolder') {
|
|
if (this.app.vault.getAbstractFileByPath(folderPath + '/' + text + this.plugin.settings.folderNoteType)) {
|
|
new Notice('File already exists');
|
|
return false;
|
|
}
|
|
}
|
|
this.plugin.app.vault.createFolder(folderPath + '/' + text);
|
|
createFolderNote(this.plugin, folderPath + '/' + text, false);
|
|
}
|
|
const fileName = this.plugin.settings.folderNoteName.replace('{{folder_name}}', text);
|
|
if (fileName !== text) {
|
|
editor.replaceSelection(`[[${fileName}]]`);
|
|
} else {
|
|
editor.replaceSelection(`[[${fileName}|${text}]]`);
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
});
|
|
}
|
|
|
|
fileCommands() {
|
|
this.plugin.registerEvent(this.app.workspace.on('file-menu', (menu: Menu, file: TAbstractFile) => {
|
|
let folder: TAbstractFile | TFolder | null = file.parent;
|
|
if (file instanceof TFile) {
|
|
if (this.plugin.settings.storageLocation === 'insideFolder') {
|
|
folder = file.parent;
|
|
} else {
|
|
const fileName = extractFolderName(this.plugin.settings.folderNoteName, file.basename);
|
|
if (fileName) {
|
|
if (file.parent?.path === '' || file.parent?.path === '/') {
|
|
folder = this.plugin.app.vault.getAbstractFileByPath(fileName);
|
|
} else {
|
|
folder = this.plugin.app.vault.getAbstractFileByPath(file.parent?.path + '/' + fileName);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (folder instanceof TFolder) {
|
|
const folderNote = getFolderNote(this.plugin, folder.path);
|
|
const excludedFolder = getExcludedFolder(this.plugin, folder.path, true);
|
|
if (folderNote?.path === file.path && !excludedFolder?.detached) { return; }
|
|
} else if (file.parent instanceof TFolder) {
|
|
folder = file.parent;
|
|
}
|
|
}
|
|
|
|
menu.addItem(async (item) => {
|
|
if (Platform.isDesktop && !Platform.isTablet && this.plugin.settings.useSubmenus) {
|
|
item
|
|
.setTitle('Folder Note Commands')
|
|
.setIcon('folder-edit');
|
|
}
|
|
let subMenu: Menu;
|
|
if (!Platform.isDesktopApp || !Platform.isDesktop || Platform.isTablet || !this.plugin.settings.useSubmenus) {
|
|
subMenu = menu;
|
|
item.setDisabled(true);
|
|
} else {
|
|
// @ts-ignore
|
|
subMenu = item.setSubmenu() as Menu;
|
|
}
|
|
if (file instanceof TFile) {
|
|
// @ts-ignore
|
|
subMenu.addItem((item) => {
|
|
item.setTitle('Create folder note')
|
|
.setIcon('edit')
|
|
.onClick(async () => {
|
|
if (!folder) return;
|
|
let newPath = folder.path + '/' + file.basename;
|
|
if (folder.path === '' || folder.path === '/') {
|
|
newPath = file.basename;
|
|
}
|
|
if (this.plugin.app.vault.getAbstractFileByPath(newPath)) {
|
|
return new Notice('Folder already exists');
|
|
}
|
|
const automaticallyCreateFolderNote = this.plugin.settings.autoCreate;
|
|
this.plugin.settings.autoCreate = false;
|
|
this.plugin.saveSettings();
|
|
await this.plugin.app.vault.createFolder(newPath);
|
|
const newFolder = this.plugin.app.vault.getAbstractFileByPath(newPath);
|
|
if (!(newFolder instanceof TFolder)) return;
|
|
await createFolderNote(this.plugin, newFolder.path, true, '.' + file.extension, false, file);
|
|
this.plugin.settings.autoCreate = automaticallyCreateFolderNote;
|
|
this.plugin.saveSettings();
|
|
});
|
|
});
|
|
if (getFolderPathFromString(file.path) === '') return;
|
|
if (!(folder instanceof TFolder)) return;
|
|
if (folder.path === '' || folder.path === '/') return;
|
|
subMenu.addItem((item) => {
|
|
item.setTitle(`Turn into folder note for ${folder?.name}`)
|
|
.setIcon('edit')
|
|
.onClick(() => {
|
|
if (!folder || !(folder instanceof TFolder)) return;
|
|
const folderNote = getFolderNote(this.plugin, folder.path);
|
|
turnIntoFolderNote(this.plugin, file, folder, folderNote);
|
|
});
|
|
});
|
|
}
|
|
if (!(file instanceof TFolder)) return;
|
|
const excludedFolder = getExcludedFolder(this.plugin, file.path, false);
|
|
const detachedExcludedFolder = getDetachedFolder(this.plugin, file.path);
|
|
if (excludedFolder && !excludedFolder.hideInSettings) {
|
|
// I'm not sure if I'm ever going to add this because of the possibility that a folder got more than one excluded
|
|
// subMenu.addItem((item) => {
|
|
// item.setTitle('Manage excluded folder')
|
|
// .setIcon('settings-2')
|
|
// .onClick(() => {
|
|
// console.log('excludedFolder', excludedFolder)
|
|
// console.log('2', getExcludedFolder(this.plugin, file.path, false))
|
|
// if (excludedFolder instanceof ExcludedFolder) {
|
|
// new ExcludedFolderSettings(this.plugin.app, this.plugin, excludedFolder).open();
|
|
// } else if (excludedFolder instanceof ExcludePattern) {
|
|
// new PatternSettings(this.plugin.app, this.plugin, excludedFolder).open();
|
|
// }
|
|
// })
|
|
// })
|
|
subMenu.addItem((item) => {
|
|
item.setTitle('Remove folder from excluded folders')
|
|
.setIcon('trash')
|
|
.onClick(() => {
|
|
this.plugin.settings.excludeFolders = this.plugin.settings.excludeFolders.filter(
|
|
(folder) => (folder.path !== file.path) || folder.detached);
|
|
this.plugin.saveSettings(true);
|
|
new Notice('Successfully removed folder from excluded folders');
|
|
});
|
|
});
|
|
return;
|
|
}
|
|
if (detachedExcludedFolder) {
|
|
subMenu.addItem((item) => {
|
|
item.setTitle('Remove folder from detached folders')
|
|
.setIcon('trash')
|
|
.onClick(() => {
|
|
deleteExcludedFolder(this.plugin, detachedExcludedFolder);
|
|
});
|
|
});
|
|
}
|
|
if (detachedExcludedFolder) { return; }
|
|
subMenu.addItem((item) => {
|
|
item.setTitle('Exclude folder from folder notes')
|
|
.setIcon('x-circle')
|
|
.onClick(() => {
|
|
const excludedFolder = new ExcludedFolder(file.path, this.plugin.settings.excludeFolders.length, undefined, this.plugin);
|
|
this.plugin.settings.excludeFolders.push(excludedFolder);
|
|
this.plugin.saveSettings(true);
|
|
new Notice('Successfully excluded folder from folder notes');
|
|
});
|
|
});
|
|
if (!(file instanceof TFolder)) return;
|
|
const folderNote = getFolderNote(this.plugin, file.path);
|
|
if (folderNote instanceof TFile && !detachedExcludedFolder) {
|
|
subMenu.addItem((item) => {
|
|
item.setTitle('Delete folder note')
|
|
.setIcon('trash')
|
|
.onClick(() => {
|
|
deleteFolderNote(this.plugin, folderNote, true);
|
|
});
|
|
});
|
|
|
|
subMenu.addItem((item) => {
|
|
item.setTitle('Open folder note')
|
|
.setIcon('chevron-right-square')
|
|
.onClick(() => {
|
|
openFolderNote(this.plugin, folderNote);
|
|
});
|
|
});
|
|
|
|
subMenu.addItem((item) => {
|
|
item.setTitle('Detach folder note')
|
|
.setIcon('unlink')
|
|
.onClick(() => {
|
|
detachFolderNote(this.plugin, folderNote);
|
|
});
|
|
});
|
|
|
|
subMenu.addItem((item) => {
|
|
item.setTitle('Copy Obsidian URL')
|
|
.setIcon('link')
|
|
.onClick(() => {
|
|
// @ts-ignore
|
|
this.app.copyObsidianUrl(folderNote);
|
|
});
|
|
});
|
|
|
|
if (this.plugin.settings.hideFolderNote) {
|
|
if (excludedFolder?.showFolderNote) {
|
|
subMenu.addItem((item) => {
|
|
item.setTitle('Hide folder note in explorer')
|
|
.setIcon('eye-off')
|
|
.onClick(() => {
|
|
hideFolderNoteInFileExplorer(file.path, this.plugin);
|
|
});
|
|
});
|
|
} else {
|
|
subMenu.addItem((item) => {
|
|
item.setTitle('Show folder note in explorer')
|
|
.setIcon('eye')
|
|
.onClick(() => {
|
|
showFolderNoteInFileExplorer(file.path, this.plugin);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
} else {
|
|
subMenu.addItem((item) => {
|
|
item.setTitle('Create markdown folder note')
|
|
.setIcon('edit')
|
|
.onClick(() => {
|
|
createFolderNote(this.plugin, file.path, true, '.md');
|
|
});
|
|
});
|
|
|
|
this.plugin.settings.supportedFileTypes.forEach((fileType) => {
|
|
if (fileType === 'md') return;
|
|
subMenu.addItem((item) => {
|
|
item.setTitle(`Create ${fileType} folder note`)
|
|
.setIcon('edit')
|
|
.onClick(() => {
|
|
createFolderNote(this.plugin, file.path, true, '.' + fileType);
|
|
});
|
|
});
|
|
});
|
|
}
|
|
});
|
|
}));
|
|
}
|
|
|
|
editorCommands() {
|
|
this.plugin.registerEvent(this.plugin.app.workspace.on('editor-menu', (menu: Menu, editor: Editor, view: MarkdownView) => {
|
|
const text = editor.getSelection().trim();
|
|
if (!text || text.trim() === '') return;
|
|
menu.addItem((item) => {
|
|
item.setTitle('Create folder note')
|
|
.setIcon('edit')
|
|
.onClick(() => {
|
|
const file = view.file;
|
|
if (!(file instanceof TFile)) return;
|
|
const blacklist = ['*', '\\', '"', '/', '<', '>', '?', '|', ':'];
|
|
for (const char of blacklist) {
|
|
if (text.includes(char)) {
|
|
new Notice('File name cannot contain any of the following characters: * " \\ / < > : | ?');
|
|
return;
|
|
}
|
|
}
|
|
if (text.endsWith('.')) {
|
|
new Notice('File name cannot end with a dot');
|
|
return;
|
|
}
|
|
let folder: TAbstractFile | null;
|
|
const folderPath = getFolderPathFromString(file.path);
|
|
const fileName = this.plugin.settings.folderNoteName.replace('{{folder_name}}', text);
|
|
if (folderPath === '') {
|
|
folder = this.plugin.app.vault.getAbstractFileByPath(text);
|
|
if (folder instanceof TFolder) {
|
|
return new Notice('Folder note already exists');
|
|
} else {
|
|
this.plugin.app.vault.createFolder(text);
|
|
createFolderNote(this.plugin, text, false);
|
|
}
|
|
} else {
|
|
folder = this.plugin.app.vault.getAbstractFileByPath(folderPath + '/' + text);
|
|
if (folder instanceof TFolder) {
|
|
return new Notice('Folder note already exists');
|
|
}
|
|
if (this.plugin.settings.storageLocation === 'parentFolder') {
|
|
if (this.app.vault.getAbstractFileByPath(folderPath + '/' + fileName + this.plugin.settings.folderNoteType)) {
|
|
return new Notice('File already exists');
|
|
}
|
|
}
|
|
this.plugin.app.vault.createFolder(folderPath + '/' + text);
|
|
createFolderNote(this.plugin, folderPath + '/' + text, false);
|
|
}
|
|
if (fileName !== text) {
|
|
editor.replaceSelection(`[[${fileName}]]`);
|
|
} else {
|
|
editor.replaceSelection(`[[${fileName}|${text}]]`);
|
|
}
|
|
});
|
|
});
|
|
}));
|
|
}
|
|
}
|