aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/views/user/UserCard.tsx
blob: 575ca2c1e4c87b65fe22a061fb03f24ff1d619fa (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
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
import React from "react";

import TimelinePageCardTemplate, {
  TimelineCardTemplateProps,
} from "../timeline-common/TimelinePageCardTemplate";
import { TimelinePageCardProps } from "../timeline-common/TimelinePageTemplate";
import UserAvatar from "../common/user/UserAvatar";
import ChangeNicknameDialog from "./ChangeNicknameDialog";
import { getHttpUserClient } from "@/http/user";
import ChangeAvatarDialog from "./ChangeAvatarDialog";

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

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

  return (
    <>
      <TimelinePageCardTemplate
        infoArea={
          <>
            <h3 className="text-primary d-inline-block align-middle">
              {timeline.title}
              <small className="ml-3 text-secondary">{timeline.name}</small>
            </h3>
            <div className="align-middle">
              <UserAvatar
                username={timeline.owner.username}
                className="avatar small rounded-circle mr-3"
              />
              {timeline.owner.nickname}
            </div>
          </>
        }
        manageArea={((): TimelineCardTemplateProps["manageArea"] => {
          if (!timeline.manageable) {
            return { type: "member" };
          } else {
            return {
              type: "manage",
              items: [
                {
                  type: "button",
                  text: "timeline.manageItem.nickname",
                  onClick: () => setDialog("nickname"),
                },
                {
                  type: "button",
                  text: "timeline.manageItem.avatar",
                  onClick: () => setDialog("avatar"),
                },
                {
                  type: "button",
                  text: "timeline.manageItem.property",
                  onClick: () => setDialog("property"),
                },
                {
                  type: "button",
                  text: "timeline.manageItem.member",
                  onClick: () => setDialog("member"),
                },
              ],
            };
          }
        })()}
        dialog={dialog}
        setDialog={setDialog}
        {...props}
      />
      {(() => {
        // TODO: Move this two to settings.
        if (dialog === "nickname") {
          return (
            <ChangeNicknameDialog
              open
              close={() => setDialog(null)}
              onProcess={async (newNickname) => {
                await getHttpUserClient().patch(timeline.owner.username, {
                  nickname: newNickname,
                });
                onReload();
              }}
            />
          );
        } else if (dialog === "avatar") {
          return (
            <ChangeAvatarDialog
              open
              close={() => setDialog(null)}
              process={async (file) => {
                await getHttpUserClient().putAvatar(
                  timeline.owner.username,
                  file
                );
                onReload();
              }}
            />
          );
        }
      })()}
    </>
  );
};

export default UserCard;