Spaces:
Runtime error
Runtime error
File size: 7,612 Bytes
a86df80 |
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 |
import { useEffect, useRef, useState } from "react";
import Head from "next/head";
import axios from "axios";
import CheckIcon from "@mui/icons-material/Check";
import ClearIcon from "@mui/icons-material/Clear";
import ContentCopyIcon from "@mui/icons-material/ContentCopy";
import VisibilityIcon from "@mui/icons-material/Visibility";
import VisibilityOffIcon from "@mui/icons-material/VisibilityOff";
import DeleteForeverIcon from "@mui/icons-material/DeleteForever";
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
import HourglassTopIcon from "@mui/icons-material/HourglassTop";
import PlayArrowIcon from "@mui/icons-material/PlayArrow";
import ReplayIcon from "@mui/icons-material/Replay";
import TextField from "@mui/material/TextField";
import { Fira_Code } from "next/font/google";
import Box from "@mui/material/Box";
import Stack from "@mui/material/Stack";
import Accordion from "@mui/material/Accordion";
import Typography from "@mui/material/Typography";
import AccordionSummary from "@mui/material/AccordionSummary";
import AccordionDetails from "@mui/material/AccordionDetails";
import Paper from "@mui/material/Paper";
import IconButton from "@mui/material/IconButton";
import List from "@mui/material/List";
import ListItem from "@mui/material/ListItem";
import { nanoid } from "nanoid";
import AppBar from "@mui/material/AppBar";
import Toolbar from "@mui/material/Toolbar";
import ListItemIcon from "@mui/material/ListItemIcon";
import ListItemButton from "@mui/material/ListItemButton";
import ListItemText from "@mui/material/ListItemText";
const base = {
default: "/** 1.Base Script */const canvas=document.querySelector('canvas');",
};
const fontMono = Fira_Code({
subsets: ["latin"],
});
export default function Home() {
const ref = useRef<HTMLIFrameElement>(null);
const [template, setTemplate] = useState(base.default);
const [runningId, setRunningId] = useState("1");
const [activeId, setActiveId] = useState("1");
const [answers, setAnswers] = useState<{ id: string; content: string; task: string }[]>([
{
id: "1",
content: base.default,
task: "Base Script",
},
]);
const [loading, setLoading] = useState(false);
useEffect(() => {
const current = answers.find(({ id }) => id === runningId);
if (current) {
void axios.post("/api/run", {
content: current.content,
});
}
}, [runningId, answers]);
const current = answers.find(({ id }) => id === activeId);
return (
<Stack
sx={{
...fontMono.style,
flexDirection: "row",
height: "100%",
}}
>
<Head>
<style>{`html,body,#__next{margin:0;height:100%;overflow:hidden}`}</style>
</Head>
<Stack sx={{ width: "50%", flex: 1, gap: 2 }}>
<Box
component="form"
onSubmit={async event => {
event.preventDefault();
const formData = new FormData(event.target as HTMLFormElement);
const formObject = Object.fromEntries(formData);
try {
setLoading(true);
const { data } = await axios.post("/api/gpt", formObject);
const answer = data;
setAnswers([answer, ...answers]);
setRunningId(answer.id);
} catch (error) {
console.error(error);
} finally {
setLoading(false);
}
}}
>
<AppBar position="static" elevation={0}>
<Toolbar>
<IconButton
type="submit"
edge="start"
color="inherit"
aria-label={loading ? "Loading" : "Run"}
disabled={loading}
>
{loading ? <HourglassTopIcon /> : <PlayArrowIcon />}
</IconButton>
<Typography sx={{ flex: 1 }}>
{current?.task} - {current?.id ?? ""}
</Typography>
<IconButton
edge="end"
color="inherit"
aria-label="Clear Prompt"
onClick={async () => {
await axios.post("/api/run", {
content:
"/** 1.Base Script */const canvas=document.querySelector('canvas');",
});
setActiveId("1");
setTemplate(
"/** 1.Base Script */const canvas=document.querySelector('canvas');"
);
}}
>
<ClearIcon />
</IconButton>
</Toolbar>
</AppBar>
<Paper variant="outlined" sx={{ p: 0 }}>
<Stack sx={{ p: 2, gap: 2 }}>
<Typography>Based on: {current?.task ?? "Base Script"}</Typography>
<TextField
multiline
fullWidth
id="prompt"
name="prompt"
label="Prompt"
placeholder="add a red box"
maxRows={6}
InputProps={{
style: fontMono.style,
}}
/>
<TextField
multiline
fullWidth
id="negativePrompt"
name="negativePrompt"
label="Negative Prompt"
placeholder="images, audio files"
maxRows={6}
InputProps={{
style: fontMono.style,
}}
/>
</Stack>
</Paper>
<Accordion>
<AccordionSummary
expandIcon={<ExpandMoreIcon />}
aria-controls="panel1a-content"
id="panel1a-header"
>
<Typography>Options</Typography>
</AccordionSummary>
<AccordionDetails>
<TextField
multiline
fullWidth
id="template"
name="template"
label="Template"
placeholder={base.default}
maxRows={6}
value={template}
InputProps={{
style: { ...fontMono.style },
}}
onChange={event => {
setTemplate(event.target.value);
}}
/>
</AccordionDetails>
</Accordion>
</Box>
<List sx={{ flex: 1, overflow: "auto" }}>
{answers.map(answer => {
return (
<ListItem
key={answer.id}
secondaryAction={
<Stack sx={{ flexDirection: "row", gap: 1 }}>
{answer.id === "1" ? undefined : (
<IconButton
edge="end"
aria-label="Delete"
onClick={() => {
setAnswers(
answers.filter(({ id }) => id !== answer.id)
);
}}
>
<DeleteForeverIcon />
</IconButton>
)}
<IconButton
edge="end"
aria-label="Show"
onClick={() => {
setRunningId(answer.id);
}}
>
{runningId === answer.id ? (
<VisibilityIcon />
) : (
<VisibilityOffIcon />
)}
</IconButton>
</Stack>
}
disablePadding
>
<ListItemButton
dense
selected={activeId === answer.id}
role={undefined}
onClick={() => {
setActiveId(answer.id);
setTemplate(answer.content);
}}
>
<ListItemIcon>
{activeId === answer.id ? (
<CheckIcon />
) : (
<ContentCopyIcon />
)}
</ListItemIcon>
<ListItemText primary={`${answer.task} - ${answer.id}`} />
</ListItemButton>
</ListItem>
);
})}
</List>
</Stack>
<Stack sx={{ flex: 1, width: "50%" }}>
<AppBar position="static" elevation={0}>
<Toolbar>
<IconButton
color="inherit"
aria-label="Reload"
onClick={() => {
if (ref.current) {
ref.current.src = `//localhost:8080?${nanoid()}`;
}
}}
>
<ReplayIcon />
</IconButton>
</Toolbar>
</AppBar>
<Box
ref={ref}
component="iframe"
sx={{ width: "100%", flex: 1, m: 0, border: 0 }}
src="//localhost:8080"
/>
</Stack>
</Stack>
);
}
|