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
|
import { ActivityIndicator, Alert, Pressable, View } from "react-native";
import * as Haptics from "expo-haptics";
import { useRouter } from "expo-router";
import { Text } from "@/components/ui/Text";
import { api } from "@/lib/trpc";
import dayjs from "dayjs";
import relativeTime from "dayjs/plugin/relativeTime";
import { ExternalLink, Trash2 } from "lucide-react-native";
import type { ZHighlight } from "@karakeep/shared/types/highlights";
import { useDeleteHighlight } from "@karakeep/shared-react/hooks/highlights";
import { useToast } from "../ui/Toast";
dayjs.extend(relativeTime);
// Color map for highlights (mapped to Tailwind CSS classes used in NativeWind)
const HIGHLIGHT_COLOR_MAP = {
red: "#fecaca", // bg-red-200
green: "#bbf7d0", // bg-green-200
blue: "#bfdbfe", // bg-blue-200
yellow: "#fef08a", // bg-yellow-200
} as const;
export default function HighlightCard({
highlight,
}: {
highlight: ZHighlight;
}) {
const { toast } = useToast();
const router = useRouter();
const onError = () => {
toast({
message: "Something went wrong",
variant: "destructive",
showProgress: false,
});
};
const { mutate: deleteHighlight, isPending: isDeleting } = useDeleteHighlight(
{
onSuccess: () => {
toast({
message: "Highlight has been deleted!",
showProgress: false,
});
},
onError,
},
);
const deleteHighlightAlert = () =>
Alert.alert(
"Delete highlight?",
"Are you sure you want to delete this highlight?",
[
{ text: "Cancel", style: "cancel" },
{
text: "Delete",
onPress: () => deleteHighlight({ highlightId: highlight.id }),
style: "destructive",
},
],
);
const { data: bookmark } = api.bookmarks.getBookmark.useQuery(
{
bookmarkId: highlight.bookmarkId,
},
{
retry: false,
},
);
const handleBookmarkPress = () => {
Haptics.selectionAsync();
router.push(`/dashboard/bookmarks/${highlight.bookmarkId}`);
};
return (
<View className="overflow-hidden rounded-xl bg-card p-4">
<View className="flex gap-3">
{/* Highlight text with colored border */}
<View
className="rounded-r-lg border-l-4 bg-muted/30 p-3"
style={{ borderLeftColor: HIGHLIGHT_COLOR_MAP[highlight.color] }}
>
<Text className="italic text-foreground">
{highlight.text || "No text available"}
</Text>
</View>
{/* Note if present */}
{highlight.note && (
<View className="rounded-lg bg-muted/50 p-2">
<Text className="text-sm text-muted-foreground">
Note: {highlight.note}
</Text>
</View>
)}
{/* Footer with timestamp and actions */}
<View className="flex flex-row items-center justify-between">
<View className="flex flex-row items-center gap-2">
<Text className="text-xs text-muted-foreground">
{dayjs(highlight.createdAt).fromNow()}
</Text>
{bookmark && (
<>
<Text className="text-xs text-muted-foreground">•</Text>
<Pressable
onPress={handleBookmarkPress}
className="flex flex-row items-center gap-1"
>
<ExternalLink size={12} color="gray" />
<Text className="text-xs text-muted-foreground">Source</Text>
</Pressable>
</>
)}
</View>
<View className="flex flex-row gap-2">
{isDeleting ? (
<ActivityIndicator size="small" />
) : (
<Pressable
onPress={() => {
Haptics.selectionAsync();
deleteHighlightAlert();
}}
>
<Trash2 size={18} color="#ef4444" />
</Pressable>
)}
</View>
</View>
</View>
</View>
);
}
|