Files
trustlab/src/components/user-profile/UserInfoCard.tsx
2025-12-30 12:14:45 +07:00

286 lines
11 KiB
TypeScript

"use client";
import useSWR, { mutate } from "swr";
import axios from "@/lib/axios";
import { useToast } from "@/context/ToastContext";
import React from "react";
import { useModal } from "../../hooks/useModal";
import { Modal } from "../ui/modal";
import Button from "../ui/button/Button";
import Input from "../form/input/InputField";
import Label from "../form/Label";
import { useTranslations } from "next-intl";
const fetcher = (url: string) => axios.get(url).then((res) => res.data);
export default function UserInfoCard() {
const { data: user, isLoading: userLoading } = useSWR("/api/user", fetcher);
const { isOpen, openModal, closeModal } = useModal();
const { addToast } = useToast();
const t = useTranslations("Profile");
const [isSaving, setIsSaving] = React.useState(false);
// Form states
const [formData, setFormData] = React.useState({
first_name: "",
last_name: "",
email: "",
phone: "",
bio: "",
facebook: "",
twitter: "",
linkedin: "",
instagram: "",
});
React.useEffect(() => {
if (user) {
setFormData({
first_name: user.first_name || "",
last_name: user.last_name || "",
email: user.email || "",
phone: user.phone || "",
bio: user.bio || "",
facebook: user.facebook || "",
twitter: user.twitter || "",
linkedin: user.linkedin || "",
instagram: user.instagram || "",
});
}
}, [user]);
const handleInputChange = (field: string, value: string) => {
setFormData((prev) => ({ ...prev, [field]: value }));
};
const handleSave = async (e: React.FormEvent) => {
e.preventDefault();
setIsSaving(true);
try {
await axios.patch("/api/profile", formData);
mutate("/api/user");
addToast(t("toast_personal_info_success"), "success");
closeModal();
} catch (err) {
addToast(t("toast_personal_info_error"), "error");
} finally {
setIsSaving(false);
}
};
if (userLoading) return null;
return (
<div className="p-5 border border-gray-200 rounded-2xl dark:border-gray-800 lg:p-6">
<div className="flex flex-col gap-6 lg:flex-row lg:items-start lg:justify-between">
<div>
<h4 className="text-lg font-semibold text-gray-800 dark:text-white/90 lg:mb-6">
{t("personal_info_title")}
</h4>
<div className="grid grid-cols-1 gap-4 lg:grid-cols-2 lg:gap-7 2xl:gap-x-32">
<div>
<p className="mb-2 text-xs leading-normal text-gray-500 dark:text-gray-400">
{t("first_name_label")}
</p>
<p className="text-sm font-medium text-gray-800 dark:text-white/90">
{user?.first_name || "-"}
</p>
</div>
<div>
<p className="mb-2 text-xs leading-normal text-gray-500 dark:text-gray-400">
{t("last_name_label")}
</p>
<p className="text-sm font-medium text-gray-800 dark:text-white/90">
{user?.last_name || "-"}
</p>
</div>
<div>
<p className="mb-2 text-xs leading-normal text-gray-500 dark:text-gray-400">
{t("email_label")}
</p>
<div className="flex flex-col gap-1">
<p className="text-sm font-medium text-gray-800 dark:text-white/90">
{user?.email}
</p>
{user?.pending_email && (
<span className="text-[10px] bg-yellow-100 text-yellow-700 dark:bg-yellow-900/30 dark:text-yellow-400 px-2 py-0.5 rounded-full inline-block w-fit font-medium">
{t("pending_email_notice", { email: user.pending_email })}
</span>
)}
</div>
</div>
<div>
<p className="mb-2 text-xs leading-normal text-gray-500 dark:text-gray-400">
{t("phone_label")}
</p>
<p className="text-sm font-medium text-gray-800 dark:text-white/90">
{user?.phone || "-"}
</p>
</div>
<div className="lg:col-span-2">
<p className="mb-2 text-xs leading-normal text-gray-500 dark:text-gray-400">
{t("bio_label")}
</p>
<p className="text-sm font-medium text-gray-800 dark:text-white/90">
{user?.bio || "-"}
</p>
</div>
</div>
</div>
<button
onClick={openModal}
className="flex w-full items-center justify-center gap-2 rounded-full border border-gray-300 bg-white px-4 py-3 text-sm font-medium text-gray-700 shadow-theme-xs hover:bg-gray-50 hover:text-gray-800 dark:border-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:hover:bg-white/[0.03] dark:hover:text-gray-200 lg:inline-flex lg:w-auto"
>
<svg
className="fill-current"
width="18"
height="18"
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M15.0911 2.78206C14.2125 1.90338 12.7878 1.90338 11.9092 2.78206L4.57524 10.116C4.26682 10.4244 4.0547 10.8158 3.96468 11.2426L3.31231 14.3352C3.25997 14.5833 3.33653 14.841 3.51583 15.0203C3.69512 15.1996 3.95286 15.2761 4.20096 15.2238L7.29355 14.5714C7.72031 14.4814 8.11172 14.2693 8.42013 13.9609L15.7541 6.62695C16.6327 5.74827 16.6327 4.32365 15.7541 3.44497L15.0911 2.78206ZM12.9698 3.84272C13.2627 3.54982 13.7376 3.54982 14.0305 3.84272L14.6934 4.50563C14.9863 4.79852 14.9863 5.2734 14.6934 5.56629L14.044 6.21573L12.3204 4.49215L12.9698 3.84272ZM11.2597 5.55281L5.6359 11.1766C5.53309 11.2794 5.46238 11.4099 5.43238 11.5522L5.01758 13.5185L6.98394 13.1037C7.1262 13.0737 7.25666 13.003 7.35947 12.9002L12.9833 7.27639L11.2597 5.55281Z"
fill=""
/>
</svg>
{t("edit_button")}
</button>
</div>
<Modal isOpen={isOpen} onClose={closeModal} className="max-w-[700px] m-4">
<div className="no-scrollbar relative w-full max-w-[700px] overflow-y-auto rounded-3xl bg-white p-4 dark:bg-gray-900 lg:p-11">
<div className="px-2 pr-14">
<h4 className="mb-2 text-2xl font-semibold text-gray-800 dark:text-white/90">
{t("edit_personal_info_title")}
</h4>
<p className="mb-6 text-sm text-gray-500 dark:text-gray-400 lg:mb-7">
{t("edit_personal_info_subtitle")}
</p>
</div>
<form className="flex flex-col" onSubmit={handleSave}>
<div className="custom-scrollbar h-[450px] overflow-y-auto px-2 pb-3">
<div>
<h5 className="mb-5 text-lg font-medium text-gray-800 dark:text-white/90 lg:mb-6">
{t("social_links_title")}
</h5>
<div className="grid grid-cols-1 gap-x-6 gap-y-5 lg:grid-cols-2">
<div>
<Label>{t("facebook_username_label")}</Label>
<Input
type="text"
value={formData.facebook}
onChange={(e) => handleInputChange("facebook", e.target.value)}
placeholder={t("username_placeholder")}
/>
</div>
<div>
<Label>{t("twitter_username_label")}</Label>
<Input
type="text"
value={formData.twitter}
onChange={(e) => handleInputChange("twitter", e.target.value)}
placeholder={t("username_placeholder")}
/>
</div>
<div>
<Label>{t("linkedin_username_label")}</Label>
<Input
type="text"
value={formData.linkedin}
onChange={(e) => handleInputChange("linkedin", e.target.value)}
placeholder="username"
/>
</div>
<div>
<Label>{t("instagram_username_label")}</Label>
<Input
type="text"
value={formData.instagram}
onChange={(e) => handleInputChange("instagram", e.target.value)}
placeholder={t("username_placeholder")}
/>
</div>
</div>
</div>
<div className="mt-7">
<h5 className="mb-5 text-lg font-medium text-gray-800 dark:text-white/90 lg:mb-6">
{t("personal_info_title")}
</h5>
<div className="grid grid-cols-1 gap-x-6 gap-y-5 lg:grid-cols-2">
<div className="col-span-2 lg:col-span-1">
<Label>{t("first_name_label")}</Label>
<Input
type="text"
value={formData.first_name}
onChange={(e) => handleInputChange("first_name", e.target.value)}
/>
</div>
<div className="col-span-2 lg:col-span-1">
<Label>{t("last_name_label")}</Label>
<Input
type="text"
value={formData.last_name}
onChange={(e) => handleInputChange("last_name", e.target.value)}
/>
</div>
<div className="col-span-2 lg:col-span-1">
<Label>{t("email_label")}</Label>
<Input
type="email"
value={formData.email}
onChange={(e) => handleInputChange("email", e.target.value)}
placeholder={t("email_placeholder")}
/>
</div>
<div className="col-span-2 lg:col-span-1">
<Label>{t("phone_label")}</Label>
<Input
type="text"
value={formData.phone}
onChange={(e) => handleInputChange("phone", e.target.value)}
/>
</div>
<div className="col-span-2">
<Label>{t("bio_label")}</Label>
<Input
type="text"
value={formData.bio}
onChange={(e) => handleInputChange("bio", e.target.value)}
/>
</div>
</div>
</div>
</div>
<div className="flex items-center gap-3 px-2 mt-6 lg:justify-end">
<Button size="sm" variant="outline" type="button" onClick={closeModal} disabled={isSaving}>
{t("close_button")}
</Button>
<Button size="sm" type="submit" loading={isSaving}>
{t("save_changes_button")}
</Button>
</div>
</form>
</div>
</Modal>
</div>
);
}