aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/timeline/TimelineCard.tsx
blob: 5605756061a9478c6615f9ddfb59a961ba39a50e (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
64
65
66
67
68
69
70
71
72
73
74
75
76
import React from "react";

import { TimelinePageCardProps } from "../timeline-common/TimelinePageTemplate";
import TimelinePageCardTemplate from "../timeline-common/TimelinePageCardTemplate";

import UserAvatar from "../common/user/UserAvatar";
import TimelineDeleteDialog from "./TimelineDeleteDialog";

const TimelineCard: React.FC<TimelinePageCardProps> = (props) => {
  const { timeline } = props;

  const [dialog, setDialog] = React.useState<
    "member" | "property" | "delete" | null
  >(null);

  return (
    <>
      <TimelinePageCardTemplate
        infoArea={
          <>
            <h3 className="cru-color-primary d-inline-block align-middle">
              {timeline.title}
              <small className="ms-3 cru-color-secondary">
                {timeline.name}
              </small>
            </h3>
            <div>
              <UserAvatar
                username={timeline.owner.username}
                className="cru-avatar small cru-round me-3"
              />
              {timeline.owner.nickname}
              <small className="ms-3 cru-color-secondary">
                @{timeline.owner.username}
              </small>
            </div>
          </>
        }
        manageItems={
          timeline.manageable
            ? [
                {
                  type: "button",
                  text: "timeline.manageItem.property",
                  onClick: () => setDialog("property"),
                },
                { type: "divider" },
                {
                  type: "button",
                  onClick: () => setDialog("delete"),
                  color: "danger",
                  text: "timeline.manageItem.delete",
                },
              ]
            : undefined
        }
        dialog={dialog}
        setDialog={setDialog}
        {...props}
      />
      {(() => {
        if (dialog === "delete") {
          return (
            <TimelineDeleteDialog
              timeline={timeline}
              open
              close={() => setDialog(null)}
            />
          );
        }
      })()}
    </>
  );
};

export default TimelineCard;