import { App, CustomPlugin, Modal, Notice, PluginSettingTab, Setting } from 'obsidian'; export default class MyPlugin extends CustomPlugin { onInit() { } onload() { console.log('loading plugin'); this.addRibbonIcon('dice', 'Sample Plugin', () => { new Notice('This is a notice!'); }); this.addStatusBarItem().setText('Status Bar Text'); this.addCommand({ id: 'open-sample-modal', name: 'Open Sample Modal', // callback: () => { // console.log('Simple Callback'); // }, checkCallback: (checking: boolean) => { let leaf = this.app.workspace.activeLeaf; if (leaf) { if (!checking) { new SampleModal(this.app).open(); } return true; } return false; } }); this.addSettingTab(new SampleSettingTab(this.app, this)); } onunload() { console.log('unloading plugin'); } } class SampleModal extends Modal { constructor(app: App) { super(app); } onOpen() { let {contentEl} = this; contentEl.setText('Woah!'); } onClose() { let {contentEl} = this; contentEl.empty(); } } class SampleSettingTab extends PluginSettingTab { display(): void { let {containerEl} = this; containerEl.empty(); containerEl.createEl('h2', {text: 'Settings for my awesome plugin.'}); new Setting(containerEl) .setName('Setting #1') .setDesc('It\'s a secret') .addText(text => text.setPlaceholder('Enter your secret') .setValue('') .onChange((value) => { console.log('Secret: ' + value); })); } }