Example View working
This commit is contained in:
parent
c228a70223
commit
b2d4fecec3
6 changed files with 111 additions and 116 deletions
132
main.ts
132
main.ts
|
|
@ -1,112 +1,52 @@
|
||||||
import { App, Modal, Notice, Plugin, PluginSettingTab, Setting } from 'obsidian';
|
import { Plugin } from "obsidian";
|
||||||
|
import { ExampleSettingsTab } from "./settings";
|
||||||
|
import { ExampleView, VIEW_TYPE_EXAMPLE} from "./view"
|
||||||
|
|
||||||
interface MyPluginSettings {
|
interface ExamplePluginSettings {
|
||||||
mySetting: string;
|
dateFormat: string
|
||||||
}
|
}
|
||||||
|
const DEFAULT_SETTINGS: Partial<ExamplePluginSettings> = {
|
||||||
const DEFAULT_SETTINGS: MyPluginSettings = {
|
dateFormat: "YYYY-MM-DD"
|
||||||
mySetting: 'default'
|
|
||||||
}
|
}
|
||||||
|
export default class ExamplePlugin extends Plugin {
|
||||||
export default class MyPlugin extends Plugin {
|
settings: ExamplePluginSettings;
|
||||||
settings: MyPluginSettings;
|
view: ExampleView;
|
||||||
|
|
||||||
async onload() {
|
async onload() {
|
||||||
console.log('loading plugin');
|
|
||||||
|
|
||||||
await this.loadSettings();
|
await this.loadSettings();
|
||||||
|
this.addSettingTab(new ExampleSettingsTab(this.app, this));
|
||||||
this.addRibbonIcon('dice', 'Sample Plugin', () => {
|
this.registerView(
|
||||||
new Notice('This is a notice!');
|
VIEW_TYPE_EXAMPLE,
|
||||||
|
(leaf) => (this.view = new ExampleView(leaf))
|
||||||
|
);
|
||||||
|
this.addRibbonIcon("dice", "Activate view", () => { //activate view
|
||||||
|
this.activateView();
|
||||||
});
|
});
|
||||||
|
|
||||||
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));
|
|
||||||
|
|
||||||
this.registerCodeMirror((cm: CodeMirror.Editor) => {
|
|
||||||
console.log('codemirror', cm);
|
|
||||||
});
|
|
||||||
|
|
||||||
this.registerDomEvent(document, 'click', (evt: MouseEvent) => {
|
|
||||||
console.log('click', evt);
|
|
||||||
});
|
|
||||||
|
|
||||||
this.registerInterval(window.setInterval(() => console.log('setInterval'), 5 * 60 * 1000));
|
|
||||||
}
|
|
||||||
|
|
||||||
onunload() {
|
|
||||||
console.log('unloading plugin');
|
|
||||||
}
|
|
||||||
|
|
||||||
async loadSettings() {
|
async loadSettings() {
|
||||||
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
|
this.settings = Object.assign(DEFAULT_SETTINGS, await this.loadData())
|
||||||
}
|
}
|
||||||
|
|
||||||
async saveSettings() {
|
async saveSettings() {
|
||||||
await this.saveData(this.settings);
|
await this.saveData(this.settings);
|
||||||
}
|
}
|
||||||
|
async onunload() {
|
||||||
|
await this.view.onClose();
|
||||||
|
|
||||||
|
this.app.workspace
|
||||||
|
.getLeavesOfType(VIEW_TYPE_EXAMPLE)
|
||||||
|
.forEach((leaf) => leaf.detach());
|
||||||
|
}
|
||||||
|
async activateView() {
|
||||||
|
this.app.workspace.detachLeavesOfType(VIEW_TYPE_EXAMPLE);
|
||||||
|
|
||||||
|
await this.app.workspace.getRightLeaf(false).setViewState({
|
||||||
|
type: VIEW_TYPE_EXAMPLE,
|
||||||
|
active: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
this.app.workspace.revealLeaf(
|
||||||
|
this.app.workspace.getLeavesOfType(VIEW_TYPE_EXAMPLE)[0]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
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 {
|
|
||||||
plugin: MyPlugin;
|
|
||||||
|
|
||||||
constructor(app: App, plugin: MyPlugin) {
|
|
||||||
super(app, plugin);
|
|
||||||
this.plugin = plugin;
|
|
||||||
}
|
|
||||||
|
|
||||||
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(async (value) => {
|
|
||||||
console.log('Secret: ' + value);
|
|
||||||
this.plugin.settings.mySetting = value;
|
|
||||||
await this.plugin.saveSettings();
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
"id": "obsidian-sample-plugin",
|
"id": "test-plugin",
|
||||||
"name": "Sample Plugin",
|
"name": "Test Plugin",
|
||||||
"version": "1.0.1",
|
"version": "0.0.1",
|
||||||
"minAppVersion": "0.9.12",
|
"minAppVersion": "0.9.12",
|
||||||
"description": "This is a sample plugin for Obsidian. This plugin demonstrates some of the capabilities of the Obsidian API.",
|
"description": "This is a sample plugin for Obsidian. This plugin demonstrates some of the capabilities of the Obsidian API.",
|
||||||
"author": "Obsidian",
|
"author": "Leoh",
|
||||||
"authorUrl": "https://obsidian.md/about",
|
"authorUrl": "",
|
||||||
"isDesktopOnly": false
|
"isDesktopOnly": false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "obsidian-sample-plugin",
|
"name": "test-plugin",
|
||||||
"version": "0.12.0",
|
"version": "0.12.0",
|
||||||
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
|
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
|
|
|
||||||
30
settings.ts
Normal file
30
settings.ts
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
import ExamplePlugin from "main";
|
||||||
|
import { App, PluginSettingTab, Setting } from "obsidian";
|
||||||
|
|
||||||
|
export class ExampleSettingsTab extends PluginSettingTab {
|
||||||
|
plugin: ExamplePlugin;
|
||||||
|
|
||||||
|
constructor(app: App, plugin: ExamplePlugin) {
|
||||||
|
super(app, plugin)
|
||||||
|
this.plugin = plugin
|
||||||
|
}
|
||||||
|
|
||||||
|
display(): void {
|
||||||
|
let { containerEl } = this;
|
||||||
|
containerEl.empty();
|
||||||
|
|
||||||
|
new Setting(containerEl)
|
||||||
|
.setName("Date format")
|
||||||
|
.setDesc("Default date format")
|
||||||
|
.addText((text) =>
|
||||||
|
|
||||||
|
text
|
||||||
|
.setPlaceholder("MMMM dd, yyyy")
|
||||||
|
.setValue(this.plugin.settings.dateFormat)
|
||||||
|
.onChange(async (value) => {
|
||||||
|
this.plugin.settings.dateFormat = value;
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,4 +1,2 @@
|
||||||
/* Sets all the text color to red! */
|
/* Empty. change later */
|
||||||
body {
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
|
|
|
||||||
27
view.ts
Normal file
27
view.ts
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
import { ItemView,WorkspaceLeaf } from "obsidian";
|
||||||
|
|
||||||
|
export const VIEW_TYPE_EXAMPLE = "example-view"
|
||||||
|
|
||||||
|
export class ExampleView extends ItemView {
|
||||||
|
constructor(leaf: WorkspaceLeaf) {
|
||||||
|
super(leaf)
|
||||||
|
}
|
||||||
|
|
||||||
|
getViewType() {
|
||||||
|
return VIEW_TYPE_EXAMPLE
|
||||||
|
}
|
||||||
|
|
||||||
|
getDisplayText() {
|
||||||
|
return "Example View"
|
||||||
|
}
|
||||||
|
|
||||||
|
async onOpen() {
|
||||||
|
const container = this.containerEl.children[1];
|
||||||
|
container.empty()
|
||||||
|
container.createEl("h4", {text: "Example View"});
|
||||||
|
|
||||||
|
}
|
||||||
|
async onClose(){
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue