mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 07:00:58 -05:00
Merge pull request #179 from Snazzah/server-identity-revamp
This commit is contained in:
commit
da7a27f325
2 changed files with 85 additions and 41 deletions
|
@ -0,0 +1,17 @@
|
|||
.identityMain {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 10px;
|
||||
|
||||
> div {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 10px;
|
||||
}
|
||||
}
|
|
@ -1,13 +1,14 @@
|
|||
import { observer } from "mobx-react-lite";
|
||||
import { Server } from "revolt.js/dist/maps/Servers";
|
||||
|
||||
import styles from "./ServerIdentityModal.module.scss";
|
||||
import { Text } from "preact-i18n";
|
||||
import { useEffect, useState } from "preact/hooks";
|
||||
|
||||
import Button from "../../../components/ui/Button";
|
||||
import InputBox from "../../../components/ui/InputBox";
|
||||
import Modal from "../../../components/ui/Modal";
|
||||
import Overline from "../../../components/ui/Overline";
|
||||
import Tip from "../../../components/ui/Tip";
|
||||
|
||||
import { FileUploader } from "../../revoltjs/FileUploads";
|
||||
import { useClient } from "../../revoltjs/RevoltClient";
|
||||
|
@ -27,29 +28,27 @@ export const ServerIdentityModal = observer(({ server, onClose }: Props) => {
|
|||
if (!member) return null;
|
||||
|
||||
const [nickname, setNickname] = useState("");
|
||||
useEffect(() => setNickname(member.nickname ?? ""), [member.nickname]);
|
||||
const [currentNickname, setCurrentNickname] = useState("");
|
||||
useEffect(() => {
|
||||
setNickname(member.nickname ?? "");
|
||||
setCurrentNickname(member.nickname ?? "");
|
||||
}, [member.nickname]);
|
||||
|
||||
return (
|
||||
<Modal visible={true} onClose={onClose}>
|
||||
<Tip warning hideSeparator>
|
||||
This section is under construction.
|
||||
</Tip>
|
||||
<Overline type="subtle">Nickname</Overline>
|
||||
<p>
|
||||
<InputBox
|
||||
value={nickname}
|
||||
onChange={(e) => setNickname(e.currentTarget.value)}
|
||||
<Modal
|
||||
visible={true}
|
||||
title={
|
||||
<Text
|
||||
id={"app.special.popovers.server_identity.title"}
|
||||
fields={{ server: server.name }}
|
||||
/>
|
||||
</p>
|
||||
<p>
|
||||
<Button onClick={() => member.edit({ nickname })}>Save</Button>
|
||||
</p>
|
||||
<p>
|
||||
<Button onClick={() => member.edit({ remove: "Nickname" })}>
|
||||
Remove
|
||||
</Button>
|
||||
</p>
|
||||
<Overline type="subtle">Avatar</Overline>
|
||||
}
|
||||
onClose={onClose}>
|
||||
<div className={styles.identityMain}>
|
||||
<div>
|
||||
<Overline type="subtle">
|
||||
<Text id="app.special.popovers.server_identity.avatar" />
|
||||
</Overline>
|
||||
<FileUploader
|
||||
width={80}
|
||||
height={80}
|
||||
|
@ -70,6 +69,34 @@ export const ServerIdentityModal = observer(({ server, onClose }: Props) => {
|
|||
true,
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<Overline type="subtle">
|
||||
<Text id="app.special.popovers.server_identity.nickname" />
|
||||
</Overline>
|
||||
<InputBox
|
||||
value={nickname}
|
||||
placeholder={client.user!.username}
|
||||
onChange={(e) => setNickname(e.currentTarget.value)}
|
||||
/>
|
||||
<div className={styles.buttons}>
|
||||
<Button
|
||||
disabled={nickname === currentNickname}
|
||||
onClick={() => member.edit({ nickname })}>
|
||||
<Text id="app.special.modals.actions.save" />
|
||||
</Button>
|
||||
{currentNickname !== "" && (
|
||||
<Button
|
||||
plain
|
||||
onClick={() =>
|
||||
member.edit({ remove: "Nickname" })
|
||||
}>
|
||||
<Text id="app.special.modals.actions.remove" />
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Modal>
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue