Spaces:
Runtime error
Runtime error
File size: 7,271 Bytes
38ceaf9 916c5da 38ceaf9 5870c02 916c5da b60e117 38ceaf9 916c5da 38ceaf9 916c5da 38ceaf9 5870c02 916c5da 38ceaf9 916c5da b60e117 916c5da 5c653be 916c5da b60e117 916c5da b60e117 916c5da 38ceaf9 916c5da 38ceaf9 5870c02 |
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 |
"use client";
import { LoadingIcon } from "@/components/LoadingIcon";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader } from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Skeleton } from "@/components/ui/skeleton";
import {
checkStatus,
generate,
generate_img,
getUploadUrl,
} from "@/server/generate";
import { useEffect, useState } from "react";
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
export default function Page() {
return (
<main className="flex min-h-screen flex-col items-center justify-between mt-10">
<Tabs defaultValue="txt2img" className="w-full max-w-[500px]">
<TabsList className="grid w-full grid-cols-2">
<TabsTrigger value="txt2img">txt2img</TabsTrigger>
<TabsTrigger value="img2img">img2img</TabsTrigger>
</TabsList>
<TabsContent value="txt2img">
<Txt2img />
</TabsContent>
<TabsContent value="img2img">
<Img2img />
</TabsContent>
</Tabs>
</main>
);
}
function Txt2img() {
const [prompt, setPrompt] = useState("");
const [image, setImage] = useState("");
const [loading, setLoading] = useState(false);
const [runId, setRunId] = useState("");
const [status, setStatus] = useState<string>();
// Polling in frontend to check for the
useEffect(() => {
if (!runId) return;
const interval = setInterval(() => {
checkStatus(runId).then((res) => {
if (res) setStatus(res.status);
if (res && res.status === "success") {
console.log(res.outputs[0]?.data);
setImage(res.outputs[0]?.data?.images[0].url);
setLoading(false);
clearInterval(interval);
}
});
}, 2000);
return () => clearInterval(interval);
}, [runId]);
return (
<Card className="w-full max-w-[500px]">
<CardHeader>
Comfy Deploy - Vector Line Art Tool
<div className="text-xs text-foreground opacity-50">
Lora -{" "}
<a href="https://civitai.com/models/256144/stick-line-vector-illustration">
stick-line-vector-illustration
</a>
</div>
</CardHeader>
<CardContent>
<form
className="grid w-full items-center gap-1.5"
onSubmit={(e) => {
if (loading) return;
e.preventDefault();
setLoading(true);
generate(prompt).then((res) => {
console.log(res);
if (!res) {
setStatus("error");
setLoading(false);
return;
}
setRunId(res.run_id);
});
setStatus("preparing");
}}
>
<Label htmlFor="picture">Image prompt</Label>
<Input
id="picture"
type="text"
value={prompt}
onChange={(e) => setPrompt(e.target.value)}
/>
<Button type="submit" className="flex gap-2" disabled={loading}>
Generate {loading && <LoadingIcon />}
</Button>
<div className="border border-gray-200 w-full square h-[400px] rounded-lg relative">
{!loading && image && (
<img
className="w-full h-full object-contain"
src={image}
alt="Generated image"
></img>
)}
{!image && status && (
<div className="absolute top-0 left-0 w-full h-full flex items-center justify-center gap-2">
{status} <LoadingIcon />
</div>
)}
{loading && <Skeleton className="w-full h-full" />}
</div>
</form>
</CardContent>
</Card>
);
}
function Img2img() {
const [prompt, setPrompt] = useState<File>();
const [image, setImage] = useState("");
const [loading, setLoading] = useState(false);
const [runId, setRunId] = useState("");
const [status, setStatus] = useState<string>();
const handleFileChange = (e: React.ChangeEvent<HTMLInputElement>) => {
if (!e.target.files) return;
setPrompt(e.target.files[0]);
};
// Polling in frontend to check for the
useEffect(() => {
if (!runId) return;
const interval = setInterval(() => {
checkStatus(runId).then((res) => {
if (res) setStatus(res.status);
if (res && res.status === "success") {
console.log(res.outputs[0]?.data);
setImage(res.outputs[0]?.data?.images[0].url);
setLoading(false);
clearInterval(interval);
}
});
}, 2000);
return () => clearInterval(interval);
}, [runId]);
return (
<Card className="w-full max-w-[500px]">
<CardHeader>Comfy Deploy - Scribble to Anime Girl</CardHeader>
<CardContent>
<form
className="grid w-full items-center gap-1.5"
onSubmit={(e) => {
e.preventDefault();
if (loading) return;
if (!prompt) return;
setImage("");
setStatus("getting url for upload");
console.log(prompt?.type, prompt?.size);
getUploadUrl(prompt?.type, prompt?.size).then((res) => {
if (!res) return;
setStatus("uploading input");
console.log(res);
fetch(res.upload_url, {
method: "PUT",
body: prompt,
headers: {
"Content-Type": prompt.type,
"x-amz-acl": "public-read",
"Content-Length": prompt.size.toString(),
},
}).then((_res) => {
if (_res.ok) {
setStatus("uploaded input");
setLoading(true);
generate_img(res.download_url).then((res) => {
console.log(res);
if (!res) {
setStatus("error");
setLoading(false);
return;
}
setRunId(res.run_id);
});
setStatus("preparing");
}
});
});
}}
>
<Label htmlFor="picture">Image prompt</Label>
<Input id="picture" type="file" onChange={handleFileChange} />
<Button type="submit" className="flex gap-2" disabled={loading}>
Generate {loading && <LoadingIcon />}
</Button>
<div className="border border-gray-200 w-full square h-[400px] rounded-lg relative">
{!loading && image && (
<img
className="w-full h-full object-contain"
src={image}
alt="Generated image"
></img>
)}
{!image && status && (
<div className="absolute top-0 left-0 w-full h-full flex items-center justify-center gap-2">
{status} <LoadingIcon />
</div>
)}
{loading && <Skeleton className="w-full h-full" />}
</div>
</form>
</CardContent>
</Card>
);
}
|