blob: 4977736fca0849715c003b1a547a85438927640a (
plain) (
blame)
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
|
"use client";
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
import { Badge } from "@/components/ui/badge";
import { api } from "@/lib/trpc";
import { AlertCircle } from "lucide-react";
import { AdminCard } from "./AdminCard";
interface AdminNotice {
level: "info" | "warning" | "error";
message: React.ReactNode;
title: string;
}
function useAdminNotices() {
const { data } = api.admin.getAdminNoticies.useQuery();
if (!data) {
return [];
}
const ret: AdminNotice[] = [];
if (data.legacyContainersNotice) {
ret.push({
level: "warning",
message: (
<p>
You're using the legacy docker container images. Those will stop
getting supported soon. Please follow{" "}
<a
href="https://docs.hoarder.app/next/Guides/legacy-container-upgrade"
className="underline"
>
this guide
</a>{" "}
to upgrade.
</p>
),
title: "Legacy Container Images",
});
}
return ret;
}
export function AdminNotices() {
const notices = useAdminNotices();
if (notices.length === 0) {
return null;
}
return (
<AdminCard>
<div className="flex flex-col gap-2">
{notices.map((n, i) => (
<Alert key={i} variant="destructive">
<AlertCircle className="h-4 w-4" />
<AlertTitle>{n.title}</AlertTitle>
<AlertDescription>{n.message}</AlertDescription>
</Alert>
))}
</div>
</AdminCard>
);
}
export function AdminNoticeBadge() {
const notices = useAdminNotices();
if (notices.length === 0) {
return null;
}
return <Badge variant="destructive">{notices.length}</Badge>;
}
|