Local modifications to ClusterLabs/Anvil by Alteeve
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

220 lines
5.9 KiB

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,
buildNumberTestBatch,
} from '../../lib/test_input';
import { BodyText } from '../Text';
const INPUT_ID_PREFIX_ANVIL_HOST = 'anvil-host-input';
const INPUT_CELL_ID_PREFIX_ANVIL_HOST = `${INPUT_ID_PREFIX_ANVIL_HOST}-cell`;
const AnvilHostInputGroup = <M extends MapToInputTestID>({
formUtils: {
buildFinishInputTestBatchFunction,
buildInputFirstRenderFunction,
msgSetters,
setMsgSetter,
},
hostLabel,
previous: {
fences: fenceList = {},
networks: networkList = {},
upses: upsList = {},
} = {},
}: AnvilHostInputGroupProps<M>): ReactElement => {
const fenceListEntries = useMemo(
() => Object.entries(fenceList),
[fenceList],
);
const networkListEntries = useMemo(
() => Object.entries(networkList),
[networkList],
);
const upsListEntries = useMemo(() => Object.entries(upsList), [upsList]);
const fenceListGridLayout = useMemo(
() =>
fenceListEntries.reduce<GridLayout>(
(previous, [fenceId, { fenceName, fencePort }]) => {
const idPostfix = `${fenceId}-port`;
const cellId = `${INPUT_CELL_ID_PREFIX_ANVIL_HOST}-${idPostfix}`;
const inputId = `${INPUT_ID_PREFIX_ANVIL_HOST}-${idPostfix}`;
const inputLabel = fenceName;
setMsgSetter(inputId);
previous[cellId] = {
children: (
<InputWithRef
input={
<OutlinedInputWithLabel
id={inputId}
label={fenceName}
value={fencePort}
/>
}
inputTestBatch={buildNumberTestBatch(
inputLabel,
() => {
msgSetters[inputId]();
},
{ onFinishBatch: buildFinishInputTestBatchFunction(inputId) },
(message) => {
msgSetters[inputId]({
children: message,
});
},
)}
onFirstRender={buildInputFirstRenderFunction(inputId)}
required
valueType="number"
/>
),
};
return previous;
},
{},
),
[
buildFinishInputTestBatchFunction,
buildInputFirstRenderFunction,
fenceListEntries,
msgSetters,
setMsgSetter,
],
);
const networkListGridLayout = useMemo(
() =>
networkListEntries.reduce<GridLayout>(
(previous, [networkId, { networkIp, networkNumber, networkType }]) => {
const idPostfix = `${networkId}-ip`;
const cellId = `${INPUT_CELL_ID_PREFIX_ANVIL_HOST}-${idPostfix}`;
const inputId = `${INPUT_ID_PREFIX_ANVIL_HOST}-${idPostfix}`;
const inputLabel = `${NETWORK_TYPES[networkType]} ${networkNumber}`;
setMsgSetter(inputId);
previous[cellId] = {
children: (
<InputWithRef
input={
<OutlinedInputWithLabel
id={inputId}
label={inputLabel}
value={networkIp}
/>
}
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<GridLayout>(
(previous, [upsId, { isPowerHost, upsName }]) => {
const idPostfix = `${upsId}-power-host`;
const cellId = `${INPUT_CELL_ID_PREFIX_ANVIL_HOST}-${idPostfix}`;
const inputId = `${INPUT_ID_PREFIX_ANVIL_HOST}-${idPostfix}`;
previous[cellId] = {
children: (
<InputWithRef
input={
<SwitchWithLabel
id={inputId}
label={upsName}
checked={isPowerHost}
/>
}
valueType="boolean"
/>
),
};
return previous;
},
{},
),
[upsListEntries],
);
return (
<InnerPanel mv={0}>
<InnerPanelHeader>
<BodyText>{hostLabel}</BodyText>
</InnerPanelHeader>
<InnerPanelBody>
<FlexBox>
<Grid
columns={{ xs: 1, sm: 2, md: 3 }}
layout={networkListGridLayout}
spacing="1em"
/>
{Boolean(fenceListEntries.length || upsListEntries.length) && (
<Grid
alignItems="center"
columns={{ xs: 1, sm: 2, md: 4 }}
layout={{
...fenceListGridLayout,
...upsListGridLayout,
}}
spacing="1em"
/>
)}
</FlexBox>
</InnerPanelBody>
</InnerPanel>
);
};
export { INPUT_ID_PREFIX_ANVIL_HOST };
export default AnvilHostInputGroup;