187 lines
4.7 KiB
JavaScript
187 lines
4.7 KiB
JavaScript
import { useEffect, useState } from "react";
|
|
import styled from "styled-components";
|
|
import { useSelector } from "react-redux";
|
|
import toast from "react-hot-toast";
|
|
import { useUpdateAvatarMutation } from "../../../app/services/contact";
|
|
import AvatarUploader from "../AvatarUploader";
|
|
import ProfileBasicEditModal from "./ProfileBasicEditModal";
|
|
const StyledWrapper = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 32px;
|
|
.card {
|
|
padding: 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 512px;
|
|
background: #f3f4f6;
|
|
border-radius: 20px;
|
|
.name {
|
|
margin-top: 8px;
|
|
margin-bottom: 64px;
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
line-height: 28px;
|
|
color: #27272a;
|
|
.uid {
|
|
font-weight: normal;
|
|
color: #52525b;
|
|
}
|
|
}
|
|
.row {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 24px;
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
.label {
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
text-transform: uppercase;
|
|
color: #52525b;
|
|
}
|
|
.txt {
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
color: #52525b;
|
|
.gray {
|
|
color: #78787c;
|
|
}
|
|
}
|
|
}
|
|
.btn {
|
|
background: #1fe1f9;
|
|
border: 1px solid #1fe1f9;
|
|
}
|
|
}
|
|
}
|
|
.danger {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
.head {
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
color: #374151;
|
|
}
|
|
.desc {
|
|
font-weight: normal;
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
color: #616161;
|
|
margin-bottom: 16px;
|
|
}
|
|
.btn {
|
|
background: #ef4444;
|
|
border: 1px solid #ef4444;
|
|
}
|
|
}
|
|
.btn {
|
|
color: #fff;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
padding: 8px 14px;
|
|
background: #1fe1f9;
|
|
border: 1px solid #1fe1f9;
|
|
box-sizing: border-box;
|
|
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
|
|
border-radius: 8px;
|
|
}
|
|
`;
|
|
const EditModalInfo = {
|
|
name: {
|
|
label: "Username",
|
|
title: "Change your username",
|
|
intro: "Enter a new username.",
|
|
},
|
|
email: {
|
|
label: "Email",
|
|
title: "Change your email",
|
|
intro: "Enter a new email.",
|
|
},
|
|
};
|
|
export default function MyAccount() {
|
|
const [editModal, setEditModal] = useState(null);
|
|
const [
|
|
uploadAvatar,
|
|
{ isSuccess: uploadSuccess },
|
|
] = useUpdateAvatarMutation();
|
|
const loginUser = useSelector((store) => {
|
|
return store.contacts.byId[store.authData.uid];
|
|
});
|
|
useEffect(() => {
|
|
if (uploadSuccess) {
|
|
toast.success("update avatar successfully!");
|
|
}
|
|
}, [uploadSuccess]);
|
|
const handleBasicEdit = (evt) => {
|
|
const { edit } = evt.target.dataset;
|
|
setEditModal(edit);
|
|
};
|
|
const closeBasicEditModal = () => {
|
|
setEditModal(null);
|
|
};
|
|
if (!loginUser) return null;
|
|
const { uid, avatar, name, email } = loginUser;
|
|
return (
|
|
<>
|
|
<StyledWrapper>
|
|
<div className="card">
|
|
<AvatarUploader url={avatar} name={name} uploadImage={uploadAvatar} />
|
|
<div className="name">
|
|
{name} <span className="uid">#{uid}</span>
|
|
</div>
|
|
<div className="row">
|
|
<div className="info">
|
|
<span className="label">username</span>
|
|
<span className="txt">
|
|
{name} <span className="gray"> #{uid}</span>
|
|
</span>
|
|
</div>
|
|
{/* <div className="right"> */}
|
|
<button data-edit="name" onClick={handleBasicEdit} className="btn">
|
|
Edit
|
|
</button>
|
|
{/* </div> */}
|
|
</div>
|
|
<div className="row">
|
|
<div className="info">
|
|
<span className="label">email</span>
|
|
<span className="txt">{email}</span>
|
|
</div>
|
|
{/* <div className="right"> */}
|
|
<button data-edit="email" onClick={handleBasicEdit} className="btn">
|
|
Edit
|
|
</button>
|
|
{/* </div> */}
|
|
</div>
|
|
</div>
|
|
<div className="danger">
|
|
<h4 className="head">Account Removal</h4>
|
|
<div className="desc">
|
|
Disabling your account means you can recover it at any time after
|
|
taking this action.
|
|
</div>
|
|
<button className="btn">Delete Account</button>
|
|
</div>
|
|
</StyledWrapper>
|
|
{editModal && (
|
|
<ProfileBasicEditModal
|
|
valueKey={editModal}
|
|
{...EditModalInfo[editModal]}
|
|
value={eval(editModal)}
|
|
closeModal={closeBasicEditModal}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
}
|