change response file & request get user-profile & change design dashboard page & handle limit page dashboard

This commit is contained in:
Ehsan
2025-05-31 03:35:23 +03:30
parent 0969eca274
commit 80c74361eb
38 changed files with 233 additions and 121 deletions
@@ -0,0 +1,70 @@
import ModalDeleteItem from "@/components/dashboard/userAccount/components/modal/ModalDeleteItem";
import TextLoading from "@/app/component/loading/Text";
import { TableCell, TableRow } from "@mui/material";
import ModalEditItem from "@/components/dashboard/userAccount/components/modal/ModalEditItem";
import Content from "./modal/Content";
import { useState } from "react";
function ItemSurgeries({ row, idx, changeData }) {
const contentData = {
type: row.type,
year: row.year,
hospital: row.hospital,
};
const [data, setData] = useState(contentData);
const resetData = () => setData(contentData);
return (
<TableRow
key={idx}
className="!border-0 !border-b !border-[#DBDBDB] dark:!border-transparent"
>
<TableCell
className="!pr-[18px] dark:!border-transparent !text-[#616161] dark:!text-[#A1A1A1] !text-[16px] !font-medium !text-nowrap"
align="center"
>
<TextLoading width={15} height={18} loading={false}>
{idx + 1}
</TextLoading>
</TableCell>
<TableCell className="!pr-[18px] dark:!border-transparent !text-[#616161] dark:!text-[#A1A1A1] !text-[16px] !font-medium !text-nowrap">
<TextLoading width={15} height={18} loading={false}>
{row.type}
</TextLoading>
</TableCell>
<TableCell className="!pr-[18px] dark:!border-transparent !text-[#616161] dark:!text-[#A1A1A1] !text-[16px] !font-medium !text-nowrap">
<TextLoading width={15} height={18} loading={false}>
{row.hospital}
</TextLoading>
</TableCell>
<TableCell
className="!pr-[18px] dark:!border-transparent !text-[#616161] dark:!text-[#A1A1A1] !text-[16px] !font-medium !text-nowrap"
align="center"
>
<TextLoading width={15} height={18} loading={false}>
{row.year}
</TextLoading>
</TableCell>
<TableCell
className="!pr-[18px] dark:!border-transparent !text-[#616161] dark:!text-[#A1A1A1] !text-[16px] !font-medium !text-nowrap"
align="right"
>
<div className="flex items-center justify-center gap-[4px]">
<ModalDeleteItem id={idx} name="surgeries" changeData={changeData} />
<ModalEditItem
id={idx}
data={data}
title="جراحی"
name="surgeries"
resetData={resetData}
changeData={changeData}
>
<Content data={data} setData={setData} />
</ModalEditItem>
</div>
</TableCell>
</TableRow>
);
}
export default ItemSurgeries;
@@ -0,0 +1,49 @@
import CustomTable from "@/app/component/CustomTable";
import Head from "@/components/dashboard/userAccount/components/Head";
import { useState } from "react";
import ItemSurgeries from "./ItemSurgeries";
import ModalAddSurgeries from "./modal";
function Surgeries({ data, changeData }) {
const tableHead = [
"ردیف",
"نوع جراحی",
"نام بیمارستان",
"سال انجام جراحی",
"",
];
const centerTable = [0, 3];
const [open, setOpen] = useState(false);
return (
<div className="opacity-page">
<Head text="لیست جراحی ها">
<ModalAddSurgeries
open={open}
setOpen={setOpen}
changeData={changeData}
/>
</Head>
{data.surgeries.length ? (
<CustomTable
zeroRadius={true}
tableHead={tableHead}
centerTable={centerTable}
>
{data.surgeries.map((row, idx) => (
<ItemSurgeries
key={idx}
row={row}
idx={idx}
changeData={changeData}
/>
))}
</CustomTable>
) : (
<p className="text-center py-10 text-gray-500">هیچ جراحی وجود ندارد!</p>
)}
</div>
);
}
export default Surgeries;
@@ -0,0 +1,50 @@
import FieldLabel from "@/components/contactUs/FieldLabel";
import Field from "@/app/component/Field";
const listIntensity = [
{ label: "شدید" },
{ label: "متوسط" },
{ label: "خفیف" },
];
function Content({ setData, data }) {
const handleChange = (name, value) =>
setData((prev) => ({ ...prev, [name]: value }));
return (
<div className="mt-[32px] md:mt-[36px] lg:mt-[40px] flex flex-col gap-[24px] md:gap-[28px] lg:gap-[32px] px-0 sm:px-[52px]">
<FieldLabel title="نوع جراحی">
<Field
title=""
type="text"
name="type"
isPlaceHolder={true}
value={data?.type}
handleChange={handleChange}
/>
</FieldLabel>
<FieldLabel title="نام بیمارستان">
<Field
title=""
type="text"
name="hospital"
isPlaceHolder={true}
value={data?.hospital}
handleChange={handleChange}
/>
</FieldLabel>
<FieldLabel title="سال انجام جراحی">
<Field
title=""
type="number"
name="year"
isPlaceHolder={true}
value={data?.year}
handleChange={handleChange}
/>
</FieldLabel>
</div>
);
}
export default Content;
@@ -0,0 +1,61 @@
import { styleDefault } from "@/mui";
import AddBtn from "@/components/dashboard/userAccount/components/AddBtn";
import UpdateBtn from "@/components/dashboard/userAccount/components/UpdateBtn";
import { Button, Modal } from "@mui/material";
import Content from "./Content";
import { useState } from "react";
function ModalAddSurgeries({ open, setOpen, changeData }) {
const contentItem = {
type: "",
year: "",
hospital: "",
};
const handleOpen = () => setOpen(true);
const handleClose = () => setOpen(false);
const [newItem, setNewItem] = useState(contentItem);
const handleAddData = () => {
changeData("add", "surgeries", null, newItem);
setNewItem(contentItem);
handleClose();
};
return (
<>
{/* Button Modal */}
<>
<UpdateBtn />
<AddBtn handleOpen={handleOpen} />
</>
{/* Content Modal */}
<Modal open={open} onClose={handleClose} className="w-full">
<div
style={styleDefault}
className="!px-[16px] !overflow-auto md:!min-w-[580px] md:!px-[24px] lg:!px-[32px] !py-[24px] !bg-[#FFF] !rounded-[8px] !shadow-[0px_1px_24.8px_0px_rgba(204,_204,_204,_0.18)]
!w-full md:!w-fit !h-full md:!h-fit !flex !flex-col !justify-between !max-h-screen md:!max-h-[calc(100%_-_32px)]"
>
<div>
<div className="flex justify-between w-full">
<p className="text-[#3B3B3B] text-[20px] font-bold">
اضافه کردن جراحی
</p>
</div>
<Content setData={setNewItem} />
</div>
<Button
className="!mt-[32px] md:!mt-[36px] lg:!mt-[40px] !px-3 !py-2 !text-[16px] !font-medium !w-fit !mr-auto"
onClick={handleAddData}
disabled={!newItem.type || !newItem.year || !newItem.hospital}
variant="contained"
>
اضافه کردن
</Button>
</div>
</Modal>
</>
);
}
export default ModalAddSurgeries;