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.
83 lines
2.5 KiB
83 lines
2.5 KiB
import { FC, useMemo, useRef, useState } from 'react'; |
|
|
|
import ContainedButton from './ContainedButton'; |
|
import FlexBox from './FlexBox'; |
|
import GeneralInitForm, { |
|
GeneralInitFormForwardRefContent, |
|
} from './GeneralInitForm'; |
|
import mainAxiosInstance from '../lib/singletons/mainAxiosInstance'; |
|
import MessageBox, { Message } from './MessageBox'; |
|
import NetworkInitForm, { |
|
NetworkInitFormForwardRefContent, |
|
} from './NetworkInitForm'; |
|
import { Panel, PanelHeader } from './Panels'; |
|
import Spinner from './Spinner'; |
|
import { HeaderText } from './Text'; |
|
|
|
const StrikerInitForm: FC = () => { |
|
const [submitMessage, setSubmitMessage] = useState<Message | undefined>(); |
|
const [isSubmittingForm, setIsSubmittingForm] = useState<boolean>(false); |
|
|
|
const generalInitFormRef = useRef<GeneralInitFormForwardRefContent>({}); |
|
const networkInitFormRef = useRef<NetworkInitFormForwardRefContent>({}); |
|
|
|
const buildSubmitSection = useMemo( |
|
() => |
|
isSubmittingForm ? ( |
|
<Spinner /> |
|
) : ( |
|
<FlexBox row sx={{ flexDirection: 'row-reverse' }}> |
|
<ContainedButton |
|
onClick={() => { |
|
setIsSubmittingForm(true); |
|
|
|
const requestBody: string = JSON.stringify({ |
|
...(generalInitFormRef.current.get?.call(null) ?? {}), |
|
...(networkInitFormRef.current.get?.call(null) ?? {}), |
|
}); |
|
|
|
mainAxiosInstance |
|
.put('/command/initialize-striker', requestBody, { |
|
headers: { 'Content-Type': 'application/json' }, |
|
}) |
|
.then(() => { |
|
setIsSubmittingForm(false); |
|
}) |
|
.catch((reason) => { |
|
setSubmitMessage({ |
|
children: `Failed to submit; ${reason}`, |
|
type: 'error', |
|
}); |
|
|
|
setIsSubmittingForm(false); |
|
}); |
|
}} |
|
> |
|
Initialize |
|
</ContainedButton> |
|
</FlexBox> |
|
), |
|
[isSubmittingForm], |
|
); |
|
|
|
return ( |
|
<Panel> |
|
<PanelHeader> |
|
<HeaderText text="Initialize striker" /> |
|
</PanelHeader> |
|
<FlexBox> |
|
<GeneralInitForm ref={generalInitFormRef} /> |
|
<NetworkInitForm ref={networkInitFormRef} /> |
|
{submitMessage && ( |
|
<MessageBox |
|
{...submitMessage} |
|
onClose={() => setSubmitMessage(undefined)} |
|
/> |
|
)} |
|
{buildSubmitSection} |
|
</FlexBox> |
|
</Panel> |
|
); |
|
}; |
|
|
|
export default StrikerInitForm;
|
|
|