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
|
import { FullPageSpinner } from "@/components/ui/full-page-spinner";
import { toast } from "@/components/ui/use-toast";
import { api } from "@/lib/trpc";
import {
useCreateHighlight,
useDeleteHighlight,
useUpdateHighlight,
} from "@karakeep/shared-react/hooks/highlights";
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 { data: highlights } = api.highlights.getForBookmark.useQuery({
bookmarkId,
});
const { data: cachedContent, isPending: isCachedContentLoading } =
api.bookmarks.getBookmark.useQuery(
{
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="text-destructive">Failed to fetch link content ...</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;
}
|