mirror of
https://github.com/lostpaul/obsidian-folder-notes.git
synced 2026-07-22 07:40:24 +00:00
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import { FileExplorerWorkspaceLeaf } from "src/globals";
|
|
import FolderNotesPlugin from "src/main";
|
|
|
|
export function getFileNameFromPathString(path: string): string {
|
|
return path.substring(path.lastIndexOf('/') >= 0 ? path.lastIndexOf('/') + 1 : 0);
|
|
}
|
|
|
|
export function getFolderNameFromPathString(path: string): string {
|
|
if (path.endsWith('.md') || path.endsWith('.canvas')) {
|
|
return path.split('/').slice(-2)[0];
|
|
} else {
|
|
return path.split('/').slice(-1)[0];
|
|
}
|
|
}
|
|
|
|
export function removeExtension(name: string): string {
|
|
return name.replace(/\.[^/.]+$/, '');
|
|
}
|
|
|
|
export function getExtensionFromPathString(path: string): string {
|
|
return path.slice(path.lastIndexOf('.') >= 0 ? path.lastIndexOf('.') : 0);
|
|
}
|
|
|
|
export function getFolderPathFromString(path: string): string {
|
|
const subString = path.lastIndexOf('/') >= 0 ? path.lastIndexOf('/') : 0;
|
|
const folderPath = path.substring(0, subString);
|
|
if (folderPath === '') {
|
|
return '/';
|
|
} else {
|
|
return folderPath;
|
|
}
|
|
}
|
|
|
|
export function getParentFolderPath(path: string): string {
|
|
return this.getFolderPathFromString(this.getFolderPathFromString(path));
|
|
}
|
|
|
|
export function getFileExplorer(plugin: FolderNotesPlugin) {
|
|
return plugin.app.workspace.getLeavesOfType('file-explorer')[0] as any as FileExplorerWorkspaceLeaf;
|
|
}
|
|
|
|
export function getFileExplorerView() {
|
|
return this.getFileExplorer().view;
|
|
}
|