feat: Add FlexibleGenerationView for customizable AI content generation with character, asset, quality, and aspect ratio controls, including persistence and status polling.

This commit is contained in:
xds
2026-02-07 14:41:46 +03:00
parent fce9d427e8
commit 9f0805bba5
7 changed files with 707 additions and 12 deletions

View File

@@ -42,22 +42,20 @@ const handleLogout = () => {
</div>
<div class="flex-1 flex flex-col gap-6 w-full items-center">
<div
v-tooltip.right="'Home'"
<div v-tooltip.right="'Home'"
class="w-12 h-12 flex items-center justify-center rounded-xl cursor-pointer transition-all duration-300 bg-white/10 text-slate-50 shadow-inner">
<span class="text-2xl">🏠</span>
</div>
<div class="w-12 h-12 flex items-center justify-center rounded-xl cursor-pointer transition-all duration-300 text-slate-400 hover:bg-white/10 hover:text-slate-50"
@click="router.push('/assets')" v-tooltip.right="'Assets'">
@click="router.push('/assets')" v-tooltip.right="'Assets'">
<span class="text-2xl">📂</span>
</div>
<!-- Image Generation -->
<div class="w-12 h-12 flex items-center justify-center rounded-xl cursor-pointer transition-all duration-300 text-slate-400 hover:bg-white/10 hover:text-slate-50"
@click="router.push('/generation')" v-tooltip.right="'Image Generation'">
@click="router.push('/generation')" v-tooltip.right="'Image Generation'">
<span class="text-2xl">🎨</span>
</div>
<div
v-tooltip.right="'Characters'"
<div v-tooltip.right="'Characters'"
class="w-12 h-12 flex items-center justify-center rounded-xl cursor-pointer transition-all duration-300 text-slate-400 hover:bg-white/10 hover:text-slate-50">
<span class="text-2xl">👥</span>
</div>