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
|
import React, { Fragment } from "react";
import classnames from "classnames";
import { HttpTimelinePostInfo } from "@/http/timeline";
import TimelinePostView from "./TimelinePostView";
import TimelineDateLabel from "./TimelineDateLabel";
function dateEqual(left: Date, right: Date): boolean {
return (
left.getDate() == right.getDate() &&
left.getMonth() == right.getMonth() &&
left.getFullYear() == right.getFullYear()
);
}
export interface TimelinePostListViewProps {
className?: string;
style?: React.CSSProperties;
posts: HttpTimelinePostInfo[];
onReload: () => void;
}
const TimelinePostListView: React.FC<TimelinePostListViewProps> = (props) => {
const { className, style, posts, onReload } = props;
const groupedPosts = React.useMemo<
{
date: Date;
posts: (HttpTimelinePostInfo & { index: number })[];
}[]
>(() => {
const result: {
date: Date;
posts: (HttpTimelinePostInfo & { index: number })[];
}[] = [];
let index = 0;
for (const post of posts) {
const time = new Date(post.time);
if (result.length === 0) {
result.push({ date: time, posts: [{ ...post, index }] });
} else {
const lastGroup = result[result.length - 1];
if (dateEqual(lastGroup.date, time)) {
lastGroup.posts.push({ ...post, index });
} else {
result.push({ date: time, posts: [{ ...post, index }] });
}
}
index++;
}
return result;
}, [posts]);
return (
<div style={style} className={classnames("timeline", className)}>
{groupedPosts.map((group) => {
return (
<Fragment key={group.date.toDateString()}>
<TimelineDateLabel date={group.date} />
{group.posts.map((post) => {
return (
<TimelinePostView
key={post.id}
post={post}
current={posts.length - 1 === post.index}
onChanged={onReload}
onDeleted={onReload}
/>
);
})}
</Fragment>
);
})}
</div>
);
};
export default TimelinePostListView;
|