Spaces:
Runtime error
Runtime error
File size: 5,591 Bytes
cd8bd0a | 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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | "use client";
import { useState } from "react";
import { WebhookDeliveriesPanel } from "./WebhookDeliveriesPanel";
export type WebhookKind = "slack" | "telegram" | "discord" | "custom";
export interface WebhookItem {
id: string;
url: string;
events: string[];
secret: string | null;
enabled: boolean;
description: string;
created_at: string;
last_triggered_at: string | null;
last_status: number | null;
failure_count: number;
kind: WebhookKind;
metadata_encrypted?: string | null;
}
const KIND_ICONS: Record<WebhookKind, string> = {
slack: "chat",
telegram: "send",
discord: "forum",
custom: "webhook",
};
const KIND_COLORS: Record<WebhookKind, string> = {
slack: "text-emerald-500",
telegram: "text-blue-500",
discord: "text-violet-500",
custom: "text-amber-500",
};
function getStatus(wh: WebhookItem): "active" | "inactive" | "errored" {
if (!wh.enabled) return "inactive";
if (wh.failure_count > 0 || (wh.last_status !== null && wh.last_status >= 400)) return "errored";
return "active";
}
interface WebhookCardProps {
webhook: WebhookItem;
t: (key: string, opts?: Record<string, unknown>) => string;
testingId: string | null;
onTest: (wh: WebhookItem) => void;
onToggleEnabled: (wh: WebhookItem) => void;
onEdit: (wh: WebhookItem) => void;
onDelete: (wh: WebhookItem) => void;
}
export function WebhookCard({
webhook,
t,
testingId,
onTest,
onToggleEnabled,
onEdit,
onDelete,
}: WebhookCardProps) {
const [expanded, setExpanded] = useState(false);
const status = getStatus(webhook);
const isTesting = testingId === webhook.id;
return (
<div className="rounded-xl border border-border bg-surface transition-shadow hover:shadow-sm">
<div className="flex items-center gap-3 p-4">
<span
className={`material-symbols-outlined shrink-0 text-[22px] ${KIND_COLORS[webhook.kind]}`}
>
{KIND_ICONS[webhook.kind]}
</span>
<div className="min-w-0 flex-1">
<p className="truncate text-sm font-semibold text-text-main">
{webhook.description || t("unnamedWebhook")}
</p>
<p className="truncate text-xs text-text-muted">{webhook.url}</p>
</div>
<span
className={`shrink-0 rounded-full border px-2 py-0.5 text-xs font-medium ${
status === "active"
? "border-emerald-500/30 bg-emerald-500/10 text-emerald-600 dark:text-emerald-300"
: status === "errored"
? "border-red-500/30 bg-red-500/10 text-red-600 dark:text-red-300"
: "border-border bg-sidebar text-text-muted"
}`}
>
{t(status)}
</span>
<div className="flex shrink-0 items-center gap-1">
<button
type="button"
onClick={() => onTest(webhook)}
disabled={isTesting}
title={t("testWebhook")}
className="rounded-lg p-2 text-text-muted transition-colors hover:bg-primary/10 hover:text-primary disabled:opacity-40"
>
<span
className={`material-symbols-outlined text-[18px] ${isTesting ? "animate-spin" : ""}`}
>
{isTesting ? "sync" : "send"}
</span>
</button>
<button
type="button"
onClick={() => onToggleEnabled(webhook)}
title={webhook.enabled ? t("disable") : t("enable")}
className="rounded-lg p-2 text-text-muted transition-colors hover:bg-surface/60 hover:text-text-main"
>
<span className="material-symbols-outlined text-[18px]">
{webhook.enabled ? "toggle_on" : "toggle_off"}
</span>
</button>
<button
type="button"
onClick={() => onEdit(webhook)}
title={t("edit")}
className="rounded-lg p-2 text-text-muted transition-colors hover:bg-surface/60 hover:text-text-main"
>
<span className="material-symbols-outlined text-[18px]">edit</span>
</button>
<button
type="button"
onClick={() => onDelete(webhook)}
title={t("delete")}
className="rounded-lg p-2 text-red-500 transition-colors hover:bg-red-500/10"
>
<span className="material-symbols-outlined text-[18px]">delete</span>
</button>
<button
type="button"
onClick={() => setExpanded((v) => !v)}
title={expanded ? "Collapse" : "Expand"}
className="rounded-lg p-2 text-text-muted transition-colors hover:bg-surface/60 hover:text-text-main"
>
<span className="material-symbols-outlined text-[18px]">
{expanded ? "expand_less" : "expand_more"}
</span>
</button>
</div>
</div>
{expanded && (
<div className="border-t border-border px-4 pb-4 pt-3">
<div className="mb-3 flex flex-wrap gap-1">
{webhook.events.map((ev) => (
<span
key={ev}
className="rounded-full border border-border bg-sidebar px-2 py-0.5 text-xs text-text-muted"
>
{ev === "*" ? t("allEvents") : ev}
</span>
))}
</div>
<p className="mb-2 text-xs font-medium uppercase tracking-wider text-text-muted">
{t("deliveries.title")}
</p>
<WebhookDeliveriesPanel webhookId={webhook.id} t={t} />
</div>
)}
</div>
);
}
|