2ab8af64d4
Variation spawner: select an image asset → spawn N variations that keep the same emotional pattern/visual style but explore different hook angles. Runs a focused ad-creative-designer agent with the original as a Gemini reference image. New assets link back via parentAssetId. Content repurposing: resize an image to all other platform dimensions using Sharp (cover crop). Captions are re-toned for the target platform via Claude CLI. No external APIs needed — fully local. - Add parentAssetId self-relation to Asset model - lib/repurpose.ts: Sharp resize, platform format mapping, caption re-toning - lib/variations.ts: asset DNA extraction, variation prompt builder, mini-pipeline - API routes: /api/assets/[id]/repurpose (GET formats, POST resize) - API routes: /api/assets/[id]/variations (GET existing, POST spawn) - Repurpose modal: checkbox list of target formats - Variation modal: count picker, async launch - Asset card: Repurpose + Variations buttons on image assets - Asset lineage: "Derived from" shown on child assets Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
225 lines
6.8 KiB
TypeScript
225 lines
6.8 KiB
TypeScript
"use client";
|
||
|
||
import { useEffect, useState, useCallback } from "react";
|
||
import { AssetCard } from "@/components/asset-card";
|
||
import { Button } from "@/components/ui/button";
|
||
import { Input } from "@/components/ui/input";
|
||
|
||
interface Asset {
|
||
id: string;
|
||
type: string;
|
||
platform?: string | null;
|
||
format?: string | null;
|
||
fileName: string;
|
||
filePath: string;
|
||
dimensions?: string | null;
|
||
metadata?: string | null;
|
||
status: string;
|
||
createdAt: string;
|
||
campaign?: { name: string };
|
||
parentAsset?: { id: string; fileName: string } | null;
|
||
}
|
||
|
||
interface AssetGalleryProps {
|
||
campaignId?: string;
|
||
onPushToPostiz?: (assetIds: string[]) => void;
|
||
}
|
||
|
||
export function AssetGallery({ campaignId, onPushToPostiz }: AssetGalleryProps) {
|
||
const [assets, setAssets] = useState<Asset[]>([]);
|
||
const [selectedIds, setSelectedIds] = useState<Set<string>>(new Set());
|
||
const [filters, setFilters] = useState({
|
||
platform: "all",
|
||
type: "all",
|
||
status: "all",
|
||
});
|
||
const [search, setSearch] = useState("");
|
||
const [sort, setSort] = useState("newest");
|
||
|
||
const fetchAssets = useCallback(() => {
|
||
const params = new URLSearchParams();
|
||
if (campaignId) params.set("campaignId", campaignId);
|
||
if (filters.platform !== "all") params.set("platform", filters.platform);
|
||
if (filters.type !== "all") params.set("type", filters.type);
|
||
if (filters.status !== "all") params.set("status", filters.status);
|
||
if (search) params.set("search", search);
|
||
|
||
fetch(`/api/assets?${params}`)
|
||
.then((r) => r.json())
|
||
.then(setAssets)
|
||
.catch(() => {});
|
||
}, [campaignId, filters, search]);
|
||
|
||
useEffect(() => {
|
||
fetchAssets();
|
||
}, [fetchAssets]);
|
||
|
||
async function handleStatusChange(id: string, status: string) {
|
||
await fetch(`/api/assets/${id}`, {
|
||
method: "PATCH",
|
||
headers: { "Content-Type": "application/json" },
|
||
body: JSON.stringify({ status }),
|
||
});
|
||
setAssets((prev) =>
|
||
prev.map((a) => (a.id === id ? { ...a, status } : a))
|
||
);
|
||
}
|
||
|
||
function toggleSelect(id: string) {
|
||
setSelectedIds((prev) => {
|
||
const next = new Set(prev);
|
||
if (next.has(id)) next.delete(id);
|
||
else next.add(id);
|
||
return next;
|
||
});
|
||
}
|
||
|
||
async function bulkUpdateStatus(status: string) {
|
||
await Promise.all(
|
||
Array.from(selectedIds).map((id) =>
|
||
fetch(`/api/assets/${id}`, {
|
||
method: "PATCH",
|
||
headers: { "Content-Type": "application/json" },
|
||
body: JSON.stringify({ status }),
|
||
})
|
||
)
|
||
);
|
||
setAssets((prev) =>
|
||
prev.map((a) => (selectedIds.has(a.id) ? { ...a, status } : a))
|
||
);
|
||
setSelectedIds(new Set());
|
||
}
|
||
|
||
const sortedAssets = [...assets].sort((a, b) => {
|
||
switch (sort) {
|
||
case "oldest":
|
||
return new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime();
|
||
case "name-asc":
|
||
return a.fileName.localeCompare(b.fileName);
|
||
case "name-desc":
|
||
return b.fileName.localeCompare(a.fileName);
|
||
case "platform":
|
||
return (a.platform || "").localeCompare(b.platform || "");
|
||
case "type":
|
||
return a.type.localeCompare(b.type);
|
||
case "newest":
|
||
default:
|
||
return new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime();
|
||
}
|
||
});
|
||
|
||
return (
|
||
<div className="space-y-4">
|
||
{/* Filters */}
|
||
<div className="flex flex-wrap gap-3 items-center">
|
||
<select
|
||
className="h-9 rounded-md border px-3 text-sm"
|
||
value={filters.platform}
|
||
onChange={(e) =>
|
||
setFilters((f) => ({ ...f, platform: e.target.value }))
|
||
}
|
||
>
|
||
<option value="all">All Platforms</option>
|
||
<option value="instagram">Instagram</option>
|
||
<option value="tiktok">TikTok</option>
|
||
<option value="nextdoor">Nextdoor</option>
|
||
</select>
|
||
|
||
<select
|
||
className="h-9 rounded-md border px-3 text-sm"
|
||
value={filters.type}
|
||
onChange={(e) =>
|
||
setFilters((f) => ({ ...f, type: e.target.value }))
|
||
}
|
||
>
|
||
<option value="all">All Types</option>
|
||
<option value="image">Images</option>
|
||
<option value="video">Videos</option>
|
||
<option value="copy">Copy</option>
|
||
<option value="script">Scripts</option>
|
||
</select>
|
||
|
||
<select
|
||
className="h-9 rounded-md border px-3 text-sm"
|
||
value={filters.status}
|
||
onChange={(e) =>
|
||
setFilters((f) => ({ ...f, status: e.target.value }))
|
||
}
|
||
>
|
||
<option value="all">All Status</option>
|
||
<option value="draft">Draft</option>
|
||
<option value="approved">Approved</option>
|
||
<option value="rejected">Rejected</option>
|
||
<option value="published">Published</option>
|
||
</select>
|
||
|
||
<select
|
||
className="h-9 rounded-md border px-3 text-sm"
|
||
value={sort}
|
||
onChange={(e) => setSort(e.target.value)}
|
||
>
|
||
<option value="newest">Newest First</option>
|
||
<option value="oldest">Oldest First</option>
|
||
<option value="name-asc">Name A–Z</option>
|
||
<option value="name-desc">Name Z–A</option>
|
||
<option value="platform">Platform</option>
|
||
<option value="type">Type</option>
|
||
</select>
|
||
|
||
<Input
|
||
placeholder="Search..."
|
||
value={search}
|
||
onChange={(e) => setSearch(e.target.value)}
|
||
className="h-9 w-48"
|
||
/>
|
||
|
||
{selectedIds.size > 0 && (
|
||
<div className="flex gap-2 ml-auto">
|
||
<Button
|
||
size="sm"
|
||
variant="outline"
|
||
onClick={() => bulkUpdateStatus("approved")}
|
||
>
|
||
Approve ({selectedIds.size})
|
||
</Button>
|
||
<Button
|
||
size="sm"
|
||
variant="outline"
|
||
onClick={() => bulkUpdateStatus("rejected")}
|
||
>
|
||
Reject ({selectedIds.size})
|
||
</Button>
|
||
{onPushToPostiz && (
|
||
<Button
|
||
size="sm"
|
||
onClick={() => onPushToPostiz(Array.from(selectedIds))}
|
||
>
|
||
Push to Postiz ({selectedIds.size})
|
||
</Button>
|
||
)}
|
||
</div>
|
||
)}
|
||
</div>
|
||
|
||
{/* Grid */}
|
||
{sortedAssets.length === 0 ? (
|
||
<p className="text-center text-muted-foreground py-12">
|
||
No assets yet. Launch a pipeline to generate content.
|
||
</p>
|
||
) : (
|
||
<div className="grid gap-4 grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
|
||
{sortedAssets.map((asset) => (
|
||
<AssetCard
|
||
key={asset.id}
|
||
asset={asset}
|
||
onStatusChange={handleStatusChange}
|
||
selected={selectedIds.has(asset.id)}
|
||
onSelect={toggleSelect}
|
||
/>
|
||
))}
|
||
</div>
|
||
)}
|
||
</div>
|
||
);
|
||
}
|