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 (
{/* right */}
{/* top */}
{processes.map((process, index) => (
{process.color && ( )}

{process.name}

{process.content}
))}
{/* middle */}

{title}

{hint}

{/* bottom */}
{buttons.map((btn, index) => (
{/* left */}
{options.map((option, j) => (
icon

{option.title}

{option.content}

{j === 2 &&
}
))}
); }; 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: "ندارد", }, ], };