mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-08-17 22:30:36 +03:00
16 lines
580 B
TypeScript
16 lines
580 B
TypeScript
import { Tooltip } from '@/components/container1';
|
|
import { globalIDs } from '@/utils/constants';
|
|
|
|
import { useCstTooltipStore } from '../stores/cst-tooltip';
|
|
|
|
import { InfoConstituenta } from './info-constituenta';
|
|
|
|
export function ConstituentaTooltip() {
|
|
const hoverCst = useCstTooltipStore(state => state.activeCst);
|
|
return (
|
|
<Tooltip clickable id={globalIDs.constituenta_tooltip} layer='z-topmost' className='max-w-120' hidden={!hoverCst}>
|
|
{hoverCst ? <InfoConstituenta data={hoverCst} onClick={event => event.stopPropagation()} /> : null}
|
|
</Tooltip>
|
|
);
|
|
}
|