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
|
import { faCheck, faCircle } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import type { components } from "../api/generated";
import { api } from "../services/api-client";
type Article = components["schemas"]["Article"];
interface Props {
article: Article;
onReadChange?: (articleId: string, isRead: boolean) => void;
}
export function ArticleItem({ article, onReadChange }: Props) {
const handleToggleRead = async (
articleId: string,
isCurrentlyRead: boolean,
) => {
const newReadState = !isCurrentlyRead;
onReadChange?.(articleId, newReadState);
if (isCurrentlyRead) {
await api.POST("/api/articles/{articleId}/unread", {
params: { path: { articleId } },
});
} else {
await api.POST("/api/articles/{articleId}/read", {
params: { path: { articleId } },
});
}
};
const handleArticleClick = async (article: Article) => {
window.open(article.url, "_blank", "noreferrer");
if (!article.isRead) {
onReadChange?.(article.id, true);
await api.POST("/api/articles/{articleId}/read", {
params: { path: { articleId: article.id } },
});
}
};
return (
<div
className={`group flex items-center gap-3 rounded-lg p-3 transition-all duration-200 ${
article.isRead
? "bg-white hover:bg-stone-50"
: "border-l-2 border-l-sky-500 bg-sky-50/50"
}`}
>
<button
type="button"
onClick={() => handleToggleRead(article.id, article.isRead)}
className={`flex-shrink-0 rounded-md p-1.5 transition-all duration-150 ${
article.isRead
? "text-stone-300 hover:bg-stone-100 hover:text-stone-500"
: "text-sky-500 hover:bg-sky-100 hover:text-sky-600"
}`}
title={article.isRead ? "Mark as unread" : "Mark as read"}
>
<FontAwesomeIcon
icon={article.isRead ? faCheck : faCircle}
className="h-4 w-4"
/>
</button>
<div className="min-w-0 flex-1">
<button
type="button"
onClick={() => handleArticleClick(article)}
className={`w-full text-left transition-colors duration-150 group-hover:text-sky-700 ${
article.isRead ? "text-stone-500" : "font-medium text-stone-900"
}`}
>
<span className="break-words">{article.title}</span>
</button>
</div>
</div>
);
}
|