Spaces:
Build error
Build error
File size: 5,210 Bytes
3eebcd0 | 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 | "use client";
import { useState } from "react";
import { Zap, Play, Pause } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
import { ScrollArea } from "@/components/ui/scroll-area";
import { Label } from "@/components/ui/label";
import { toast } from "sonner";
import { apiFetch, type Automation } from "./types";
interface Props { automations: Automation[]; onCreated: () => void; }
export default function AutomationTab({ automations, onCreated }: Props) {
const [automationName, setAutomationName] = useState("");
const [automationType, setAutomationType] = useState("content_generation");
const handleCreateAutomation = async () => {
if (!automationName.trim()) { toast.error("Dale un nombre"); return; }
try {
const result = await apiFetch("/automation", {
method: "POST",
body: JSON.stringify({
name: automationName, type: automationType, trigger: "schedule",
triggerConfig: { schedule: "daily:09:00" },
actions: [{ type: "generate_content", prompt: "Genera contenido de lifestyle" }],
}),
});
if (result.success) {
toast.success("Automatización creada");
setAutomationName("");
onCreated();
} else toast.error(result.error);
} catch { toast.error("Error"); }
};
const handleToggleAutomation = async (id: string, currentStatus: boolean) => {
try {
await apiFetch("/automation", {
method: "PUT",
body: JSON.stringify({ id, isActive: !currentStatus }),
});
onCreated();
} catch { toast.error("Error"); }
};
return (
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6">
<Card className="bg-slate-900/50 border-slate-800">
<CardHeader><CardTitle className="flex items-center gap-2"><Zap className="h-5 w-5 text-amber-400" />Crear Automatización</CardTitle></CardHeader>
<CardContent className="space-y-4">
<Input placeholder="Nombre de la automatización" value={automationName} onChange={(e) => setAutomationName(e.target.value)} className="bg-slate-800 border-slate-700" />
<div>
<Label className="text-xs text-slate-400">Tipo</Label>
<Select value={automationType} onValueChange={setAutomationType}>
<SelectTrigger className="bg-slate-800 border-slate-700 mt-1"><SelectValue /></SelectTrigger>
<SelectContent>
<SelectItem value="content_generation">Generación de Contenido</SelectItem>
<SelectItem value="posting">Publicación Automática</SelectItem>
<SelectItem value="cross_posting">Cross-Posting</SelectItem>
<SelectItem value="trend_tracking">Seguimiento de Tendencias</SelectItem>
</SelectContent>
</Select>
</div>
<Button onClick={handleCreateAutomation} className="w-full bg-amber-600 hover:bg-amber-700">
<Zap className="h-4 w-4 mr-2" />Crear
</Button>
</CardContent>
</Card>
<Card className="bg-slate-900/50 border-slate-800">
<CardHeader><CardTitle>Automatizaciones Activas</CardTitle></CardHeader>
<CardContent>
<ScrollArea className="h-64">
{automations.length === 0 ? (
<p className="text-slate-400 text-center py-8">No hay automatizaciones</p>
) : (
<div className="space-y-2">
{automations.map((a) => (
<div key={a.id} className="p-3 rounded-lg bg-slate-800/50 flex items-center justify-between">
<div>
<p className="font-medium text-sm">{a.name}</p>
<p className="text-xs text-slate-400">{a.type} • {a.runCount} ejecuciones</p>
</div>
<Button size="sm" variant="ghost" onClick={() => handleToggleAutomation(a.id, a.isActive)}>
{a.isActive ? <Pause className="h-4 w-4" /> : <Play className="h-4 w-4" />}
</Button>
</div>
))}
</div>
)}
</ScrollArea>
</CardContent>
</Card>
</div>
);
}
|