shellphone.app/app/settings/components/profile-informations.tsx

115 lines
3.5 KiB
TypeScript
Raw Normal View History

2021-07-31 17:22:48 +00:00
import type { FunctionComponent } from "react";
import { useEffect, useState } from "react";
import { useMutation } from "blitz";
2021-07-31 17:22:48 +00:00
import { useForm } from "react-hook-form";
import updateUser from "../mutations/update-user";
2021-09-25 12:58:28 +00:00
import Alert from "../../core/components/alert";
2021-07-31 17:22:48 +00:00
import Button from "./button";
import SettingsSection from "./settings-section";
2021-08-05 17:07:15 +00:00
import useCurrentUser from "../../core/hooks/use-current-user";
2021-07-31 17:22:48 +00:00
import appLogger from "../../../integrations/logger";
type Form = {
2021-09-25 14:16:31 +00:00
fullName: string;
2021-07-31 17:22:48 +00:00
email: string;
};
const logger = appLogger.child({ module: "profile-settings" });
const ProfileInformations: FunctionComponent = () => {
2021-08-05 17:07:15 +00:00
const { user } = useCurrentUser();
const updateUserMutation = useMutation(updateUser)[0];
2021-07-31 17:22:48 +00:00
const {
register,
handleSubmit,
setValue,
formState: { isSubmitting, isSubmitSuccessful },
} = useForm<Form>();
const [errorMessage, setErrorMessage] = useState("");
useEffect(() => {
2021-09-25 14:16:31 +00:00
setValue("fullName", user?.fullName ?? "");
2021-08-05 17:07:15 +00:00
setValue("email", user?.email ?? "");
}, [setValue, user]);
2021-07-31 17:22:48 +00:00
2021-09-25 14:16:31 +00:00
const onSubmit = handleSubmit(async ({ fullName, email }) => {
2021-07-31 17:22:48 +00:00
if (isSubmitting) {
return;
}
try {
2021-09-25 14:16:31 +00:00
await updateUserMutation({ email, fullName });
2021-08-27 18:05:44 +00:00
} catch (error: any) {
2021-07-31 17:22:48 +00:00
logger.error(error.response, "error updating user infos");
setErrorMessage(error.response.data.errorMessage);
}
});
return (
<SettingsSection
title="Profile Information"
description="Update your account's profile information and email address."
>
<form onSubmit={onSubmit}>
{errorMessage ? (
<div className="mb-8">
2021-08-01 14:03:49 +00:00
<Alert title="Oops, there was an issue" message={errorMessage} variant="error" />
2021-07-31 17:22:48 +00:00
</div>
) : null}
{isSubmitSuccessful ? (
<div className="mb-8">
2021-08-01 14:03:49 +00:00
<Alert title="Saved successfully" message="Your changes have been saved." variant="success" />
2021-07-31 17:22:48 +00:00
</div>
) : null}
<div className="shadow sm:rounded-md sm:overflow-hidden">
<div className="px-4 py-5 bg-white space-y-6 sm:p-6">
<div className="col-span-3 sm:col-span-2">
2021-09-25 14:16:31 +00:00
<label htmlFor="fullName" className="block text-sm font-medium leading-5 text-gray-700">
Full name
2021-07-31 17:22:48 +00:00
</label>
<div className="mt-1 rounded-md shadow-sm">
<input
2021-09-25 14:16:31 +00:00
id="fullName"
2021-07-31 17:22:48 +00:00
type="text"
tabIndex={1}
className="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md placeholder-gray-400 focus:outline-none focus:shadow-outline-primary focus:border-primary-300 transition duration-150 ease-in-out sm:text-sm sm:leading-5"
2021-09-25 14:16:31 +00:00
{...register("fullName")}
2021-07-31 17:22:48 +00:00
required
/>
</div>
</div>
<div>
2021-08-01 14:03:49 +00:00
<label htmlFor="email" className="block text-sm font-medium leading-5 text-gray-700">
2021-07-31 17:22:48 +00:00
Email address
</label>
<div className="mt-1 rounded-md shadow-sm">
<input
id="email"
type="email"
tabIndex={2}
className="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md placeholder-gray-400 focus:outline-none focus:shadow-outline-primary focus:border-primary-300 transition duration-150 ease-in-out sm:text-sm sm:leading-5"
{...register("email")}
required
/>
</div>
</div>
</div>
<div className="px-4 py-3 bg-gray-50 text-right text-sm font-medium sm:px-6">
<Button variant="default" type="submit" isDisabled={isSubmitting}>
{isSubmitting ? "Saving..." : "Save"}
</Button>
</div>
</div>
</form>
</SettingsSection>
);
};
export default ProfileInformations;