mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-30 11:26:24 +02:00
125 lines
3.5 KiB
TypeScript
125 lines
3.5 KiB
TypeScript
"use client";
|
|
|
|
import { useAtomValue } from "jotai";
|
|
import {
|
|
BookOpen,
|
|
Check,
|
|
Globe,
|
|
Languages,
|
|
List,
|
|
MessageSquare,
|
|
Minimize2,
|
|
PenLine,
|
|
Search,
|
|
} from "lucide-react";
|
|
import { useRouter } from "next/navigation";
|
|
import { useEffect, useState } from "react";
|
|
import { searchSpacesAtom } from "@/atoms/search-spaces/search-space-query.atoms";
|
|
import {
|
|
Command,
|
|
CommandEmpty,
|
|
CommandGroup,
|
|
CommandInput,
|
|
CommandItem,
|
|
CommandList,
|
|
CommandSeparator,
|
|
} from "@/components/ui/command";
|
|
import { DEFAULT_ACTIONS } from "./actions";
|
|
|
|
const ICONS: Record<string, React.ReactNode> = {
|
|
check: <Check className="size-4" />,
|
|
minimize: <Minimize2 className="size-4" />,
|
|
languages: <Languages className="size-4" />,
|
|
"pen-line": <PenLine className="size-4" />,
|
|
"book-open": <BookOpen className="size-4" />,
|
|
list: <List className="size-4" />,
|
|
search: <Search className="size-4" />,
|
|
globe: <Globe className="size-4" />,
|
|
};
|
|
|
|
export default function QuickAskPage() {
|
|
const router = useRouter();
|
|
const { data: searchSpaces = [] } = useAtomValue(searchSpacesAtom);
|
|
const [clipboardText, setClipboardText] = useState("");
|
|
|
|
useEffect(() => {
|
|
window.electronAPI?.getQuickAskText().then((text) => {
|
|
if (text) setClipboardText(text);
|
|
});
|
|
}, []);
|
|
|
|
const navigateToChat = (prompt: string, mode: string) => {
|
|
if (!searchSpaces.length) return;
|
|
const spaceId = searchSpaces[0].id;
|
|
const encoded = encodeURIComponent(prompt);
|
|
router.push(`/dashboard/${spaceId}/new-chat?quickAskPrompt=${encoded}&quickAskMode=${mode}`);
|
|
};
|
|
|
|
const handleAction = (actionId: string) => {
|
|
const action = DEFAULT_ACTIONS.find((a) => a.id === actionId);
|
|
if (!action || !clipboardText) return;
|
|
|
|
const prompt = action.prompt.replace("{selection}", clipboardText);
|
|
navigateToChat(prompt, action.mode);
|
|
};
|
|
|
|
const handleAskAnything = () => {
|
|
if (!clipboardText) return;
|
|
navigateToChat(clipboardText, "explore");
|
|
};
|
|
|
|
const transformActions = DEFAULT_ACTIONS.filter((a) => a.group === "transform");
|
|
const exploreActions = DEFAULT_ACTIONS.filter((a) => a.group === "explore");
|
|
const knowledgeActions = DEFAULT_ACTIONS.filter((a) => a.group === "knowledge");
|
|
|
|
return (
|
|
<div className="flex h-screen items-start justify-center bg-background pt-2">
|
|
<Command className="max-w-md border shadow-lg rounded-lg">
|
|
<CommandInput placeholder="Search actions..." />
|
|
<CommandList>
|
|
<CommandEmpty>No actions found.</CommandEmpty>
|
|
|
|
<CommandGroup heading="Transform">
|
|
{transformActions.map((action) => (
|
|
<CommandItem key={action.id} onSelect={() => handleAction(action.id)}>
|
|
{ICONS[action.icon]}
|
|
<span>{action.name}</span>
|
|
</CommandItem>
|
|
))}
|
|
</CommandGroup>
|
|
|
|
<CommandSeparator />
|
|
|
|
<CommandGroup heading="Explore">
|
|
{exploreActions.map((action) => (
|
|
<CommandItem key={action.id} onSelect={() => handleAction(action.id)}>
|
|
{ICONS[action.icon]}
|
|
<span>{action.name}</span>
|
|
</CommandItem>
|
|
))}
|
|
</CommandGroup>
|
|
|
|
<CommandSeparator />
|
|
|
|
<CommandGroup heading="Knowledge">
|
|
{knowledgeActions.map((action) => (
|
|
<CommandItem key={action.id} onSelect={() => handleAction(action.id)}>
|
|
{ICONS[action.icon]}
|
|
<span>{action.name}</span>
|
|
</CommandItem>
|
|
))}
|
|
</CommandGroup>
|
|
|
|
<CommandSeparator />
|
|
|
|
<CommandGroup>
|
|
<CommandItem onSelect={handleAskAnything}>
|
|
<MessageSquare className="size-4" />
|
|
<span>Ask anything...</span>
|
|
</CommandItem>
|
|
</CommandGroup>
|
|
</CommandList>
|
|
</Command>
|
|
</div>
|
|
);
|
|
}
|