riffusion-app/components/PromptPanel.tsx

67 lines
2.0 KiB
TypeScript
Raw Normal View History

import PromptEntry from "./PromptEntry";
2022-11-23 22:47:18 -07:00
2022-11-23 23:08:00 -07:00
import { PromptInput } from "../types";
import { useRef } from "react";
2022-11-24 13:39:30 -07:00
2022-11-23 23:08:00 -07:00
interface PromptPanelProps {
prompts: PromptInput[];
changePrompt: (prompt: string, index: number) => void;
2022-11-23 23:08:00 -07:00
}
2022-11-24 13:39:30 -07:00
export default function PromptPanel({
prompts,
changePrompt,
2022-11-24 13:39:30 -07:00
}: PromptPanelProps) {
const inputPrompt = useRef(null);
2022-11-23 22:47:18 -07:00
return (
<>
<main className="w-2/3 min-h-screen">
<div className="pl-20">
<div className="h-[80vh] flex flex-col justify-around pt-[5vh] pr-5">
{prompts.slice(-6).map((prompt, index) => (
<PromptEntry
prompt={prompt.prompt}
className={promptEntryClassNames[index]}
index={index}
key={index}
/>
))}
</div>
2022-11-24 15:55:26 -07:00
<form
onSubmit={(e) => {
e.preventDefault();
const prompt = e.currentTarget.prompt.value;
changePrompt(prompt, prompts.length - 1);
inputPrompt.current.value = "";
}}
>
<input
2022-11-24 21:58:44 -07:00
className="fixed w-1/2 h-12 pl-3 text-xl text-sky-900 rounded-lg border-sky-300 border-4 focus:outline-none focus:border-sky-500"
ref={inputPrompt}
type="text"
id="prompt"
name="prompt"
placeholder="What do you want to hear next?"
maxLength={150}
minLength={2}
required={true}
autoComplete="off"
/>
</form>
</div>
</main>
</>
);
2022-11-23 22:47:18 -07:00
}
2022-11-24 00:23:34 -07:00
const promptEntryClassNames = {
0: "font-light text-sm text-gray-400 text-opacity-40",
1: "font-normal text-m text-gray-300 text-opacity-60",
2: "font-medium text-xl text-gray-200 text-opacity-80",
3: "font-bold text-5xl text-white", // This is the primary prompt
2022-11-25 00:06:17 -07:00
4: "font-medium text-3xl text-gray-100 text-opacity-80", // This is prompt it is transitioning to
5: "font-normal text-m text-gray-200 text-opacity-60", // This is the UP NEXT prompt
};