aboutsummaryrefslogtreecommitdiff
path: root/src/App.tsx
diff options
context:
space:
mode:
authorDavid Li <taweili@gmail.com>2023-12-10 21:54:44 +0800
committerDavid Li <taweili@gmail.com>2023-12-10 21:54:44 +0800
commitf4a66c83658c354a9c5e3d7f2476de4e429cae94 (patch)
tree382f63adc9e56658dc77d4115db620d1dfc9cdcb /src/App.tsx
parentc487b7b37a9f9e2de82d386c30ea7d62097a847e (diff)
downloadollama-logseq-f4a66c83658c354a9c5e3d7f2476de4e429cae94.tar.xz
ollama-logseq-f4a66c83658c354a9c5e3d7f2476de4e429cae94.zip
Use a configuration page instead of hard coding
the context menu commands.
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx20
1 files changed, 17 insertions, 3 deletions
diff --git a/src/App.tsx b/src/App.tsx
index 3e50f38..b6b6918 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -44,19 +44,33 @@ function App() {
if (!logseq.settings) {
return
}
+
+logseq.Editor.getPageBlocksTree("ollama-logseq-config").then((blocks) => {
+ blocks!.forEach((block) => {
+ logseq.Editor.getBlockProperty(block.uuid, "ollama-context-menu-title").then((title) => {
+ logseq.Editor.getBlockProperty(block.uuid, "ollama-prompt-prefix").then((prompt_prefix) => {
+ logseq.Editor.registerBlockContextMenuItem(title, promptFromBlockEventClosure(prompt_prefix))
+ })
+ }).catch((reason) => {
+ })
+ })
+}).catch((reason) => {
+ console.log("Can not find the configuration page named 'ollama-logseq-config'")
+ console.log(reason)
+})
+
+
logseq.Editor.registerSlashCommand("ollama", ollamaUI)
logseq.Editor.registerBlockContextMenuItem("Ollama: Create a flash card", convertToFlashCardFromEvent)
logseq.Editor.registerBlockContextMenuItem("Ollama: Divide into subtasks", DivideTaskIntoSubTasksFromEvent)
logseq.Editor.registerBlockContextMenuItem("Ollama: Prompt from Block", promptFromBlockEventClosure())
logseq.Editor.registerBlockContextMenuItem("Ollama: Summarize block", promptFromBlockEventClosure("Summarize: "))
- logseq.Editor.registerBlockContextMenuItem("Ollama: 总结 Block", promptFromBlockEventClosure("总结: "))
logseq.Editor.registerBlockContextMenuItem("Ollama: Expand Block", promptFromBlockEventClosure("Expand: "))
- logseq.Editor.registerBlockContextMenuItem("Ollama: 扩展 Block", promptFromBlockEventClosure("扩展: "))
logseq.App.registerCommandShortcut(
{ "binding": logseq.settings.shortcut },
ollamaUI
- );
+ );
}, [])
if (visible) {