76 lines
1.9 KiB
TypeScript
76 lines
1.9 KiB
TypeScript
import { Plugin, TFile } from 'obsidian'
|
|
import {
|
|
addNoteToReindex,
|
|
addToIndex,
|
|
initGlobalSearchIndex,
|
|
removeFromIndex,
|
|
} from './search'
|
|
import { OmnisearchInFileModal, OmnisearchVaultModal } from './modals'
|
|
import { loadSettings, SettingsTab } from './settings'
|
|
import { eventBus } from './globals'
|
|
|
|
// let mainWindow: { on: any; off: any } | null = null
|
|
// try {
|
|
// mainWindow = require('electron').remote.getCurrentWindow()
|
|
// }
|
|
// catch (e) {
|
|
// console.log("Can't load electron, mobile platform")
|
|
// }
|
|
|
|
export default class OmnisearchPlugin extends Plugin {
|
|
async onload(): Promise<void> {
|
|
await loadSettings(this)
|
|
this.addSettingTab(new SettingsTab(this))
|
|
eventBus.disable('vault')
|
|
eventBus.disable('infile')
|
|
|
|
// Commands to display Omnisearch modals
|
|
this.addCommand({
|
|
id: 'show-modal',
|
|
name: 'Vault search',
|
|
callback: () => {
|
|
new OmnisearchVaultModal(app).open()
|
|
},
|
|
})
|
|
|
|
this.addCommand({
|
|
id: 'show-modal-infile',
|
|
name: 'In-file search',
|
|
editorCallback: (_editor, view) => {
|
|
new OmnisearchInFileModal(app, view.file).open()
|
|
},
|
|
})
|
|
|
|
app.workspace.onLayoutReady(async () => {
|
|
// Listeners to keep the search index up-to-date
|
|
this.registerEvent(
|
|
this.app.vault.on('create', file => {
|
|
addToIndex(file)
|
|
}),
|
|
)
|
|
this.registerEvent(
|
|
this.app.vault.on('delete', file => {
|
|
removeFromIndex(file.path)
|
|
}),
|
|
)
|
|
this.registerEvent(
|
|
this.app.vault.on('modify', async file => {
|
|
addNoteToReindex(file)
|
|
}),
|
|
)
|
|
this.registerEvent(
|
|
this.app.vault.on('rename', async (file, oldPath) => {
|
|
if (file instanceof TFile && file.path.endsWith('.md')) {
|
|
removeFromIndex(oldPath)
|
|
await addToIndex(file)
|
|
}
|
|
}),
|
|
)
|
|
|
|
await initGlobalSearchIndex()
|
|
})
|
|
}
|
|
|
|
onunload(): void {}
|
|
}
|