* feat(client): add function alias support * feat(client): auto config from env vars * fix(client): username in aliased url * feat: nextjs proxy handler * fix: update client tests * feat(client): built-in queue support * feat: client + nextjs e2e demo * chore: update browserslist * chore: update version info * chore: update readme badges * fix: ignore lint error on require
157 lines
4.7 KiB
TypeScript
157 lines
4.7 KiB
TypeScript
import * as fal from '@fal-ai/serverless-client';
|
|
import { withNextProxy } from '@fal-ai/serverless-nextjs';
|
|
import { useMemo, useState } from 'react';
|
|
|
|
// @snippet:start(client.config)
|
|
fal.config({
|
|
requestMiddleware: withNextProxy(),
|
|
});
|
|
// @snippet:end
|
|
|
|
// @snippet:start(client.result.type)
|
|
type Image = {
|
|
url: string;
|
|
file_name: string;
|
|
file_size: number;
|
|
};
|
|
type Result = {
|
|
images: Image[];
|
|
};
|
|
// @snippet:end
|
|
|
|
function Error(props) {
|
|
if (!props.error) {
|
|
return null;
|
|
}
|
|
return (
|
|
<div
|
|
className="p-4 mb-4 text-sm text-red-800 rounded bg-red-50 dark:bg-gray-800 dark:text-red-400"
|
|
role="alert"
|
|
>
|
|
<span className="font-medium">Error</span> {props.error.message}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const DEFAULT_PROMPT = "a city landscape of a cyberpunk metropolis, raining, purple, pink and teal neon lights, highly detailed, uhd";
|
|
|
|
export function Index() {
|
|
// @snippet:start(client.ui.state)
|
|
// Input state
|
|
const [prompt, setPrompt] = useState<string>(DEFAULT_PROMPT);
|
|
// Result state
|
|
const [loading, setLoading] = useState(false);
|
|
const [error, setError] = useState<Error | null>(null);
|
|
const [result, setResult] = useState<Result | null>(null);
|
|
const [logs, setLogs] = useState<string[]>([]);
|
|
const [elapsedTime, setElapsedTime] = useState<number>(0);
|
|
// @snippet:end
|
|
const image = useMemo(() => {
|
|
if (!result) {
|
|
return null;
|
|
}
|
|
return result.images[0];
|
|
}, [result]);
|
|
|
|
const reset = () => {
|
|
setLoading(false);
|
|
setError(null);
|
|
setResult(null);
|
|
setLogs([]);
|
|
setElapsedTime(0);
|
|
};
|
|
|
|
const handleOnClick = async (e) => {
|
|
e.preventDefault();
|
|
reset();
|
|
// @snippet:start(client.queue.subscribe)
|
|
setLoading(true);
|
|
const start = Date.now();
|
|
try {
|
|
const result: Result = await fal.queue.subscribe('110602490-lora', {
|
|
input: {
|
|
prompt,
|
|
model_name: 'stabilityai/stable-diffusion-xl-base-1.0',
|
|
image_size: 'square_hd',
|
|
},
|
|
onQueueUpdate(status) {
|
|
setElapsedTime(Date.now() - start);
|
|
if (status.status === 'IN_PROGRESS') {
|
|
setLogs(status.logs.map((log) => log.message));
|
|
}
|
|
},
|
|
});
|
|
setResult(result);
|
|
} catch (error) {
|
|
setError(error);
|
|
} finally {
|
|
setLoading(false);
|
|
setElapsedTime(Date.now() - start);
|
|
}
|
|
// @snippet:end
|
|
};
|
|
return (
|
|
<div className="min-h-screen dark:bg-gray-800 dark:text-gray-50 bg-gray-100 text-gray-800">
|
|
<main className="flex flex-col items-center justify-center w-full flex-1 px-20 py-10 space-y-8">
|
|
<h1 className="text-4xl font-bold mb-8">
|
|
Hello <code className="font-light text-pink-600">fal</code>
|
|
</h1>
|
|
<div className="text-lg w-full">
|
|
<label htmlFor="prompt" className="block mb-2 text-current">
|
|
Prompt
|
|
</label>
|
|
<input
|
|
className="w-full text-lg p-2 rounded bg-black/10 dark:bg-white/5 border border-black/20 dark:border-white/10"
|
|
id="prompt"
|
|
name="prompt"
|
|
placeholder="Imagine..."
|
|
value={prompt}
|
|
autoComplete="off"
|
|
onChange={(e) => setPrompt(e.target.value)}
|
|
onBlur={(e) => setPrompt(e.target.value.trim())}
|
|
/>
|
|
</div>
|
|
|
|
<button
|
|
onClick={handleOnClick}
|
|
className="bg-indigo-600 hover:bg-indigo-700 text-white font-bold text-lg py-3 px-6 mx-auto rounded focus:outline-none focus:shadow-outline"
|
|
disabled={loading}
|
|
>
|
|
{loading ? 'Generating...' : 'Generate Image'}
|
|
</button>
|
|
|
|
<Error error={error} />
|
|
|
|
<div className="w-full flex flex-col space-y-4">
|
|
<div className="mx-auto">
|
|
{image && (
|
|
// eslint-disable-next-line @next/next/no-img-element
|
|
<img src={image.url} alt="" />
|
|
)}
|
|
</div>
|
|
<div className="space-y-2">
|
|
<h3 className="text-xl font-light">JSON Result</h3>
|
|
<p className="text-sm text-current/80">
|
|
{`Elapsed Time (seconds): ${(elapsedTime / 1000).toFixed(2)}`}
|
|
</p>
|
|
<pre className="text-sm bg-black/80 text-white/80 font-mono h-60 rounded whitespace-pre overflow-auto w-full">
|
|
{result
|
|
? JSON.stringify(result, null, 2)
|
|
: '// result pending...'}
|
|
</pre>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<h3 className="text-xl font-light">Logs</h3>
|
|
<pre className="text-sm bg-black/80 text-white/80 font-mono h-60 rounded whitespace-pre overflow-auto w-full">
|
|
{logs.filter(Boolean).join('\n')}
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Index;
|