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
|
import { FullPageSpinner } from "@/components/ui/full-page-spinner";
import { toast } from "@/components/ui/sonner";
import { useTranslation } from "@/lib/i18n/client";
import { useQuery } from "@tanstack/react-query";
import { FileX } from "lucide-react";
import {
useCreateHighlight,
useDeleteHighlight,
useUpdateHighlight,
} from "@karakeep/shared-react/hooks/highlights";
import { useTRPC } from "@karakeep/shared-react/trpc";
import { BookmarkTypes } from "@karakeep/shared/types/bookmarks";
import BookmarkHTMLHighlighter from "./BookmarkHtmlHighlighter";
export default function ReaderView({
bookmarkId,
className,
style,
readOnly,
}: {
bookmarkId: string;
className?: string;
style?: React.CSSProperties;
readOnly: boolean;
}) {
const { t } = useTranslation();
const api = useTRPC();
const { data: highlights } = useQuery(
api.highlights.getForBookmark.queryOptions({
bookmarkId,
}),
);
const { data: cachedContent, isPending: isCachedContentLoading } = useQuery(
api.bookmarks.getBookmark.queryOptions(
{
bookmarkId,
includeContent: true,
},
{
select: (data) =>
data.content.type == BookmarkTypes.LINK
? data.content.htmlContent
: null,
},
),
);
const { mutate: createHighlight } = useCreateHighlight({
onSuccess: () => {
toast({
description: "Highlight has been created!",
});
},
onError: () => {
toast({
variant: "destructive",
description: "Something went wrong",
});
},
});
const { mutate: updateHighlight } = useUpdateHighlight({
onSuccess: () => {
toast({
description: "Highlight has been updated!",
});
},
onError: () => {
toast({
variant: "destructive",
description: "Something went wrong",
});
},
});
const { mutate: deleteHighlight } = useDeleteHighlight({
onSuccess: () => {
toast({
description: "Highlight has been deleted!",
});
},
onError: () => {
toast({
variant: "destructive",
description: "Something went wrong",
});
},
});
let content;
if (isCachedContentLoading) {
content = <FullPageSpinner />;
} else if (!cachedContent) {
content = (
<div className="flex h-full w-full items-center justify-center p-4">
<div className="max-w-sm space-y-4 text-center">
<div className="flex justify-center">
<div className="flex h-16 w-16 items-center justify-center rounded-full bg-muted">
<FileX className="h-8 w-8 text-muted-foreground" />
</div>
</div>
<div className="space-y-2">
<h3 className="text-lg font-medium text-foreground">
{t("preview.fetch_error_title")}
</h3>
<p className="text-sm leading-relaxed text-muted-foreground">
{t("preview.fetch_error_description")}
</p>
</div>
</div>
</div>
);
} else {
content = (
<BookmarkHTMLHighlighter
className={className}
style={style}
htmlContent={cachedContent || ""}
highlights={highlights?.highlights ?? []}
readOnly={readOnly}
onDeleteHighlight={(h) =>
deleteHighlight({
highlightId: h.id,
})
}
onUpdateHighlight={(h) =>
updateHighlight({
highlightId: h.id,
color: h.color,
note: h.note,
})
}
onHighlight={(h) =>
createHighlight({
startOffset: h.startOffset,
endOffset: h.endOffset,
color: h.color,
bookmarkId,
text: h.text,
note: h.note ?? null,
})
}
/>
);
}
return content;
}
|