ConceptPortal-public/rsconcept/frontend/src/components/info/InfoCstClass.tsx
Ivan 91dbd0e88f
Some checks are pending
Frontend CI / build (22.x) (push) Waiting to run
F: Rework colors using tailwind configs
2024-12-17 00:05:45 +03:00

35 lines
1.0 KiB
TypeScript

import clsx from 'clsx';
import { CstClass } from '@/models/rsform';
import { colorBgCstClass } from '@/styling/color';
import { prefixes } from '@/utils/constants';
import { describeCstClass, labelCstClass } from '@/utils/labels';
interface InfoCstClassProps {
header?: string;
}
function InfoCstClass({ header }: InfoCstClassProps) {
return (
<div className='flex flex-col gap-1 mb-2 dense'>
{header ? <h1>{header}</h1> : null}
{Object.values(CstClass).map((cstClass, index) => {
return (
<p key={`${prefixes.cst_status_list}${index}`}>
<span
className={clsx('inline-block', 'min-w-[7rem]', 'px-1', 'border', 'text-center text-sm font-controls')}
style={{ backgroundColor: colorBgCstClass(cstClass) }}
>
{labelCstClass(cstClass)}
</span>
<span> - </span>
<span>{describeCstClass(cstClass)}</span>
</p>
);
})}
</div>
);
}
export default InfoCstClass;