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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
import React, { useEffect, useRef, useState } from "react";
import { OllamaCommandPallete } from "./components/OllamaCommandPallete";
import {
convertToFlashCardFromEvent,
DivideTaskIntoSubTasksFromEvent,
ollamaUI,
promptFromBlockEventClosure
} from "./ollama";
import { useAppVisible } from "./utils";
const options = [
'Ask ai',
'Ask with context',
'Define',
'Divide into subtasks',
'Summarize',
'Summarize Block',
'Convert to flash card',
];
async function getTheme() {
const theme = await logseq.App.getUserInfo()
if (!theme) {
return "dark"
}
return theme.preferredThemeMode
}
function App() {
const innerRef = useRef<HTMLDivElement>(null);
const visible = useAppVisible();
const [theme, setTheme] = useState<string>('')
useEffect(() => {
const getTheme = async () => {
const theme = await logseq.App.getUserConfigs()
if (!theme) {
setTheme('dark')
} else {
setTheme(theme.preferredThemeMode)
}
}
getTheme();
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.error("Can not find the configuration page named 'ollama-logseq-config'", 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: Custom prompt on Block", promptFromBlockEventClosure(logseq.settings.custom_prompt_block))
logseq.Editor.registerBlockContextMenuItem("Ollama: Summarize block", promptFromBlockEventClosure("Summarize: "))
logseq.Editor.registerBlockContextMenuItem("Ollama: Expand Block", promptFromBlockEventClosure("Expand: "))
logseq.App.registerCommandShortcut(
{ "binding": logseq.settings.shortcut },
ollamaUI
);
}, [])
if (visible) {
return (
<main
className="fixed inset-0 flex items-center justify-center"
onClick={(e) => {
if (!innerRef.current?.contains(e.target as any)) {
window.logseq.hideMainUI();
}
}}
>
<div ref={innerRef} className="flex items-center justify-center w-screen">
<OllamaCommandPallete options={options} theme={theme} />
</div>
</main>
);
}
return null;
}
export default App;
|