import type { CSSProperties } from 'react'; import { useTabsController } from '../../../../elements/TabsProvider.js'; const styles: Record<'container' | 'infoText' | 'errorText', CSSProperties> = { container: { textAlign: 'center', width: '100%', }, infoText: { padding: '10px', margin: '10px 0', fontSize: '14px', textAlign: 'start', color: 'white', backgroundColor: '#5f5f5f', borderRadius: '5px', }, errorText: { color: 'red', }, }; const EDIT_SIGNAL_INFO_TEXT = `Focus on an input field and press Shift + Drag and Drop to draw a coupling constant in spectrum view.`; const ADD_SIGNAL_INFO_TEXT = `Focus on the input field and press Shift + Left mouse click to select new signal delta value in spectrum view.`; const InfoText = (props: { value: string; type?: 'info' | 'error' }) => { const { value, type = 'info' } = props; return (

{value}

); }; export function InfoBlock() { const { selectedTabId: signalIndex } = useTabsController(); return (
{signalIndex === -1 ? ( ) : ( )}
); }