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
|
"use client";
import { ActionButton } from "@/components/ui/action-button";
import { FullPageSpinner } from "@/components/ui/full-page-spinner";
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
import { toast } from "@/components/ui/use-toast";
import { RefreshCw, Trash2 } from "lucide-react";
import { useTranslation } from "react-i18next";
import {
useDeleteBookmark,
useRecrawlBookmark,
} from "@karakeep/shared-react/hooks/bookmarks";
import { api } from "@karakeep/shared-react/trpc";
export default function BrokenLinksPage() {
const { t } = useTranslation();
const apiUtils = api.useUtils();
const { data, isPending } = api.bookmarks.getBrokenLinks.useQuery();
const { mutate: deleteBookmark, isPending: isDeleting } = useDeleteBookmark({
onSuccess: () => {
toast({
description: t("toasts.bookmarks.deleted"),
});
apiUtils.bookmarks.getBrokenLinks.invalidate();
},
onError: () => {
toast({
description: t("common.something_went_wrong"),
variant: "destructive",
});
},
});
const { mutate: recrawlBookmark, isPending: isRecrawling } =
useRecrawlBookmark({
onSuccess: () => {
toast({
description: t("toasts.bookmarks.refetch"),
});
apiUtils.bookmarks.getBrokenLinks.invalidate();
},
onError: () => {
toast({
description: t("common.something_went_wrong"),
variant: "destructive",
});
},
});
return (
<div className="rounded-md border bg-background p-4">
<div className="flex items-center justify-between">
<div className="mb-2 text-lg font-medium">
{t("settings.broken_links.broken_links")}
</div>
</div>
<div className="mt-2">
{isPending && <FullPageSpinner />}
{!isPending && data && data.bookmarks.length == 0 && (
<p className="rounded-md bg-muted p-2 text-sm text-muted-foreground">
No broken links found
</p>
)}
{!isPending && data && data.bookmarks.length > 0 && (
<Table>
<TableHeader>
<TableRow>
<TableHead>{t("common.url")}</TableHead>
<TableHead>{t("common.created_at")}</TableHead>
<TableHead>
{t("settings.broken_links.last_crawled_at")}
</TableHead>
<TableHead>
{t("settings.broken_links.crawling_status")}
</TableHead>
<TableHead>{t("common.action")}</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{data.bookmarks.map((b) => (
<TableRow key={b.id}>
<TableCell>{b.url}</TableCell>
<TableCell>{b.createdAt?.toLocaleString()}</TableCell>
<TableCell>{b.crawledAt?.toLocaleString()}</TableCell>
<TableCell>
{b.isCrawlingFailure ? (
<span className="text-red-500">Failed</span>
) : (
b.statusCode
)}
</TableCell>
<TableCell className="flex gap-2">
<ActionButton
variant="secondary"
loading={isRecrawling}
onClick={() => recrawlBookmark({ bookmarkId: b.id })}
className="flex items-center gap-2"
>
<RefreshCw className="size-4" />
{t("actions.recrawl")}
</ActionButton>
<ActionButton
variant="destructive"
onClick={() => deleteBookmark({ bookmarkId: b.id })}
loading={isDeleting}
className="flex items-center gap-2"
>
<Trash2 className="size-4" />
{t("actions.delete")}
</ActionButton>
</TableCell>
</TableRow>
))}
<TableRow></TableRow>
</TableBody>
</Table>
)}
</div>
</div>
);
}
|