import { ReactElement, useMemo } from 'react'; import NETWORK_TYPES from '../../lib/consts/NETWORK_TYPES'; import FlexBox from '../FlexBox'; import Grid from '../Grid'; import InputWithRef from '../InputWithRef'; import OutlinedInputWithLabel from '../OutlinedInputWithLabel'; import { InnerPanel, InnerPanelBody, InnerPanelHeader } from '../Panels'; import SwitchWithLabel from '../SwitchWithLabel'; import { buildIPAddressTestBatch, buildPeacefulStringTestBatch, } from '../../lib/test_input'; import { BodyText } from '../Text'; const INPUT_ID_PREFIX_AN_HOST = 'an-host-input'; const INPUT_CELL_ID_PREFIX_AH = `${INPUT_ID_PREFIX_AN_HOST}-cell`; const GRID_SPACING = '1em'; const buildInputIdAHFencePort = (fenceId: string): string => `${INPUT_ID_PREFIX_AN_HOST}-${fenceId}-port`; const buildInputIdAHNetworkIp = (networkId: string): string => `${INPUT_ID_PREFIX_AN_HOST}-${networkId}-ip`; const buildInputIdAHUpsPowerHost = (upsId: string): string => `${INPUT_ID_PREFIX_AN_HOST}-${upsId}-power-host`; const AnHostInputGroup = ({ formUtils: { buildFinishInputTestBatchFunction, buildInputFirstRenderFunction, msgSetters, setMsgSetter, }, hostLabel, previous: { fences: fenceList = {}, networks: networkList = {}, upses: upsList = {}, } = {}, }: AnHostInputGroupProps): ReactElement => { const fenceListEntries = useMemo( () => Object.entries(fenceList), [fenceList], ); const networkListEntries = useMemo( () => Object.entries(networkList), [networkList], ); const upsListEntries = useMemo(() => Object.entries(upsList), [upsList]); const isShowFenceListGrid = useMemo( () => Boolean(fenceListEntries.length), [fenceListEntries.length], ); const isShowUpsListGrid = useMemo( () => Boolean(upsListEntries.length), [upsListEntries.length], ); const isShowFenceAndUpsListGrid = useMemo( () => isShowFenceListGrid || isShowUpsListGrid, [isShowFenceListGrid, isShowUpsListGrid], ); const fenceListGridLayout = useMemo( () => fenceListEntries.reduce( (previous, [fenceId, { fenceName, fencePort }]) => { const cellId = `${INPUT_CELL_ID_PREFIX_AH}-${fenceId}-port`; const inputId = buildInputIdAHFencePort(fenceId); const inputLabel = `Port on ${fenceName}`; setMsgSetter(inputId); previous[cellId] = { children: ( } inputTestBatch={buildPeacefulStringTestBatch( inputLabel, () => { msgSetters[inputId](); }, { onFinishBatch: buildFinishInputTestBatchFunction(inputId) }, (message) => { msgSetters[inputId]({ children: message }); }, )} onFirstRender={buildInputFirstRenderFunction(inputId)} required /> ), }; return previous; }, {}, ), [ buildFinishInputTestBatchFunction, buildInputFirstRenderFunction, fenceListEntries, msgSetters, setMsgSetter, ], ); const networkListGridLayout = useMemo( () => networkListEntries.reduce( (previous, [networkId, { networkIp, networkNumber, networkType }]) => { const cellId = `${INPUT_CELL_ID_PREFIX_AH}-${networkId}-ip`; const inputId = buildInputIdAHNetworkIp(networkIp); const inputLabel = `${NETWORK_TYPES[networkType]} ${networkNumber}`; setMsgSetter(inputId); previous[cellId] = { children: ( } inputTestBatch={buildIPAddressTestBatch( inputLabel, () => { msgSetters[inputId](); }, { onFinishBatch: buildFinishInputTestBatchFunction(inputId) }, (message) => { msgSetters[inputId]({ children: message }); }, )} onFirstRender={buildInputFirstRenderFunction(inputId)} required /> ), }; return previous; }, {}, ), [ networkListEntries, setMsgSetter, buildFinishInputTestBatchFunction, buildInputFirstRenderFunction, msgSetters, ], ); const upsListGridLayout = useMemo( () => upsListEntries.reduce( (previous, [upsId, { isUsed, upsName }]) => { const cellId = `${INPUT_CELL_ID_PREFIX_AH}-${upsId}-power-host`; const inputId = buildInputIdAHUpsPowerHost(upsId); const inputLabel = `Uses ${upsName}`; previous[cellId] = { children: ( } valueType="boolean" /> ), }; return previous; }, {}, ), [upsListEntries], ); return ( {hostLabel} {isShowFenceAndUpsListGrid && ( ), }, 'an-host-ups-input-group': { children: ( ), }, }} spacing={GRID_SPACING} /> )} ); }; export { buildInputIdAHFencePort, buildInputIdAHNetworkIp, buildInputIdAHUpsPowerHost, }; export default AnHostInputGroup;