noteshare.space/main.ts

96 lines
2.3 KiB
TypeScript
Raw Normal View History

2022-06-18 22:51:06 +03:00
import { App, MarkdownView, Plugin, PluginSettingTab, Setting } from "obsidian";
import { encryptMarkdown } from "src/encryption";
2022-06-18 17:51:45 +03:00
// Remember to rename these classes and interfaces!
interface MyPluginSettings {
mySetting: string;
}
const DEFAULT_SETTINGS: MyPluginSettings = {
2022-06-18 22:51:06 +03:00
mySetting: "default",
};
2022-06-18 17:51:45 +03:00
export default class MyPlugin extends Plugin {
settings: MyPluginSettings;
async onload() {
await this.loadSettings();
// This adds a complex command that can check whether the current state of the app allows execution of the command
this.addCommand({
2022-06-18 22:51:06 +03:00
id: "open-sample-modal-complex",
name: "Open sample modal (complex)",
2022-06-18 17:51:45 +03:00
checkCallback: (checking: boolean) => {
// Conditions to check
2022-06-18 22:51:06 +03:00
const markdownView =
this.app.workspace.getActiveViewOfType(MarkdownView);
2022-06-18 17:51:45 +03:00
if (markdownView) {
// If checking is true, we're simply "checking" if the command can be run.
// If checking is false, then we want to actually perform the operation.
if (!checking) {
2022-06-18 22:51:06 +03:00
this.shareNote(markdownView);
2022-06-18 17:51:45 +03:00
}
// This command will only show up in Command Palette when the check function returns true
return true;
}
2022-06-18 22:51:06 +03:00
},
2022-06-18 17:51:45 +03:00
});
// This adds a settings tab so the user can configure various aspects of the plugin
this.addSettingTab(new SampleSettingTab(this.app, this));
}
2022-06-18 22:51:06 +03:00
// ENCRYPT AND SHARE MD NOTE
private shareNote(mdView: MarkdownView) {
const cryptData = encryptMarkdown(mdView);
console.log(cryptData);
2022-06-18 17:51:45 +03:00
}
2022-06-18 22:51:06 +03:00
onunload() {}
2022-06-18 17:51:45 +03:00
async loadSettings() {
2022-06-18 22:51:06 +03:00
this.settings = Object.assign(
{},
DEFAULT_SETTINGS,
await this.loadData()
);
2022-06-18 17:51:45 +03:00
}
async saveSettings() {
await this.saveData(this.settings);
}
}
class SampleSettingTab extends PluginSettingTab {
plugin: MyPlugin;
constructor(app: App, plugin: MyPlugin) {
super(app, plugin);
this.plugin = plugin;
}
display(): void {
2022-06-18 22:51:06 +03:00
const { containerEl } = this;
2022-06-18 17:51:45 +03:00
containerEl.empty();
2022-06-18 22:51:06 +03:00
containerEl.createEl("h2", { text: "Settings for my awesome plugin." });
2022-06-18 17:51:45 +03:00
new Setting(containerEl)
2022-06-18 22:51:06 +03:00
.setName("Setting #1")
.setDesc("It's a secret")
.addText((text) =>
text
.setPlaceholder("Enter your secret")
.setValue(this.plugin.settings.mySetting)
.onChange(async (value) => {
console.log("Secret: " + value);
this.plugin.settings.mySetting = value;
await this.plugin.saveSettings();
})
);
2022-06-18 17:51:45 +03:00
}
}