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.
159 lines
4.7 KiB
159 lines
4.7 KiB
import React, { useState } from "react"; |
|
|
|
import Button from "../Button"; |
|
import CircleInCircle from "../CircleInCircle"; |
|
import Modal from "../Modal"; |
|
|
|
const ProcessCard = ({ processes, title, hint, buttons, options }) => { |
|
return ( |
|
<section className="w-fit mx-auto flex flex-row bg-white border border-gray-300 rounded-md mt-5"> |
|
{/* right */} |
|
<div className="flex flex-1 flex-col justify-between"> |
|
{/* top */} |
|
<div className="flex items-center p-4 bg-[#EEFCE4] 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-2.5 h-2.5`} |
|
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"> |
|
<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 "> |
|
<Modal /> |
|
{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 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> |
|
</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: "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: "ندارد", |
|
}, |
|
], |
|
};
|
|
|