Spaces:
Running
Running
File size: 11,063 Bytes
f9c67bc c10f8f8 d738d0d f9c67bc c10f8f8 35ef307 c10f8f8 ddb7f1c d738d0d c10f8f8 ddb7f1c 5131535 c10f8f8 e23c4a4 c10f8f8 e710a1b c10f8f8 f9c67bc c10f8f8 e710a1b c10f8f8 d738d0d c10f8f8 f9c67bc c10f8f8 f9c67bc e710a1b ddb7f1c c10f8f8 e710a1b 5131535 c10f8f8 e710a1b c10f8f8 e23c4a4 d738d0d c10f8f8 e23c4a4 c10f8f8 4607b59 c10f8f8 4607b59 c10f8f8 d738d0d c10f8f8 5131535 35ef307 c10f8f8 d738d0d c10f8f8 |
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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 |
import { useRef, useState } from "react";
import classNames from "classnames";
import { ArrowUp, ChevronDown, CircleStop, Dice6 } from "lucide-react";
import { useLocalStorage, useUpdateEffect, useMount } from "react-use";
import { toast } from "sonner";
import { useAi } from "@/hooks/useAi";
import { useEditor } from "@/hooks/useEditor";
import { EnhancedSettings, Project } from "@/types";
import { SelectedFiles } from "@/components/editor/ask-ai/selected-files";
import { SelectedHtmlElement } from "@/components/editor/ask-ai/selected-html-element";
import { AiLoading } from "@/components/editor/ask-ai/loading";
import { Button } from "@/components/ui/button";
import { Uploader } from "@/components/editor/ask-ai/uploader";
import { ReImagine } from "@/components/editor/ask-ai/re-imagine";
import { Selector } from "@/components/editor/ask-ai/selector";
import { PromptBuilder } from "@/components/editor/ask-ai/prompt-builder";
import { Context } from "@/components/editor/ask-ai/context";
import { useUser } from "@/hooks/useUser";
import { useLoginModal } from "@/components/contexts/login-context";
import { Settings } from "./settings";
import { useProModal } from "@/components/contexts/pro-context";
import { MAX_FREE_PROJECTS } from "@/lib/utils";
import { PROMPTS_FOR_AI } from "@/lib/prompts";
export const AskAi = ({
project,
isNew,
onScrollToBottom,
}: {
project?: Project;
files?: string[];
isNew?: boolean;
onScrollToBottom?: () => void;
}) => {
const { user, projects } = useUser();
const { isSameHtml, isUploading, pages, isLoadingProject } = useEditor();
const {
isAiWorking,
isThinking,
selectedFiles,
setSelectedFiles,
selectedElement,
setSelectedElement,
callAiNewProject,
callAiFollowUp,
audio: hookAudio,
cancelRequest,
} = useAi(onScrollToBottom);
const { openLoginModal } = useLoginModal();
const { openProModal } = useProModal();
const [openProvider, setOpenProvider] = useState(false);
const [providerError, setProviderError] = useState("");
const refThink = useRef<HTMLDivElement>(null);
const [enhancedSettings, setEnhancedSettings, removeEnhancedSettings] =
useLocalStorage<EnhancedSettings>("deepsite-enhancedSettings", {
isActive: false,
primaryColor: undefined,
secondaryColor: undefined,
theme: undefined,
});
const [promptStorage, , removePromptStorage] = useLocalStorage("prompt", "");
const [isFollowUp, setIsFollowUp] = useState(true);
const [prompt, setPrompt] = useState(
promptStorage && promptStorage.trim() !== "" ? promptStorage : ""
);
const [think, setThink] = useState("");
const [openThink, setOpenThink] = useState(false);
const [randomPromptLoading, setRandomPromptLoading] = useState(false);
useMount(() => {
if (promptStorage && promptStorage.trim() !== "") {
callAi();
}
});
const callAi = async (redesignMarkdown?: string) => {
removePromptStorage();
if (user && !user.isPro && projects.length >= MAX_FREE_PROJECTS)
return openProModal([]);
if (isAiWorking) return;
if (!redesignMarkdown && !prompt.trim()) return;
if (isFollowUp && !redesignMarkdown && !isSameHtml) {
if (!user) return openLoginModal({ prompt });
const result = await callAiFollowUp(prompt, enhancedSettings, isNew);
if (result?.error) {
handleError(result.error, result.message);
return;
}
if (result?.success) {
setPrompt("");
}
} else {
const result = await callAiNewProject(
prompt,
enhancedSettings,
redesignMarkdown,
!!user
);
if (result?.error) {
handleError(result.error, result.message);
return;
}
if (result?.success) {
setPrompt("");
}
}
};
const handleError = (error: string, message?: string) => {
switch (error) {
case "login_required":
openLoginModal();
break;
case "provider_required":
setOpenProvider(true);
setProviderError(message || "");
break;
case "pro_required":
openProModal([]);
break;
case "api_error":
toast.error(message || "An error occurred");
break;
case "network_error":
toast.error(message || "Network error occurred");
break;
default:
toast.error("An unexpected error occurred");
}
};
useUpdateEffect(() => {
if (refThink.current) {
refThink.current.scrollTop = refThink.current.scrollHeight;
}
}, [think]);
const randomPrompt = () => {
setRandomPromptLoading(true);
setTimeout(() => {
setPrompt(
PROMPTS_FOR_AI[Math.floor(Math.random() * PROMPTS_FOR_AI.length)]
);
setRandomPromptLoading(false);
}, 400);
};
return (
<div className="p-3 w-full">
<div className="relative bg-neutral-800 border border-neutral-700 rounded-2xl ring-[4px] focus-within:ring-neutral-500/30 focus-within:border-neutral-600 ring-transparent z-20 w-full group">
{think && (
<div className="w-full border-b border-neutral-700 relative overflow-hidden">
<header
className="flex items-center justify-between px-5 py-2.5 group hover:bg-neutral-600/20 transition-colors duration-200 cursor-pointer"
onClick={() => {
setOpenThink(!openThink);
}}
>
<p className="text-sm font-medium text-neutral-300 group-hover:text-neutral-200 transition-colors duration-200">
{isThinking ? "DeepSite is thinking..." : "DeepSite's plan"}
</p>
<ChevronDown
className={classNames(
"size-4 text-neutral-400 group-hover:text-neutral-300 transition-all duration-200",
{
"rotate-180": openThink,
}
)}
/>
</header>
<main
ref={refThink}
className={classNames(
"overflow-y-auto transition-all duration-200 ease-in-out",
{
"max-h-[0px]": !openThink,
"min-h-[250px] max-h-[250px] border-t border-neutral-700":
openThink,
}
)}
>
<p className="text-[13px] text-neutral-400 whitespace-pre-line px-5 pb-4 pt-3">
{think}
</p>
</main>
</div>
)}
<SelectedFiles
files={selectedFiles}
isAiWorking={isAiWorking}
onDelete={(file) =>
setSelectedFiles(selectedFiles.filter((f) => f !== file))
}
/>
{selectedElement && (
<div className="px-4 pt-3">
<SelectedHtmlElement
element={selectedElement}
isAiWorking={isAiWorking}
onDelete={() => setSelectedElement(null)}
/>
</div>
)}
<div className="w-full relative flex items-center justify-between">
{(isAiWorking || isUploading || isThinking || isLoadingProject) && (
<div className="absolute bg-neutral-800 top-0 left-4 w-[calc(100%-30px)] h-full z-1 flex items-start pt-3.5 justify-between max-lg:text-sm">
<AiLoading
text={
isLoadingProject
? "Fetching your project..."
: isUploading
? "Uploading images..."
: isAiWorking && !isSameHtml
? "DeepSite is working..."
: "DeepSite is thinking..."
}
/>
{isAiWorking && (
<Button
size="iconXs"
variant="outline"
className="!rounded-md mr-0.5"
onClick={cancelRequest}
>
<CircleStop className="size-4" />
</Button>
)}
</div>
)}
<textarea
disabled={
isAiWorking || isUploading || isThinking || isLoadingProject
}
className={classNames(
"w-full bg-transparent text-sm outline-none text-white placeholder:text-neutral-400 p-4 resize-none",
{
"!pt-2.5":
selectedElement &&
!(isAiWorking || isUploading || isThinking),
}
)}
placeholder={
selectedElement
? `Ask DeepSite about ${selectedElement.tagName.toLowerCase()}...`
: isFollowUp && (!isSameHtml || pages?.length > 1)
? "Ask DeepSite for edits"
: "Ask DeepSite anything..."
}
value={prompt}
onChange={(e) => setPrompt(e.target.value)}
onKeyDown={(e) => {
if (e.key === "Enter" && !e.shiftKey) {
callAi();
}
}}
/>
{isNew && !isAiWorking && isSameHtml && (
<Button
size="iconXs"
variant="outline"
className="!rounded-md -translate-y-2 -translate-x-4"
onClick={() => randomPrompt()}
>
<Dice6
className={classNames("size-4", {
"animate-spin animation-duration-500": randomPromptLoading,
})}
/>
</Button>
)}
</div>
<div className="flex items-center justify-between gap-2 px-4 pb-3 mt-2">
<div className="flex-1 flex items-center justify-start gap-1.5 flex-wrap">
{isNew ? (
<PromptBuilder
enhancedSettings={enhancedSettings!}
setEnhancedSettings={setEnhancedSettings}
/>
) : (
<Context />
)}
<Settings
open={openProvider}
error={providerError}
isFollowUp={!isSameHtml && isFollowUp}
onClose={setOpenProvider}
/>
{!isNew && <Uploader project={project} />}
{isNew && <ReImagine onRedesign={(md) => callAi(md)} />}
{!isNew && !isSameHtml && <Selector />}
</div>
<div className="flex items-center justify-end gap-2">
<Button
size="iconXs"
variant="outline"
className="!rounded-md"
disabled={
isAiWorking || isUploading || isThinking || !prompt.trim()
}
onClick={() => callAi()}
>
<ArrowUp className="size-4" />
</Button>
</div>
</div>
</div>
<audio ref={hookAudio} id="audio" className="hidden">
<source src="/success.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
</div>
);
};
|