aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/views/timeline-common/Timeline.tsx
blob: aba868cbc163723e9a32655bd134bfafd05ed2dc (plain)
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
import React from "react";
import clsx from "clsx";

import { TimelinePostInfo } from "@/services/timeline";

import TimelineItem from "./TimelineItem";
import TimelineTop from "./TimelineTop";

export interface TimelinePostInfoEx extends TimelinePostInfo {
  onDelete?: () => void;
}

export type TimelineDeleteCallback = (index: number, id: number) => void;

export interface TimelineProps {
  className?: string;
  style?: React.CSSProperties;
  posts: TimelinePostInfoEx[];
  onResize?: () => void;
  containerRef?: React.Ref<HTMLDivElement>;
}

const Timeline: React.FC<TimelineProps> = (props) => {
  const { posts, onResize } = props;

  const [showMoreIndex, setShowMoreIndex] = React.useState<number>(-1);

  return (
    <div
      ref={props.containerRef}
      style={props.style}
      className={clsx("timeline", props.className)}
    >
      <TimelineTop height="56px" />
      {(() => {
        const length = posts.length;
        return posts.map((post, index) => {
          return (
            <TimelineItem
              post={post}
              key={post.id}
              current={length - 1 === index}
              more={
                post.onDelete != null
                  ? {
                      isOpen: showMoreIndex === index,
                      toggle: () =>
                        setShowMoreIndex((old) => (old === index ? -1 : index)),
                      onDelete: post.onDelete,
                    }
                  : undefined
              }
              onClick={() => setShowMoreIndex(-1)}
              onResize={onResize}
            />
          );
        });
      })()}
    </div>
  );
};

export default Timeline;