-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from saberzero1/custom-filepath
Custom File Path Feature Addition
- Loading branch information
Showing
7 changed files
with
318 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
package-lock.json | ||
main.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import esbuild from "esbuild"; | ||
import process from "process"; | ||
import builtins from "builtin-modules"; | ||
|
||
const banner = | ||
`/* | ||
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD | ||
if you want to view the source, please visit the github repository of this plugin | ||
*/ | ||
`; | ||
|
||
const prod = (process.argv[2] === "production"); | ||
|
||
const context = await esbuild.context({ | ||
banner: { | ||
js: banner, | ||
}, | ||
entryPoints: ["main.ts"], | ||
bundle: true, | ||
external: [ | ||
"obsidian", | ||
"electron", | ||
"@codemirror/autocomplete", | ||
"@codemirror/collab", | ||
"@codemirror/commands", | ||
"@codemirror/language", | ||
"@codemirror/lint", | ||
"@codemirror/search", | ||
"@codemirror/state", | ||
"@codemirror/view", | ||
"@lezer/common", | ||
"@lezer/highlight", | ||
"@lezer/lr", | ||
...builtins], | ||
format: "cjs", | ||
target: "es2018", | ||
logLevel: "info", | ||
sourcemap: prod ? false : "inline", | ||
treeShaking: true, | ||
outfile: "main.js", | ||
}); | ||
|
||
if (prod) { | ||
await context.rebuild(); | ||
process.exit(0); | ||
} else { | ||
await context.watch(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Credits go to Liam's Periodic Notes Plugin: https://github.com/liamcain/obsidian-periodic-notes | ||
|
||
import { TAbstractFile, TFolder } from "obsidian"; | ||
import { TextInputSuggest } from "./suggest"; | ||
|
||
export class FolderSuggest extends TextInputSuggest<TFolder> { | ||
getSuggestions(inputStr: string): TFolder[] { | ||
const abstractFiles = app.vault.getAllLoadedFiles(); | ||
const folders: TFolder[] = []; | ||
const lowerCaseInputStr = inputStr.toLowerCase(); | ||
|
||
abstractFiles.forEach((folder: TAbstractFile) => { | ||
if ( | ||
folder instanceof TFolder && | ||
folder.path.toLowerCase().contains(lowerCaseInputStr) | ||
) { | ||
folders.push(folder); | ||
} | ||
}); | ||
|
||
return folders; | ||
} | ||
|
||
renderSuggestion(file: TFolder, el: HTMLElement): void { | ||
el.setText(file.path); | ||
} | ||
|
||
selectSuggestion(file: TFolder): void { | ||
this.inputEl.value = file.path; | ||
this.inputEl.trigger("input"); | ||
this.close(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,200 @@ | ||
// Credits go to Liam's Periodic Notes Plugin: https://github.com/liamcain/obsidian-periodic-notes | ||
|
||
import { ISuggestOwner, Scope } from "obsidian"; | ||
import { createPopper, Instance as PopperInstance } from "@popperjs/core"; | ||
|
||
const wrapAround = (value: number, size: number): number => { | ||
return ((value % size) + size) % size; | ||
}; | ||
|
||
class Suggest<T> { | ||
private owner: ISuggestOwner<T>; | ||
private values: T[]; | ||
private suggestions: HTMLDivElement[]; | ||
private selectedItem: number; | ||
private containerEl: HTMLElement; | ||
|
||
constructor( | ||
owner: ISuggestOwner<T>, | ||
containerEl: HTMLElement, | ||
scope: Scope | ||
) { | ||
this.owner = owner; | ||
this.containerEl = containerEl; | ||
|
||
containerEl.on( | ||
"click", | ||
".suggestion-item", | ||
this.onSuggestionClick.bind(this) | ||
); | ||
containerEl.on( | ||
"mousemove", | ||
".suggestion-item", | ||
this.onSuggestionMouseover.bind(this) | ||
); | ||
|
||
scope.register([], "ArrowUp", (event) => { | ||
if (!event.isComposing) { | ||
this.setSelectedItem(this.selectedItem - 1, true); | ||
return false; | ||
} | ||
}); | ||
|
||
scope.register([], "ArrowDown", (event) => { | ||
if (!event.isComposing) { | ||
this.setSelectedItem(this.selectedItem + 1, true); | ||
return false; | ||
} | ||
}); | ||
|
||
scope.register([], "Enter", (event) => { | ||
if (!event.isComposing) { | ||
this.useSelectedItem(event); | ||
return false; | ||
} | ||
}); | ||
} | ||
|
||
onSuggestionClick(event: MouseEvent, el: HTMLDivElement): void { | ||
event.preventDefault(); | ||
|
||
const item = this.suggestions.indexOf(el); | ||
this.setSelectedItem(item, false); | ||
this.useSelectedItem(event); | ||
} | ||
|
||
onSuggestionMouseover(_event: MouseEvent, el: HTMLDivElement): void { | ||
const item = this.suggestions.indexOf(el); | ||
this.setSelectedItem(item, false); | ||
} | ||
|
||
setSuggestions(values: T[]) { | ||
this.containerEl.empty(); | ||
const suggestionEls: HTMLDivElement[] = []; | ||
|
||
values.forEach((value) => { | ||
const suggestionEl = this.containerEl.createDiv("suggestion-item"); | ||
this.owner.renderSuggestion(value, suggestionEl); | ||
suggestionEls.push(suggestionEl); | ||
}); | ||
|
||
this.values = values; | ||
this.suggestions = suggestionEls; | ||
this.setSelectedItem(0, false); | ||
} | ||
|
||
useSelectedItem(event: MouseEvent | KeyboardEvent) { | ||
const currentValue = this.values[this.selectedItem]; | ||
if (currentValue) { | ||
this.owner.selectSuggestion(currentValue, event); | ||
} | ||
} | ||
|
||
setSelectedItem(selectedIndex: number, scrollIntoView: boolean) { | ||
const normalizedIndex = wrapAround( | ||
selectedIndex, | ||
this.suggestions.length | ||
); | ||
const prevSelectedSuggestion = this.suggestions[this.selectedItem]; | ||
const selectedSuggestion = this.suggestions[normalizedIndex]; | ||
|
||
prevSelectedSuggestion?.removeClass("is-selected"); | ||
selectedSuggestion?.addClass("is-selected"); | ||
|
||
this.selectedItem = normalizedIndex; | ||
|
||
if (scrollIntoView) { | ||
selectedSuggestion.scrollIntoView(false); | ||
} | ||
} | ||
} | ||
|
||
export abstract class TextInputSuggest<T> implements ISuggestOwner<T> { | ||
protected inputEl: HTMLInputElement | HTMLTextAreaElement; | ||
|
||
private popper: PopperInstance; | ||
private scope: Scope; | ||
private suggestEl: HTMLElement; | ||
private suggest: Suggest<T>; | ||
|
||
constructor(inputEl: HTMLInputElement | HTMLTextAreaElement) { | ||
this.inputEl = inputEl; | ||
this.scope = new Scope(); | ||
|
||
this.suggestEl = createDiv("suggestion-container"); | ||
const suggestion = this.suggestEl.createDiv("suggestion"); | ||
this.suggest = new Suggest(this, suggestion, this.scope); | ||
|
||
this.scope.register([], "Escape", this.close.bind(this)); | ||
|
||
this.inputEl.addEventListener("input", this.onInputChanged.bind(this)); | ||
this.inputEl.addEventListener("focus", this.onInputChanged.bind(this)); | ||
this.inputEl.addEventListener("blur", this.close.bind(this)); | ||
this.suggestEl.on( | ||
"mousedown", | ||
".suggestion-container", | ||
(event: MouseEvent) => { | ||
event.preventDefault(); | ||
} | ||
); | ||
} | ||
|
||
onInputChanged(): void { | ||
const inputStr = this.inputEl.value; | ||
const suggestions = this.getSuggestions(inputStr); | ||
|
||
if (!suggestions) { | ||
this.close(); | ||
return; | ||
} | ||
|
||
if (suggestions.length > 0) { | ||
this.suggest.setSuggestions(suggestions); | ||
this.open(app.dom.appContainerEl, this.inputEl); | ||
} else { | ||
this.close(); | ||
} | ||
} | ||
|
||
open(container: HTMLElement, inputEl: HTMLElement): void { | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
app.keymap.pushScope(this.scope); | ||
|
||
container.appendChild(this.suggestEl); | ||
this.popper = createPopper(inputEl, this.suggestEl, { | ||
placement: "bottom-start", | ||
modifiers: [ | ||
{ | ||
name: "sameWidth", | ||
enabled: true, | ||
fn: ({ state, instance }) => { | ||
// Note: positioning needs to be calculated twice - | ||
// first pass - positioning it according to the width of the popper | ||
// second pass - position it with the width bound to the reference element | ||
// we need to early exit to avoid an infinite loop | ||
const targetWidth = `${state.rects.reference.width}px`; | ||
if (state.styles.popper.width === targetWidth) { | ||
return; | ||
} | ||
state.styles.popper.width = targetWidth; | ||
instance.update(); | ||
}, | ||
phase: "beforeWrite", | ||
requires: ["computeStyles"], | ||
}, | ||
], | ||
}); | ||
} | ||
|
||
close(): void { | ||
app.keymap.popScope(this.scope); | ||
|
||
this.suggest.setSuggestions([]); | ||
if (this.popper) this.popper.destroy(); | ||
this.suggestEl.detach(); | ||
} | ||
|
||
abstract getSuggestions(inputStr: string): T[]; | ||
abstract renderSuggestion(item: T, el: HTMLElement): void; | ||
abstract selectSuggestion(item: T): void; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
declare module "obsidian" { | ||
interface App { | ||
dom: { | ||
appContainerEl: HTMLElement; | ||
}; | ||
} | ||
} | ||
|
||
export {}; |