ConceptPortal-public/rsconcept/frontend/src/components/Help/InfoCstClass.tsx

38 lines
1.1 KiB
TypeScript
Raw Normal View History

2023-08-27 00:19:19 +03:00
import { useConceptTheme } from '../../context/ThemeContext';
2023-09-21 14:58:01 +03:00
import { CstClass } from '../../models/rsform';
import { colorbgCstClass } from '../../utils/color';
2023-08-16 00:39:16 +03:00
import { prefixes } from '../../utils/constants';
2023-09-21 14:58:01 +03:00
import { describeCstClass, labelCstClass } from '../../utils/labels';
2023-08-16 00:39:16 +03:00
2023-08-16 10:11:22 +03:00
interface InfoCstClassProps {
2023-08-16 00:39:16 +03:00
title?: string
}
2023-08-16 10:11:22 +03:00
function InfoCstClass({ title }: InfoCstClassProps) {
2023-08-27 00:19:19 +03:00
const { colors } = useConceptTheme();
2023-08-16 00:39:16 +03:00
return (
<div className='flex flex-col gap-1'>
{ title && <h1>{title}</h1>}
2023-09-21 14:58:01 +03:00
{ Object.values(CstClass).map(
(cclass, index) => {
2023-08-16 00:39:16 +03:00
return (
<p key={`${prefixes.cst_status_list}${index}`}>
2023-08-27 00:19:19 +03:00
<span
2023-09-04 18:33:48 +03:00
className='px-1 inline-block font-semibold min-w-[7rem] text-center border text-sm'
2023-09-21 14:58:01 +03:00
style={{backgroundColor: colorbgCstClass(cclass, colors)}}
2023-08-27 00:19:19 +03:00
>
2023-09-21 14:58:01 +03:00
{labelCstClass(cclass)}
2023-08-16 00:39:16 +03:00
</span>
<span> - </span>
<span>
2023-09-21 14:58:01 +03:00
{describeCstClass(cclass)}
2023-08-16 00:39:16 +03:00
</span>
</p>);
})}
</div>
);
}
2023-08-16 10:11:22 +03:00
export default InfoCstClass;