You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

188 lines
5.6 KiB

import React, { useState } from "react";
import Button from "../Button";
import CircleInCircle from "../CircleInCircle";
import FormInput from "../FormInput";
const ProcessCard = ({ processes, title, hint, buttons, options }) => {
const [openModal, setOpenModal] = useState(false);
console.log(openModal);
return (
<section className="w-fit mx-auto flex flex-row bg-surface border border-blue-400 rounded">
{/* right */}
<div className="flex flex-1 flex-col justify-between">
{/* top */}
<div className="flex items-center p-4 bg-[#EEFCE4] rounded divide-x-2 divide-[#C7C7C7] divide-x-reverse">
{processes.map((process, index) => (
<div
className="flex flex-1 items-center justify-center flex-grow"
key={index}
>
{process.color && (
<CircleInCircle
parentClassName={`${process.color} w-3 h-3`}
childClassName={false}
/>
)}
<p className="text-xs mr-2">{process.name}</p>
<span className="text-xs mr-1">{process.content}</span>
</div>
))}
</div>
{/* middle */}
<div className="flex flex-col flex-1 justify-center items-center p-4 bg-white">
<div className="w-[96%] flex flex-col justify-center gap-y-4">
<h2 className="text-xl font-bold text-[#046AE8]">{title}</h2>
<p className="text-sm text-justify leading-6 text-[#00253A]">
{hint}
</p>
</div>
</div>
{/* bottom */}
<div className="flex flex-row item-center justify-around p-3 bg-[#F8F8F8] rounded ">
{buttons.map((btn, index) => (
<Button
key={index}
className={`${btn.className} rounded-md px-2 py-2 text-sm`}
iconHolderClassName={"bg-transparent mr-1"}
iconClassName={"w-5"}
icon={btn.icon}
text={btn.title}
subTitle={btn.subTitle}
/>
))}
</div>
</div>
{/* left */}
<div className="flex flex-col justify-center gap-y-4 p-2 bg-white border-r border-blue-400">
{options.map((option, j) => (
<div className="flex flex-col">
<div
key={j}
className="flex flex-row gap-x-7 items-center justify-between"
>
<div className="flex flex-row items-center">
<img src={option.icon} alt="icon" className="w-6" />
<p className="text-xs mr-1.5 text-[#00253A]">{option.title}</p>
</div>
<p className="text-xs text-[#00253A]">{option.content}</p>
</div>
{j === 2 && <hr className="mt-4 border border-[#F2F2F2]" />}
</div>
))}
</div>
{/* modal */}
<div
className={`cursor-pointer w-screen h-screen flex items-center justify-center bg-black fixed left-0 top-0 duration-300 transition-all
${openModal ? "opacity-60" : "opacity-0 pointer-events-none"}
`}
>
<div
className="w-1/2 flex flex-col bg-white border border-gray-400 rounded-sm p-5"
onClick={(e) => e.stopPropagation()}
>
<Button
text={null}
icon={"images/blue-clock.svg"}
iconHolderClassName={""}
iconClassName={""}
className="p-2 bg-red-600 rounded self-end"
onClick={() => setOpenModal(false)}
/>
<FormInput />
</div>
</div>
</section>
);
};
export default ProcessCard;
ProcessCard.defaultProps = {
title: "پروسه مختلف در این قسمت قرار می گیرد",
hint: "یک توضیح کوتاه در این پروسه در اینجا قرار خواهد گرفت که نشان دهنده چیز های مختلف است.",
processes: [
{
color: "bg-[#51B708]",
name: "فرایند اجرایی",
content: 256,
},
{
color: false,
name: "وضعیت:",
content: "پرداخت شده",
},
{
color: "bg-[#EE1010]",
name: "در حال انجام",
content: 55,
},
{
color: false,
name: "انجام شده",
content: 100,
},
],
buttons: [
{
title: "ویرایش",
className: "bg-[#046AE8] text-white",
icon: "images/blue-edit-icon.svg",
},
{
title: "سوالات:",
className: "border border-[#046AE8] text-[#046AE8]",
subTitle: "5",
icon: "images/blue-thick-box.svg",
},
{
title: "چک لیست:",
className: "border border-[#046AE8] text-[#046AE8]",
subTitle: "تابع دارد",
icon: "images/blue-thick-mark.svg",
},
{
title: "مکاتبات:",
className: "border border-[#046AE8] text-[#046AE8]",
subTitle: "1",
icon: "images/blue-email.svg",
},
],
options: [
{
icon: "images/blue-clock.svg",
title: "تاخیر",
content: "5 ساعت",
},
{
icon: "images/blue-git-icon.svg",
title: "شرایط اجرا",
content: "2 مورد",
},
{
icon: "images/blue-start-function.svg",
title: "تابع شروع",
content: "ندارد",
},
{
icon: "images/blue-return.svg",
title: "مهلت",
content: "5 ساعت",
},
{
icon: "images/blue-thick-icon.svg",
title: "تایید خودکار",
content: "5 ساعت",
},
{
icon: "images/blue-thick-clock.svg",
title: "تابع انجام",
content: "ندارد",
},
],
};