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
|
import React from "react";
import clsx from "clsx";
import {
TimelineInfo,
TimelinePostInfo,
timelineService,
} from "@/services/timeline";
import { useUser } from "@/services/user";
import { pushAlert } from "@/services/alert";
import TimelineItem from "./TimelineItem";
import TimelineTop from "./TimelineTop";
import TimelineDateItem from "./TimelineDateItem";
function dateEqual(left: Date, right: Date): boolean {
return (
left.getDate() == right.getDate() &&
left.getMonth() == right.getMonth() &&
left.getFullYear() == right.getFullYear()
);
}
export interface TimelineProps {
className?: string;
style?: React.CSSProperties;
timeline: TimelineInfo;
posts: TimelinePostInfo[];
}
const Timeline: React.FC<TimelineProps> = (props) => {
const { timeline, posts } = props;
const user = useUser();
const [showMoreIndex, setShowMoreIndex] = React.useState<number>(-1);
const groupedPosts = React.useMemo<
{ date: Date; posts: (TimelinePostInfo & { index: number })[] }[]
>(() => {
const result: {
date: Date;
posts: (TimelinePostInfo & { index: number })[];
}[] = [];
let index = 0;
for (const post of posts) {
const { time } = post;
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={props.style} className={clsx("timeline", props.className)}>
<TimelineTop height="56px" />
{groupedPosts.map((group) => {
return (
<>
<TimelineDateItem date={group.date} />
{group.posts.map((post) => {
const deletable = timelineService.hasModifyPostPermission(
user,
timeline,
post
);
return (
<TimelineItem
post={post}
key={post.id}
current={posts.length - 1 === post.index}
more={
deletable
? {
isOpen: showMoreIndex === post.index,
toggle: () =>
setShowMoreIndex((old) =>
old === post.index ? -1 : post.index
),
onDelete: () => {
timelineService
.deletePost(timeline.name, post.id)
.catch(() => {
pushAlert({
type: "danger",
message: {
type: "i18n",
key: "timeline.deletePostFailed",
},
});
});
},
}
: undefined
}
onClick={() => setShowMoreIndex(-1)}
/>
);
})}
</>
);
})}
</div>
);
};
export default Timeline;
|