File size: 16,969 Bytes
9a42933 b0f34ee 9a42933 bd74bd1 9a42933 4ae2e41 80175c8 b0f34ee 4ae2e41 9a42933 bd74bd1 9a42933 b0f34ee 9a42933 b0f34ee 80175c8 b0f34ee 4ae2e41 b0f34ee 80175c8 b0f34ee 80175c8 4ae2e41 80175c8 9a42933 415446d 9a42933 b0f34ee 80175c8 9a42933 b0f34ee 9a42933 4ae2e41 b0f34ee 9a42933 8bc9511 18e5e63 b0f34ee 8bc9511 b0f34ee 9a42933 18e5e63 bd74bd1 18e5e63 bd74bd1 4ae2e41 bd74bd1 18e5e63 b0f34ee 18e5e63 9a42933 b0f34ee 4ae2e41 b0f34ee 4ae2e41 49a7080 4ae2e41 b0f34ee 4ae2e41 9a42933 4ae2e41 9a42933 4ae2e41 80175c8 4ae2e41 8bc9511 4ae2e41 9a42933 4ae2e41 9a42933 4ae2e41 9a42933 8bc9511 4ae2e41 8bc9511 9a42933 8bc9511 9a42933 4ae2e41 9a42933 4ae2e41 9a42933 7448744 9a42933 415446d 9a42933 b0f34ee 66e6b3f b0f34ee 4ae2e41 b0f34ee 9a42933 4ae2e41 b0f34ee 9a42933 4ae2e41 b0f34ee 4ae2e41 b0f34ee 4ae2e41 b0f34ee 4ae2e41 bd74bd1 9a42933 bd74bd1 4ae2e41 66e6b3f 4ae2e41 9a42933 4ae2e41 b0f34ee 4ae2e41 9a42933 |
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 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 |
"use client"
import { useEffect, useRef, useState, useTransition } from "react"
import { useSpring, animated } from "@react-spring/web"
import { usePathname, useRouter, useSearchParams } from "next/navigation"
import { cn } from "@/lib/utils"
import { headingFont } from "@/app/interface/fonts"
import { useCharacterLimit } from "@/lib/useCharacterLimit"
import { generateAnimation } from "@/app/server/actions/animation"
import { getLatestPosts, getPost, postToCommunity } from "@/app/server/actions/community"
import { useCountdown } from "@/lib/useCountdown"
import { Countdown } from "../countdown"
import { getSDXLModels } from "@/app/server/actions/models"
import { Post, SDXLModel } from "@/types"
import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip"
import { TooltipProvider } from "@radix-ui/react-tooltip"
export function Generate() {
const router = useRouter()
const pathname = usePathname()
const searchParams = useSearchParams()
const [_isPending, startTransition] = useTransition()
const scrollRef = useRef<HTMLDivElement>(null)
const [isLocked, setLocked] = useState(false)
const [promptDraft, setPromptDraft] = useState("")
const [assetUrl, setAssetUrl] = useState("")
const [isOverSubmitButton, setOverSubmitButton] = useState(false)
const [models, setModels] = useState<SDXLModel[]>([])
const [selectedModel, setSelectedModel] = useState<SDXLModel>()
const [runs, setRuns] = useState(0)
const runsRef = useRef(0)
const [showModels, setShowModels] = useState(true)
// useEffect(() => { runsRef.current = runs }, [runs])
const [communityRoll, setCommunityRoll] = useState<Post[]>([])
console.log("runs:", runs)
const { progressPercent, remainingTimeInSec } = useCountdown({
isActive: isLocked,
timerId: runs, // everytime we change this, the timer will reset
durationInSec: 50, // it usually takes 40 seconds, but there might be lag
onEnd: () => {}
})
const { shouldWarn, colorClass, nbCharsUsed, nbCharsLimits } = useCharacterLimit({
value: promptDraft,
nbCharsLimits: 70,
warnBelow: 10,
})
const submitButtonBouncer = useSpring({
transform: isOverSubmitButton
? 'scale(1.05)'
: 'scale(1.0)',
boxShadow: isOverSubmitButton
? `0px 5px 15px 0px rgba(0, 0, 0, 0.05)`
: `0px 0px 0px 0px rgba(0, 0, 0, 0.05)`,
loop: true,
config: {
tension: 300,
friction: 10,
},
})
const handleSubmit = () => {
console.log("handleSubmit:", { isLocked, promptDraft })
if (isLocked) { return }
if (!promptDraft) { return }
setShowModels(false)
setRuns(runs + 1)
setLocked(true)
scrollRef.current?.scroll({
top: 0,
behavior: 'smooth'
})
startTransition(async () => {
const huggingFaceLora = selectedModel ? selectedModel.repo.trim() : "KappaNeuro/studio-ghibli-style"
const triggerWord = selectedModel ? selectedModel.trigger_word : "Studio Ghibli Style"
// now you got a read/write object
const current = new URLSearchParams(Array.from(searchParams.entries()))
current.set("prompt", promptDraft)
current.set("model", huggingFaceLora)
const search = current.toString()
router.push(`${pathname}${search ? `?${search}` : ""}`)
try {
console.log("starting transition, calling generateAnimation")
const newAssetUrl = await generateAnimation({
positivePrompt: promptDraft,
negativePrompt: "",
huggingFaceLora,
triggerWord,
size: "608x416", // "1024x512", // "512x512" // "320x768"
nbFrames: 8, // if duration is 1000ms then it means 8 FPS
duration: 1000, // in ms
steps: 25,
})
setAssetUrl(newAssetUrl)
try {
const post = await postToCommunity({
prompt: promptDraft,
model: huggingFaceLora,
assetUrl: newAssetUrl,
})
console.log("successfully submitted to the community!", post)
// now you got a read/write object
const current = new URLSearchParams(Array.from(searchParams.entries()))
current.set("postId", post.postId.trim())
current.set("prompt", post.prompt.trim())
current.set("model", post.model.trim())
const search = current.toString()
router.push(`${pathname}${search ? `?${search}` : ""}`)
} catch (err) {
console.error(`not a blocker, but we failed to post to the community (reason: ${err})`)
}
} catch (err) {
console.error(err)
} finally {
setLocked(false)
}
})
}
useEffect(() => {
startTransition(async () => {
const models = await getSDXLModels()
setModels(models)
const defaultModel = models.find(model => model.title.toLowerCase().includes("ghibli")) || models[0]
if (defaultModel) {
setSelectedModel(defaultModel)
}
// now we load URL params
const current = new URLSearchParams(Array.from(searchParams.entries()))
// URL query params
const existingPostId = current.get("postId") || ""
const existingPrompt = current.get("prompt")?.trim() || ""
const existingModelName = current.get("model")?.toLowerCase().trim() || ""
// if and only if we don't have a post id, then we look at the other query params
if (existingPrompt) {
setPromptDraft(existingPrompt)
}
if (existingModelName) {
let existingModel = models.find(model => model.title.toLowerCase().trim().includes(existingModelName))
if (existingModel) {
setSelectedModel(existingModel)
}
}
// if we have a post id, then we use that to override all the previous values
if (existingPostId) {
try {
const post = await getPost(existingPostId)
if (post.assetUrl) {
setAssetUrl(post.assetUrl)
}
if (post.prompt) {
setPromptDraft(post.prompt)
}
if (post.model) {
const existingModel = models.find(model => model.title.toLowerCase().trim().includes(post.model.toLowerCase().trim()))
if (existingModel) {
setSelectedModel(existingModel)
}
}
} catch (err) {
console.error(`failed to load the community post (${err})`)
}
}
})
}, [])
useEffect(() => {
startTransition(async () => {
const posts = await getLatestPosts({
maxNbPosts: 16,
shuffle: true,
})
if (posts?.length) {
setCommunityRoll(posts)
}
})
}, [])
const handleSelectCommunityPost = (post: Post) => {
if (isLocked) { return }
scrollRef.current?.scroll({
top: 0,
behavior: 'smooth'
})
// now you got a read/write object
const current = new URLSearchParams(Array.from(searchParams.entries()))
current.set("postId", post.postId.trim())
current.set("prompt", post.prompt.trim())
current.set("model", post.model.trim())
const search = current.toString()
router.push(`${pathname}${search ? `?${search}` : ""}`)
if (post.assetUrl) {
setAssetUrl(post.assetUrl)
}
if (post.prompt) {
setPromptDraft(post.prompt)
}
if (post.model) {
const existingModel = models.find(model => model.title.toLowerCase().trim().includes(post.model.toLowerCase().trim()))
if (existingModel) {
setSelectedModel(existingModel)
}
}
}
return (
<div
ref={scrollRef}
className={cn(
`fixed inset-0 w-screen h-screen`,
`flex flex-col items-center justify-center`,
// `transition-all duration-300 ease-in-out`,
`overflow-y-scroll`,
)}>
<TooltipProvider>
{isLocked ? <Countdown
progressPercent={progressPercent}
remainingTimeInSec={remainingTimeInSec}
/> : null}
<div
className={cn(
`flex flex-col`,
`w-full md:max-w-4xl lg:max-w-5xl xl:max-w-6xl max-h-[80vh]`,
`space-y-8`,
// `transition-all duration-300 ease-in-out`,
)}>
<div
className={cn(
`flex flex-col`,
`flex-grow rounded-2xl md:rounded-3xl`,
`backdrop-blur-lg bg-white/40`,
`border-2 border-white/10`,
`items-center`,
`space-y-6 md:space-y-8 lg:space-y-12 xl:space-y-16`,
`px-3 py-6 md:px-6 md:py-12 xl:px-8 xl:py-16`,
)}>
{assetUrl ? <div
className={cn(
`flex flex-col`,
`space-y-3 md:space-y-6`,
`items-center`,
)}>
{assetUrl.startsWith("data:video/mp4")
? <video
muted
autoPlay
loop
src={assetUrl}
className="rounded-md overflow-hidden"
/> :
<img
src={assetUrl}
className={cn(
`w-[512px] object-cover`,
`rounded-2xl`
)}
/>}
</div> : null}
<div className={cn(
`flex flex-col md:flex-row`,
`space-y-3 md:space-y-0 md:space-x-3`,
` w-full md:max-w-[1024px]`,
`items-center justify-between`
)}>
<div className={cn(
`flex flex-row flex-grow w-full`
)}>
<input
type="text"
placeholder={`Imagine a funny gif`}
className={cn(
headingFont.className,
`w-full`,
`input input-bordered rounded-full`,
`transition-all duration-300 ease-in-out`,
`disabled:bg-sky-100 disabled:text-sky-500 disabled:border-transparent`,
isLocked
? `bg-sky-100 text-sky-500 border-transparent`
: `bg-sky-200 text-sky-600 selection:bg-sky-200`,
`text-left`,
`text-xl leading-10 px-6 h-16 pt-1`,
`selection:bg-sky-800 selection:text-sky-200`
)}
value={promptDraft}
onChange={e => setPromptDraft(e.target.value)}
onKeyDown={({ key }) => {
if (key === 'Enter') {
if (!isLocked) {
handleSubmit()
}
}
}}
disabled={isLocked}
/>
<div className={cn(
`flex flew-row ml-[-64px] items-center`,
`transition-all duration-300 ease-in-out`,
`text-base`,
`bg-sky-200`,
`rounded-full`,
`text-right`,
`p-1`,
headingFont.className,
colorClass,
shouldWarn && !isLocked ? "opacity-100" : "opacity-0"
)}>
<span>{nbCharsUsed}</span>
<span>/</span>
<span>{nbCharsLimits}</span>
</div>
</div>
<div className="flex flex-row w-52">
<animated.button
style={{
textShadow: "0px 0px 1px #000000ab",
...submitButtonBouncer
}}
onMouseEnter={() => setOverSubmitButton(true)}
onMouseLeave={() => setOverSubmitButton(false)}
className={cn(
`px-6 py-3`,
`rounded-full`,
`transition-all duration-300 ease-in-out`,
isLocked
? `bg-orange-500/20 border-orange-800/10`
: `bg-sky-500/80 hover:bg-sky-400/100 border-sky-800/20`,
`text-center`,
`w-full`,
`text-2xl text-sky-50`,
`border`,
headingFont.className,
// `transition-all duration-300`,
// `hover:animate-bounce`
)}
disabled={isLocked}
onClick={handleSubmit}
>
{isLocked ? `Loading..` : "Generate"}
</animated.button>
</div>
</div>
</div>
<div
className={cn(
`flex flex-col`,
`flex-grow rounded-2xl md:rounded-3xl`,
`backdrop-blur-lg bg-white/40`,
`border-2 border-white/10`,
`items-center`,
`space-y-2 md:space-y-3 lg:space-y-4 xl:space-y-6`,
`px-3 py-6 md:px-6 md:py-12 xl:px-8 xl:py-16`,
)}>
<div className="flex flex-row">
<h3 className={cn(
headingFont.className,
"text-4xl text-sky-600 mb-4"
)}>{models.length ? "Pick a style:" : "Loading styles.."}</h3>
</div>
<div className="grid grid-cols-4 sm:grid-cols-6 md:grid-cols-8 lg:grid-cols-10 xl:grid-cols-12 gap-2">
{models.map(model =>
<div key={model.repo}>
<Tooltip>
<TooltipTrigger asChild>
<div
className={isLocked ? 'cursor-not-allowed' : `cursor-pointer`}
onClick={() => {
if (!isLocked) { setSelectedModel(model) }
}}>
<img
src={
model.image.startsWith("http")
? model.image
: `https://multimodalart-loratheexplorer.hf.space/file=${model.image}`
}
className={cn(
`transition-all duration-150 ease-in-out`,
`w-20 h-20 object-cover rounded-lg overflow-hidden`,
`border-4 border-transparent`,
isLocked ? '' : `hover:border-yellow-50 hover:scale-110`,
selectedModel?.repo === model.repo
? `scale-110 border-4 border-yellow-300 hover:border-yellow-300`
: ``
)}
></img>
</div>
</TooltipTrigger>
{!isLocked && <TooltipContent>
<p className="w-full max-w-xl">{model.title}</p>
</TooltipContent>}
</Tooltip>
</div>
)}
</div>
</div>
<div
className={cn(
`flex flex-col`,
`flex-grow rounded-2xl md:rounded-3xl`,
`backdrop-blur-lg bg-white/40`,
`border-2 border-white/10`,
`items-center`,
`space-y-2 md:space-y-3 lg:space-y-4 xl:space-y-6`,
`px-3 py-6 md:px-6 md:py-12 xl:px-8 xl:py-16`,
)}>
<div className="flex flex-row">
<h3 className={cn(
headingFont.className,
"text-4xl text-sky-600 mb-4"
)}>{communityRoll.length ? "Community creations:" : "Loading community roll.."}</h3>
</div>
<div className="grid grid-cols-1 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 xl:grid-cols-8 gap-2">
{communityRoll.map(post =>
<div key={post.postId}>
<Tooltip>
<TooltipTrigger asChild>
<div
className={isLocked ? 'cursor-not-allowed' : `cursor-pointer`}
onClick={() => { handleSelectCommunityPost(post) }}>
<video
muted
autoPlay
loop
src={post.assetUrl}
className={cn(
`rounded-md overflow-hidden`,
`transition-all duration-150 ease-in-out`,
`w-40 h-30 object-cover rounded-lg overflow-hidden`,
`border-4 border-transparent`,
isLocked ? '' : `hover:border-yellow-50 hover:scale-110`,
)}
/>
</div>
</TooltipTrigger>
{!isLocked && <TooltipContent>
<p className="w-full max-w-xl">{post.prompt}</p>
</TooltipContent>}
</Tooltip>
</div>
)}
</div>
</div>
</div>
</TooltipProvider>
</div>
)
}
|