added friends endpoints and added features for viewing

This commit is contained in:
Sven laptop
2026-07-31 14:43:58 +02:00
parent b712c6ec07
commit 374fc9fb67
21 changed files with 1894 additions and 122 deletions
+36
View File
@@ -0,0 +1,36 @@
export function ToastContainer({ toasts }) {
if (!toasts.length) return null;
return (
<div className="toast-container" role="status" aria-live="polite">
{toasts.map((toast) => (
<div
key={toast.id}
className={`toast ${toast.leaving ? "leaving" : ""} toast-${toast.type}`}
role="alert"
>
<span className="toast-icon">
{toast.type === "success" ? (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round">
<polyline points="20 6 9 17 4 12" />
</svg>
) : toast.type === "error" ? (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round">
<circle cx="12" cy="12" r="10" />
<line x1="15" y1="9" x2="9" y2="15" />
<line x1="9" y1="9" x2="15" y2="15" />
</svg>
) : (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round">
<circle cx="12" cy="12" r="10" />
<line x1="12" y1="16" x2="12" y2="12" />
<line x1="12" y1="8" x2="12.01" y2="8" />
</svg>
)}
</span>
{toast.message}
</div>
))}
</div>
);
}