import { observer } from "mobx-react"; import { ProfileIcon } from "outline-icons"; import * as React from "react"; import { Trans, useTranslation } from "react-i18next"; import Button from "~/components/Button"; import Heading from "~/components/Heading"; import Input from "~/components/Input"; 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(null); const [name, setName] = React.useState(user.name || ""); const { showToast } = useToasts(); const { t } = useTranslation(); const handleSubmit = async (ev: React.SyntheticEvent) => { ev.preventDefault(); try { await auth.updateUser({ name, }); showToast(t("Profile saved"), { type: "success", }); } catch (err) { showToast(err.message, { type: "error", }); } }; const handleNameChange = (ev: React.ChangeEvent) => { setName(ev.target.value); }; const handleAvatarUpload = async (avatarUrl: string) => { 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 isValid = form.current?.checkValidity(); const { isSaving } = auth; return ( }> {t("Profile")} Manage how you appear to other members of the workspace.
); }; export default observer(Profile);