* Setup, and security settings * Settings -> Details * Settings -> Notifications * Profile * lint * fix: Flash of loading on members screen * align language input * feat: Move share links management to sortable table * Add account menu to sidebar on settings page * Aesthetic tweaks, light borders between settings and slight column offset
170 lines
4.8 KiB
TypeScript
170 lines
4.8 KiB
TypeScript
import { observer } from "mobx-react";
|
||
import { ProfileIcon } from "outline-icons";
|
||
import * as React from "react";
|
||
import { Trans, useTranslation } from "react-i18next";
|
||
import styled from "styled-components";
|
||
import { languageOptions } from "@shared/i18n";
|
||
import UserDelete from "~/scenes/UserDelete";
|
||
import Button from "~/components/Button";
|
||
import Heading from "~/components/Heading";
|
||
import Input from "~/components/Input";
|
||
import InputSelect from "~/components/InputSelect";
|
||
import Scene from "~/components/Scene";
|
||
import Text from "~/components/Text";
|
||
import useCurrentUser from "~/hooks/useCurrentUser";
|
||
import useStores from "~/hooks/useStores";
|
||
import useToasts from "~/hooks/useToasts";
|
||
import ImageInput from "./components/ImageInput";
|
||
import SettingRow from "./components/SettingRow";
|
||
|
||
const Profile = () => {
|
||
const { auth } = useStores();
|
||
const user = useCurrentUser();
|
||
const form = React.useRef<HTMLFormElement>(null);
|
||
const [name, setName] = React.useState<string>(user.name || "");
|
||
const [avatarUrl, setAvatarUrl] = React.useState<string>(user.avatarUrl);
|
||
const [showDeleteModal, setShowDeleteModal] = React.useState(false);
|
||
const [language, setLanguage] = React.useState(user.language);
|
||
const { showToast } = useToasts();
|
||
const { t } = useTranslation();
|
||
|
||
const handleSubmit = async (ev: React.SyntheticEvent) => {
|
||
ev.preventDefault();
|
||
|
||
try {
|
||
await auth.updateUser({
|
||
name,
|
||
avatarUrl,
|
||
language,
|
||
});
|
||
showToast(t("Profile saved"), {
|
||
type: "success",
|
||
});
|
||
} catch (err) {
|
||
showToast(err.message, {
|
||
type: "error",
|
||
});
|
||
}
|
||
};
|
||
|
||
const handleNameChange = (ev: React.ChangeEvent<HTMLInputElement>) => {
|
||
setName(ev.target.value);
|
||
};
|
||
|
||
const handleAvatarUpload = async (avatarUrl: string) => {
|
||
setAvatarUrl(avatarUrl);
|
||
await auth.updateUser({
|
||
avatarUrl,
|
||
});
|
||
showToast(t("Profile picture updated"), {
|
||
type: "success",
|
||
});
|
||
};
|
||
|
||
const handleAvatarError = (error: string | null | undefined) => {
|
||
showToast(error || t("Unable to upload new profile picture"), {
|
||
type: "error",
|
||
});
|
||
};
|
||
|
||
const handleLanguageChange = (value: string) => {
|
||
setLanguage(value);
|
||
};
|
||
|
||
const toggleDeleteAccount = () => {
|
||
setShowDeleteModal((prev) => !prev);
|
||
};
|
||
|
||
const isValid = form.current?.checkValidity();
|
||
const { isSaving } = auth;
|
||
|
||
return (
|
||
<Scene title={t("Profile")} icon={<ProfileIcon color="currentColor" />}>
|
||
<Heading>{t("Profile")}</Heading>
|
||
|
||
<form onSubmit={handleSubmit} ref={form}>
|
||
<SettingRow
|
||
label={t("Photo")}
|
||
name="avatarUrl"
|
||
description={t("Choose a photo or image to represent yourself.")}
|
||
>
|
||
<ImageInput
|
||
onSuccess={handleAvatarUpload}
|
||
onError={handleAvatarError}
|
||
src={avatarUrl}
|
||
/>
|
||
</SettingRow>
|
||
<SettingRow
|
||
label={t("Full name")}
|
||
name="name"
|
||
description={t(
|
||
"This could be your real name, or a nickname — however you’d like people to refer to you."
|
||
)}
|
||
>
|
||
<Input
|
||
id="name"
|
||
autoComplete="name"
|
||
value={name}
|
||
onChange={handleNameChange}
|
||
required
|
||
/>
|
||
</SettingRow>
|
||
|
||
<SettingRow
|
||
border={false}
|
||
label={t("Language")}
|
||
name="language"
|
||
description={
|
||
<>
|
||
<Trans>
|
||
Please note that translations are currently in early access.
|
||
Community contributions are accepted though our{" "}
|
||
<a
|
||
href="https://translate.getoutline.com"
|
||
target="_blank"
|
||
rel="noreferrer"
|
||
>
|
||
translation portal
|
||
</a>
|
||
.
|
||
</Trans>
|
||
</>
|
||
}
|
||
>
|
||
<InputSelect
|
||
id="language"
|
||
options={languageOptions}
|
||
value={language}
|
||
onChange={handleLanguageChange}
|
||
ariaLabel={t("Language")}
|
||
/>
|
||
</SettingRow>
|
||
|
||
<Button type="submit" disabled={isSaving || !isValid}>
|
||
{isSaving ? `${t("Saving")}…` : t("Save")}
|
||
</Button>
|
||
</form>
|
||
|
||
<DangerZone>
|
||
<h2>{t("Delete Account")}</h2>
|
||
<Text type="secondary">
|
||
<Trans>
|
||
You may delete your account at any time, note that this is
|
||
unrecoverable
|
||
</Trans>
|
||
</Text>
|
||
<Button onClick={toggleDeleteAccount} neutral>
|
||
{t("Delete account")}…
|
||
</Button>
|
||
</DangerZone>
|
||
{showDeleteModal && <UserDelete onRequestClose={toggleDeleteAccount} />}
|
||
</Scene>
|
||
);
|
||
};
|
||
|
||
const DangerZone = styled.div`
|
||
margin-top: 60px;
|
||
`;
|
||
|
||
export default observer(Profile);
|