|
|
@ -9,16 +9,23 @@ const BreadCrumb = ({ breadCrumbs }) => { |
|
|
|
{breadCrumbs.map((breadCrumb, index) => ( |
|
|
|
{breadCrumbs.map((breadCrumb, index) => ( |
|
|
|
<div className="flex flex-row items-center" key={index}> |
|
|
|
<div className="flex flex-row items-center" key={index}> |
|
|
|
<span |
|
|
|
<span |
|
|
|
className={`cursor-pointer text-xs hover:text-blue-900 ${ |
|
|
|
className={`cursor-pointer text-xs hover:text-blue-900 ${ |
|
|
|
breadCrumb.active ? "text-blue-900" : "text-blue-400" |
|
|
|
Number(index) === breadCrumbs.length - 1 |
|
|
|
|
|
|
|
? "text-blue-900" |
|
|
|
|
|
|
|
: "text-blue-400" |
|
|
|
}`}
|
|
|
|
}`}
|
|
|
|
> |
|
|
|
> |
|
|
|
{breadCrumb.name} |
|
|
|
{breadCrumb.name} |
|
|
|
{console.log(breadCrumb.active)} |
|
|
|
{/* {console.log(breadCrumb.active)} */} |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
{Number(index) !== breadCrumbs.length - 1 && ( |
|
|
|
{Number(index) !== breadCrumbs.length - 1 && ( |
|
|
|
<div> |
|
|
|
<div> |
|
|
|
{console.log(breadCrumbs.length - 1)} |
|
|
|
{/* {console.log(breadCrumbs)} |
|
|
|
|
|
|
|
{console.log(breadCrumbs[breadCrumbs.length - 1])} |
|
|
|
|
|
|
|
{console.log( |
|
|
|
|
|
|
|
breadCrumb.length ? "text-red-900" : "text-blue-400" |
|
|
|
|
|
|
|
)} */} |
|
|
|
|
|
|
|
|
|
|
|
{/* {breadCrumb.active === true ? ( |
|
|
|
{/* {breadCrumb.active === true ? ( |
|
|
|
<img src={grayLeftArrow} className="w-10" /> |
|
|
|
<img src={grayLeftArrow} className="w-10" /> |
|
|
|
) : ( |
|
|
|
) : ( |
|
|
@ -43,19 +50,15 @@ BreadCrumb.defaultProps = { |
|
|
|
breadCrumbs: [ |
|
|
|
breadCrumbs: [ |
|
|
|
{ |
|
|
|
{ |
|
|
|
name: "صفحه اصلی", |
|
|
|
name: "صفحه اصلی", |
|
|
|
active: false, |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
name: "آمار و گزارشات", |
|
|
|
name: "آمار و گزارشات", |
|
|
|
active: false, |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
name: "فروش محصولات", |
|
|
|
name: "فروش محصولات", |
|
|
|
active: false, |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
name: "سال 1400", |
|
|
|
name: "سال 1400", |
|
|
|
active: true, |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
], |
|
|
|
], |
|
|
|
}; |
|
|
|
}; |
|
|
|