revite/src/pages/settings/panes/Account.tsx

120 lines
4.4 KiB
TypeScript
Raw Normal View History

import { At } from "@styled-icons/boxicons-regular";
2021-07-06 07:16:29 -04:00
import { Envelope, Key, HelpCircle } from "@styled-icons/boxicons-solid";
2021-07-05 06:23:23 -04:00
import { Link, useHistory } from "react-router-dom";
import { Users } from "revolt.js/dist/api/objects";
import styles from "./Panes.module.scss";
import { Text } from "preact-i18n";
2021-06-19 17:37:12 -04:00
import { useContext, useEffect, useState } from "preact/hooks";
2021-07-05 06:23:23 -04:00
2021-06-19 17:37:12 -04:00
import { useIntermediate } from "../../../context/intermediate/Intermediate";
2021-07-05 06:23:23 -04:00
import {
2021-07-05 06:25:20 -04:00
ClientStatus,
StatusContext,
2021-07-05 06:23:23 -04:00
} from "../../../context/revoltjs/RevoltClient";
import { useForceUpdate, useSelf } from "../../../context/revoltjs/hooks";
import UserIcon from "../../../components/common/user/UserIcon";
import Button from "../../../components/ui/Button";
import Overline from "../../../components/ui/Overline";
import Tip from "../../../components/ui/Tip";
2021-06-19 17:37:12 -04:00
export function Account() {
2021-07-05 06:25:20 -04:00
const { openScreen } = useIntermediate();
const status = useContext(StatusContext);
2021-06-19 17:37:12 -04:00
2021-07-05 06:25:20 -04:00
const ctx = useForceUpdate();
const user = useSelf(ctx);
if (!user) return null;
2021-06-19 17:37:12 -04:00
2021-07-05 06:25:20 -04:00
const [email, setEmail] = useState("...");
const [profile, setProfile] = useState<undefined | Users.Profile>(
undefined,
);
const history = useHistory();
2021-06-19 17:37:12 -04:00
2021-07-05 06:25:20 -04:00
function switchPage(to: string) {
history.replace(`/settings/${to}`);
}
2021-06-19 17:37:12 -04:00
2021-07-05 06:25:20 -04:00
useEffect(() => {
if (email === "..." && status === ClientStatus.ONLINE) {
ctx.client
.req("GET", "/auth/user")
.then((account) => setEmail(account.email));
}
2021-06-19 17:37:12 -04:00
2021-07-05 06:25:20 -04:00
if (profile === undefined && status === ClientStatus.ONLINE) {
ctx.client.users
.fetchProfile(user._id)
.then((profile) => setProfile(profile ?? {}));
}
}, [status]);
2021-06-19 17:37:12 -04:00
2021-07-05 06:25:20 -04:00
return (
<div className={styles.user}>
<div className={styles.banner}>
<UserIcon
className={styles.avatar}
target={user}
size={72}
onClick={() => switchPage("profile")}
/>
2021-07-06 07:16:29 -04:00
<div className={styles.userDetail}>
<div className={styles.username}>@{user.username}</div>
<div className={styles.userid}><HelpCircle size={16} />{user._id}</div>
</div>
2021-07-05 06:25:20 -04:00
</div>
<div className={styles.details}>
{(
[
["username", user.username, <At size={24} />],
["email", email, <Envelope size={24} />],
2021-07-05 17:49:57 -04:00
["password", "***********", <Key size={24} />],
2021-07-05 06:25:20 -04:00
] as const
).map(([field, value, icon]) => (
<div>
{icon}
<div className={styles.detail}>
2021-07-05 17:49:57 -04:00
<div className={styles.subtext}>
2021-07-05 06:25:20 -04:00
<Text id={`login.${field}`} />
2021-07-05 17:49:57 -04:00
</div>
2021-07-05 06:25:20 -04:00
<p>{value}</p>
</div>
<div>
<Button
onClick={() =>
openScreen({
id: "modify_account",
field: field,
})
}
contrast>
<Text id="app.settings.pages.account.change_field" />
</Button>
</div>
</div>
))}
</div>
2021-07-05 17:49:57 -04:00
{/*<h3>Two-factor Authentication</h3>
<h5>Coming Soon</h5>
<h3>Account Management</h3>
<h5>Disable, schedule your deletion or outright delete your account at any time. This action will log you out and fully delete your account, including your chat history and friends.</h5>
<Button contrast>
Disable Account
</Button>
<Button contrast>
Delete Account
</Button>*/}
2021-07-05 06:25:20 -04:00
<Tip>
<span>
<Text id="app.settings.tips.account.a" />
</span>{" "}
<a onClick={() => switchPage("profile")}>
<Text id="app.settings.tips.account.b" />
</a>
</Tip>
</div>
);
2021-06-19 17:37:12 -04:00
}