ConceptPortal-public/rsconcept/frontend/src/features/rsform/components/info-constituenta.tsx
Ivan ba0416c37d
Some checks failed
Frontend CI / build (22.x) (push) Waiting to run
Frontend CI / notify-failure (push) Blocked by required conditions
Backend CI / build (3.12) (push) Has been cancelled
Backend CI / notify-failure (push) Has been cancelled
F: Implement crucial constituents feature
2025-07-29 20:57:19 +03:00

63 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { IconChild, IconCrucial } from '@/components/icons';
import { cn } from '@/components/utils';
import { labelCstTypification } from '../labels';
import { type IConstituenta } from '../models/rsform';
import { isBasicConcept } from '../models/rsform-api';
interface InfoConstituentaProps extends React.ComponentProps<'div'> {
data: IConstituenta;
}
export function InfoConstituenta({ data, className, ...restProps }: InfoConstituentaProps) {
return (
<div className={cn('dense min-w-60 break-words', className)} {...restProps}>
<h2 className='cursor-default' title={data.is_inherited ? ' наследник' : undefined}>
{data.alias}
{data.is_inherited ? <IconChild size='1rem' className='inline-icon align-middle ml-1 mt-1' /> : null}
{data.crucial ? <IconCrucial size='1rem' className='inline-icon align-middle mt-1' /> : null}
</h2>
{data.term_resolved ? (
<p>
<b>Термин: </b>
{data.term_resolved || data.term_raw}
</p>
) : null}
<p className='break-all'>
<b>Типизация: </b>
<span className='font-math'>{labelCstTypification(data)}</span>
</p>
{data.definition_formal ? (
<p className='break-all'>
<b>Выражение: </b>
<span className='font-math'>{data.definition_formal}</span>
</p>
) : null}
{data.definition_resolved ? (
<p>
<b>Определение: </b>
{data.definition_resolved}
</p>
) : null}
{data.spawner_alias ? (
<p>
<b>Основание: </b>
{data.spawner_alias}
</p>
) : null}
{data.spawn_alias.length > 0 ? (
<p>
<b>Порождает: </b>
{data.spawn_alias.join(', ')}
</p>
) : null}
{data.convention ? (
<p>
<b>{isBasicConcept(data.cst_type) ? 'Конвенция' : 'Комментарий'}: </b>
{data.convention}
</p>
) : null}
</div>
);
}