import React, { KeyboardEventHandler, useEffect, useState } from "react"
import {
Command,
CommandEmpty,
CommandInput,
CommandItem,
CommandList,
} from "@/components/ui/command"
import { convertToFlashCard, convertToFlashCardCurrentBlock, DivideTaskIntoSubTasks, DivideTaskIntoSubTasksCurrentBlock, summarize, summarizeBlock } from "@/ollama";
import { PromptAI } from "./PromptAI";
export function OllamaCommandPallete({ options, theme }: { options: string[], theme: string }) {
const [selection, setSelection] = useState('')
const [isEnterPressed, setIsEnterPressed] = useState(false);
const handleSelection = (selection: string) => {
setSelection(selection)
setIsEnterPressed(true);
switch (selection) {
case "divide into subtasks":
logseq.hideMainUI()
DivideTaskIntoSubTasksCurrentBlock()
break;
case "summarize":
logseq.hideMainUI()
summarize()
break;
case "summarize block":
logseq.hideMainUI()
summarizeBlock()
break;
case "convert to flash card":
logseq.hideMainUI()
convertToFlashCardCurrentBlock()
break;
default:
break;
}
}
useEffect(() => {
const handleEsc = (e: any) => {
if (e.key === 'Escape') {
logseq.hideMainUI()
}
};
window.addEventListener('keydown', handleEsc);
return () => {
window.removeEventListener('keydown', handleEsc);
};
}, []);
if (isEnterPressed && (selection !== 'ask ai' && selection !== 'define' && selection !== 'ask with context')) {
return null
}
return (
selection === 'ask with context' || selection === 'ask ai' || selection === 'define' ? () : (
No results found.
{
options.map((option) => (
{option}
))
}
)
)
}