"use client" import { useEffect, useState, useTransition } from "react" import { cn } from "@/lib/utils" import { TopMenu } from "./interface/top-menu" import { fonts } from "@/lib/fonts" import { useStore } from "./store" import { Zoom } from "./interface/zoom" import { getStory } from "./queries/getStory" import { BottomBar } from "./interface/bottom-bar" import { Page } from "./interface/page" export default function Main() { const [_isPending, startTransition] = useTransition() const isGeneratingStory = useStore(state => state.isGeneratingStory) const setGeneratingStory = useStore(state => state.setGeneratingStory) const font = useStore(state => state.font) const preset = useStore(state => state.preset) const prompt = useStore(state => state.prompt) const setLayouts = useStore(state => state.setLayouts) const setPanels = useStore(state => state.setPanels) const setCaptions = useStore(state => state.setCaptions) const zoomLevel = useStore(state => state.zoomLevel) const [waitABitMore, setWaitABitMore] = useState(false) // react to prompt changes useEffect(() => { if (!prompt) { return } startTransition(async () => { setWaitABitMore(false) setGeneratingStory(true) try { const llmResponse = await getStory({ preset, prompt }) console.log("LLM responded:", llmResponse) // we have to limit the size of the prompt, otherwise the rest of the style won't be followed let limitedPrompt = prompt.slice(0, 77) if (limitedPrompt.length !== prompt.length) { console.log("Sorry folks, the prompt was cut to:", limitedPrompt) } const panelPromptPrefix = preset.imagePrompt(limitedPrompt).join(", ") const nbPanels = 4 const newPanels: string[] = [] const newCaptions: string[] = [] setWaitABitMore(true) console.log("Panel prompts for SDXL:") for (let p = 0; p < nbPanels; p++) { newCaptions.push(llmResponse[p]?.caption || "...") const newPanel = [panelPromptPrefix, llmResponse[p]?.instructions || ""].map(chunk => chunk).join(", ") newPanels.push(newPanel) console.log(newPanel) } setCaptions(newCaptions) setPanels(newPanels) } catch (err) { console.error(err) } finally { setTimeout(() => { setGeneratingStory(false) setWaitABitMore(false) }, 12000) } }) }, [prompt, preset?.label]) // important: we need to react to preset changes too return (
105 ? `px-0` : `pl-1 pr-8 md:pl-16 md:pr-16`, `print:pt-0 print:px-0 print:pl-0 print:pr-0`, fonts.actionman.className )}>
105 ? `items-start` : `items-center` )}>
{/* // we could support multiple pages here, // but let's disable it for now */}
{waitABitMore ? `Story is ready, but server is a bit busy!`: 'Generating a new story..'}
{waitABitMore ? `Please hold tight..` : ''}
) }