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.
119 lines
3.4 KiB
119 lines
3.4 KiB
2 years ago
|
import { withRouter } from 'next/router';
|
||
|
import { useEffect, useMemo } from 'react';
|
||
|
|
||
|
import api from '../lib/api';
|
||
|
import ContainedButton from './ContainedButton';
|
||
|
import handleAPIError from '../lib/handleAPIError';
|
||
|
import FlexBox from './FlexBox';
|
||
|
import InputWithRef from './InputWithRef';
|
||
|
import MessageBox, { Message } from './MessageBox';
|
||
|
import NetworkInitForm from './NetworkInitForm';
|
||
|
import OutlinedInputWithLabel from './OutlinedInputWithLabel';
|
||
|
import { Panel, PanelHeader } from './Panels';
|
||
|
import Spinner from './Spinner';
|
||
|
import { HeaderText } from './Text';
|
||
|
import useProtect from '../hooks/useProtect';
|
||
|
import useProtectedState from '../hooks/useProtectedState';
|
||
|
|
||
|
const PrepareNetworkForm = withRouter(
|
||
|
({
|
||
|
router: {
|
||
|
isReady,
|
||
|
query: { host_uuid: queryHostUUID },
|
||
|
},
|
||
|
}) => {
|
||
|
const { protect } = useProtect();
|
||
|
|
||
|
const [dataShortHostName, setDataShortHostName] = useProtectedState<
|
||
|
string | undefined
|
||
|
>(undefined, protect);
|
||
|
const [fatalErrorMessage, setFatalErrorMessage] = useProtectedState<
|
||
|
Message | undefined
|
||
|
>(undefined, protect);
|
||
|
const [isLoading, setIsLoading] = useProtectedState<boolean>(true, protect);
|
||
|
|
||
|
const panelHeaderElement = useMemo(
|
||
|
() => (
|
||
|
<PanelHeader>
|
||
|
<HeaderText>Prepare network on {dataShortHostName}</HeaderText>
|
||
|
</PanelHeader>
|
||
|
),
|
||
|
[dataShortHostName],
|
||
|
);
|
||
|
const contentElement = useMemo(() => {
|
||
|
let result;
|
||
|
|
||
|
if (isLoading) {
|
||
|
result = <Spinner mt={0} />;
|
||
|
} else if (fatalErrorMessage) {
|
||
|
result = <MessageBox {...fatalErrorMessage} />;
|
||
|
} else {
|
||
|
result = (
|
||
|
<>
|
||
|
{panelHeaderElement}
|
||
|
<FlexBox>
|
||
|
<InputWithRef
|
||
|
input={
|
||
|
<OutlinedInputWithLabel
|
||
|
formControlProps={{ sx: { maxWidth: '20em' } }}
|
||
|
id="prepare-network-host-name"
|
||
|
label="Host name"
|
||
|
/>
|
||
|
}
|
||
|
required
|
||
|
/>
|
||
|
<NetworkInitForm />
|
||
|
<FlexBox row justifyContent="flex-end">
|
||
|
<ContainedButton>Prepare network</ContainedButton>
|
||
|
</FlexBox>
|
||
|
</FlexBox>
|
||
|
</>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}, [fatalErrorMessage, isLoading, panelHeaderElement]);
|
||
|
|
||
|
useEffect(() => {
|
||
|
if (isReady) {
|
||
|
if (queryHostUUID) {
|
||
|
api
|
||
|
.get<APIHostDetail>(`/host/${queryHostUUID}`)
|
||
|
.then(({ data: { shortHostName } }) => {
|
||
|
setDataShortHostName(shortHostName);
|
||
|
})
|
||
|
.catch((error) => {
|
||
|
const { children } = handleAPIError(error);
|
||
|
|
||
|
setFatalErrorMessage({
|
||
|
children: `Failed to get target host information; cannot continue. ${children}`,
|
||
|
type: 'error',
|
||
|
});
|
||
|
})
|
||
|
.finally(() => {
|
||
|
setIsLoading(false);
|
||
|
});
|
||
|
} else if (!fatalErrorMessage) {
|
||
|
setFatalErrorMessage({
|
||
|
children: `No host UUID provided; cannot continue.`,
|
||
|
type: 'error',
|
||
|
});
|
||
|
|
||
|
setIsLoading(false);
|
||
|
}
|
||
|
}
|
||
|
}, [
|
||
|
fatalErrorMessage,
|
||
|
isReady,
|
||
|
queryHostUUID,
|
||
|
setDataShortHostName,
|
||
|
setFatalErrorMessage,
|
||
|
setIsLoading,
|
||
|
]);
|
||
|
|
||
|
return <Panel>{contentElement}</Panel>;
|
||
|
},
|
||
|
);
|
||
|
|
||
|
export default PrepareNetworkForm;
|