mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-09 15:52:40 +02:00
add quick-ask page with default action menu
This commit is contained in:
parent
2a8f393cde
commit
d48f6aafce
2 changed files with 185 additions and 0 deletions
68
surfsense_web/app/quick-ask/actions.ts
Normal file
68
surfsense_web/app/quick-ask/actions.ts
Normal file
|
|
@ -0,0 +1,68 @@
|
||||||
|
import type { QuickAskAction } from "@/contracts/types/quick-ask-actions.types";
|
||||||
|
|
||||||
|
export const DEFAULT_ACTIONS: QuickAskAction[] = [
|
||||||
|
{
|
||||||
|
id: "fix-grammar",
|
||||||
|
name: "Fix grammar",
|
||||||
|
prompt: "Fix the grammar and spelling in the following text. Return only the corrected text, nothing else.\n\n{selection}",
|
||||||
|
mode: "transform",
|
||||||
|
icon: "check",
|
||||||
|
group: "transform",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "make-shorter",
|
||||||
|
name: "Make shorter",
|
||||||
|
prompt: "Make the following text more concise while preserving its meaning. Return only the shortened text, nothing else.\n\n{selection}",
|
||||||
|
mode: "transform",
|
||||||
|
icon: "minimize",
|
||||||
|
group: "transform",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "translate",
|
||||||
|
name: "Translate",
|
||||||
|
prompt: "Translate the following text to English. If it is already in English, translate it to French. Return only the translation, nothing else.\n\n{selection}",
|
||||||
|
mode: "transform",
|
||||||
|
icon: "languages",
|
||||||
|
group: "transform",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "rewrite",
|
||||||
|
name: "Rewrite",
|
||||||
|
prompt: "Rewrite the following text to improve clarity and readability. Return only the rewritten text, nothing else.\n\n{selection}",
|
||||||
|
mode: "transform",
|
||||||
|
icon: "pen-line",
|
||||||
|
group: "transform",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "explain",
|
||||||
|
name: "Explain",
|
||||||
|
prompt: "Explain the following text in simple terms:\n\n{selection}",
|
||||||
|
mode: "explore",
|
||||||
|
icon: "book-open",
|
||||||
|
group: "explore",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "summarize",
|
||||||
|
name: "Summarize",
|
||||||
|
prompt: "Summarize the following text:\n\n{selection}",
|
||||||
|
mode: "explore",
|
||||||
|
icon: "list",
|
||||||
|
group: "explore",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "search-knowledge",
|
||||||
|
name: "Search my knowledge",
|
||||||
|
prompt: "Search my knowledge base for information related to:\n\n{selection}",
|
||||||
|
mode: "explore",
|
||||||
|
icon: "search",
|
||||||
|
group: "knowledge",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "search-web",
|
||||||
|
name: "Search the web",
|
||||||
|
prompt: "Search the web for information about:\n\n{selection}",
|
||||||
|
mode: "explore",
|
||||||
|
icon: "globe",
|
||||||
|
group: "knowledge",
|
||||||
|
},
|
||||||
|
];
|
||||||
117
surfsense_web/app/quick-ask/page.tsx
Normal file
117
surfsense_web/app/quick-ask/page.tsx
Normal file
|
|
@ -0,0 +1,117 @@
|
||||||
|
"use client";
|
||||||
|
|
||||||
|
import {
|
||||||
|
BookOpen,
|
||||||
|
Check,
|
||||||
|
Globe,
|
||||||
|
Languages,
|
||||||
|
List,
|
||||||
|
MessageSquare,
|
||||||
|
Minimize2,
|
||||||
|
PenLine,
|
||||||
|
Search,
|
||||||
|
} from "lucide-react";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
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 [clipboardText, setClipboardText] = useState("");
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
window.electronAPI?.getQuickAskText().then((text) => {
|
||||||
|
if (text) setClipboardText(text);
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleAction = (actionId: string) => {
|
||||||
|
const action = DEFAULT_ACTIONS.find((a) => a.id === actionId);
|
||||||
|
if (!action || !clipboardText) return;
|
||||||
|
|
||||||
|
const prompt = action.prompt.replace("{selection}", clipboardText);
|
||||||
|
const encoded = encodeURIComponent(prompt);
|
||||||
|
const mode = action.mode;
|
||||||
|
|
||||||
|
window.location.href = `/dashboard?quickAskPrompt=${encoded}&quickAskMode=${mode}`;
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleAskAnything = () => {
|
||||||
|
if (!clipboardText) return;
|
||||||
|
const encoded = encodeURIComponent(clipboardText);
|
||||||
|
window.location.href = `/dashboard?quickAskPrompt=${encoded}&quickAskMode=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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue