-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
71 lines (65 loc) · 1.58 KB
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { App, Editor, Plugin } from "obsidian";
import { WeeklySummaryPanel } from "./components/WeeklySummaryPanel";
import { TextAnalysisPanel } from "./components/TextAnalysisPanel";
import { AskAIPanel } from "./components/AskAIPanel";
import { DataviewJSDebugPanel } from "./components/DataviewJSDebugPanel";
export default class CursorPlugin extends Plugin {
async onload() {
console.log("Loading Cursor Plugin...");
this.addCommand({
id: "weekly-summary",
name: "Create Weekly Summary",
editorCallback: (editor: Editor) => {
const selection = editor.getSelection();
new WeeklySummaryPanel({
selectedText: selection,
editor: editor,
onClose: () => {}
}).show();
},
});
this.addCommand({
id: "text-analysis",
name: "Analyze Text",
editorCallback: (editor: Editor) => {
const selection = editor.getSelection();
new TextAnalysisPanel(
this.app,
{
selectedText: selection,
editor: editor,
onClose: () => {}
}
).show();
},
});
this.addCommand({
id: "ask-ai",
name: "Ask AI",
editorCallback: (editor: Editor) => {
const selection = editor.getSelection();
new AskAIPanel(
this.app,
{
selectedText: selection,
editor: editor,
onClose: () => {}
}
).show();
},
});
this.addCommand({
id: "debug-dataviewjs",
name: "Debug DataviewJS",
editorCallback: (editor: Editor) => {
new DataviewJSDebugPanel(
this.app,
{ onClose: () => {} }
).show();
},
});
}
onunload() {
console.log("Unloading Cursor Plugin...");
}
}