Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use FormProvider and FormContext hook to use form methods in nested f… #229

Merged
merged 3 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion components/clusterTable/clusterTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import MoreHorizIcon from '@mui/icons-material/MoreHoriz';
import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown';
import KeyboardArrowUpIcon from '@mui/icons-material/KeyboardArrowUp';
import Image from 'next/image';
import moment from 'moment';

import k3dLogo from '../../assets/k3d_logo.svg';
import awsLogo from '../../assets/aws_logo.svg';
Expand Down Expand Up @@ -105,7 +106,9 @@ const ClusterRow: FunctionComponent<ClusterInfo> = ({
<StyledCellText variant="body2">{nodeCount}</StyledCellText>
</StyledTableCell>
<StyledTableCell>
<StyledCellText variant="body2">{creationDate}</StyledCellText>
<StyledCellText variant="body2">
{moment(new Date(creationDate as string)).format('DD MMM YYYY')}
</StyledCellText>
</StyledTableCell>
<StyledTableCell>
<StyledCellText variant="body2">{createdBy}</StyledCellText>
Expand Down
11 changes: 3 additions & 8 deletions containers/clusterForms/aws/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import React, { FunctionComponent } from 'react';

import TerminalLogs from '../../terminalLogs';
import { FormStep } from '../../../constants/installation';
import { InstallValues } from '../../../types/redux';
import { FormFlowProps } from '../../../types/provision';
import AuthForm from '../shared/authForm';
import ClusterRunning from '../shared/clusterRunning';

Expand All @@ -16,15 +14,12 @@ const AWS_FORM_FLOW = {
[FormStep.READY]: ClusterRunning,
};

export const AwsFormFlow: FunctionComponent<FormFlowProps<InstallValues>> = ({
currentStep,
...rest
}) => {
const ActiveFormStep = AWS_FORM_FLOW[currentStep as FormStep];
export const AwsFormFlow: FunctionComponent<{ currentStep: FormStep }> = ({ currentStep }) => {
const ActiveFormStep = AWS_FORM_FLOW[currentStep];

if (!ActiveFormStep) {
return null;
}

return <ActiveFormStep {...rest} currentStep={currentStep} />;
return <ActiveFormStep />;
};
6 changes: 4 additions & 2 deletions containers/clusterForms/aws/setupForm/index.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import React, { FunctionComponent } from 'react';
import { useFormContext } from 'react-hook-form';

import ControlledAutocomplete from '../../../../components/controlledFields/AutoComplete';
import ControlledTextField from '../../../../components/controlledFields/TextField';
// import LearnMore from '../../../../components/learnMore';
import { useAppDispatch, useAppSelector } from '../../../../redux/store';
import { getCloudDomains } from '../../../../redux/thunks/api.thunk';
import { InstallValues } from '../../../../types/redux';
import { FormFlowProps } from '../../../../types/provision';
import { EMAIL_REGEX } from '../../../../constants/index';

const AwsSetupForm: FunctionComponent<FormFlowProps<InstallValues>> = ({ control }) => {
const AwsSetupForm: FunctionComponent = () => {
const dispatch = useAppDispatch();
const { cloudDomains, cloudRegions, values } = useAppSelector(({ api, installation }) => ({
cloudDomains: api.cloudDomains,
Expand All @@ -30,6 +30,8 @@ const AwsSetupForm: FunctionComponent<FormFlowProps<InstallValues>> = ({ control
});
};

const { control } = useFormContext<InstallValues>();

return (
<>
<ControlledTextField
Expand Down
11 changes: 3 additions & 8 deletions containers/clusterForms/civo/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React, { FunctionComponent } from 'react';
import { FormFlowProps } from 'types/provision';

import TerminalLogs from '../../terminalLogs';
import { FormStep } from '../../../constants/installation';
import { InstallValues } from '../../../types/redux';
import AuthForm from '../shared/authForm';
import ClusterRunning from '../shared/clusterRunning';

Expand All @@ -16,15 +14,12 @@ const CIVO_FORM_FLOW = {
[FormStep.READY]: ClusterRunning,
};

export const CivoFormFlow: FunctionComponent<FormFlowProps<InstallValues>> = ({
currentStep,
...rest
}) => {
const ActiveFormStep = CIVO_FORM_FLOW[currentStep as FormStep];
export const CivoFormFlow: FunctionComponent<{ currentStep: FormStep }> = ({ currentStep }) => {
const ActiveFormStep = CIVO_FORM_FLOW[currentStep];

if (!ActiveFormStep) {
return null;
}

return <ActiveFormStep {...rest} currentStep={currentStep} />;
return <ActiveFormStep />;
};
6 changes: 4 additions & 2 deletions containers/clusterForms/civo/setupForm/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { FunctionComponent } from 'react';
import { FormFlowProps } from 'types/provision';
import { useFormContext } from 'react-hook-form';

import ControlledAutocomplete from '../../../../components/controlledFields/AutoComplete';
import ControlledTextField from '../../../../components/controlledFields/TextField';
Expand All @@ -9,14 +9,16 @@ import { getCloudDomains } from '../../../../redux/thunks/api.thunk';
import { InstallValues } from '../../../../types/redux';
import { EMAIL_REGEX } from '../../../../constants';

const CivoSetupForm: FunctionComponent<FormFlowProps<InstallValues>> = ({ control }) => {
const CivoSetupForm: FunctionComponent = () => {
const dispatch = useAppDispatch();
const { cloudDomains, cloudRegions, values } = useAppSelector(({ api, installation }) => ({
cloudDomains: api.cloudDomains,
cloudRegions: api.cloudRegions,
values: installation.values,
}));

const { control } = useFormContext<InstallValues>();

const handleRegionOnSelect = async (region: string) => {
dispatch(getCloudDomains(region));
};
Expand Down
9 changes: 3 additions & 6 deletions containers/clusterForms/digitalocean/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React, { FunctionComponent } from 'react';
import { FormFlowProps } from 'types/provision';

import TerminalLogs from '../../terminalLogs';
import { FormStep } from '../../../constants/installation';
import { InstallValues } from '../../../types/redux';
import AuthForm from '../shared/authForm';
import ClusterRunning from '../shared/clusterRunning';

Expand All @@ -16,15 +14,14 @@ const DIGITAL_OCEAN_FORM_FLOW = {
[FormStep.READY]: ClusterRunning,
};

export const DigitalOceanFormFlow: FunctionComponent<FormFlowProps<InstallValues>> = ({
export const DigitalOceanFormFlow: FunctionComponent<{ currentStep: FormStep }> = ({
currentStep,
...rest
}) => {
const ActiveFormStep = DIGITAL_OCEAN_FORM_FLOW[currentStep as FormStep];
const ActiveFormStep = DIGITAL_OCEAN_FORM_FLOW[currentStep];

if (!ActiveFormStep) {
return null;
}

return <ActiveFormStep {...rest} currentStep={currentStep} />;
return <ActiveFormStep />;
};
6 changes: 4 additions & 2 deletions containers/clusterForms/digitalocean/setupForm/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { FunctionComponent } from 'react';
import { useFormContext } from 'react-hook-form';

// import LearnMore from '../../../../components/learnMore';
import ControlledAutocomplete from '../../../../components/controlledFields/AutoComplete';
Expand All @@ -7,16 +8,17 @@ import { useAppDispatch, useAppSelector } from '../../../../redux/store';
import { getCloudDomains } from '../../../../redux/thunks/api.thunk';
import { EMAIL_REGEX } from '../../../../constants';
import { InstallValues } from '../../../../types/redux';
import { FormFlowProps } from '../../../../types/provision';

const DigitalOceanSetupForm: FunctionComponent<FormFlowProps<InstallValues>> = ({ control }) => {
const DigitalOceanSetupForm: FunctionComponent = () => {
const dispatch = useAppDispatch();
const { cloudDomains, cloudRegions, values } = useAppSelector(({ api, installation }) => ({
cloudDomains: api.cloudDomains,
cloudRegions: api.cloudRegions,
values: installation.values,
}));

const { control } = useFormContext<InstallValues>();

const handleRegionOnSelect = async (region: string) => {
dispatch(getCloudDomains(region));
};
Expand Down
14 changes: 3 additions & 11 deletions containers/clusterForms/k3d/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import React, { FunctionComponent } from 'react';
import ClusterRunningMessage from '../shared/clusterRunning';
import TerminalLogs from '../../terminalLogs';
import { LocalFormStep } from '../../../constants/installation';
import { FormFlowProps } from '../../../types/provision';
import { InstallValues } from '../../../types/redux';

import { LocalSetupForm } from './setupForm';
import { ContentContainer } from './k3d.styled';
Expand All @@ -15,24 +13,18 @@ const K3D_FORM_FLOW = {
[LocalFormStep.READY]: ClusterRunningMessage,
};

export const LocalFormFlow: FunctionComponent<FormFlowProps<InstallValues>> = ({
export const LocalFormFlow: FunctionComponent<{ currentStep: LocalFormStep }> = ({
currentStep,
...rest
}) => {
const ActiveFormStep = K3D_FORM_FLOW[currentStep as LocalFormStep];
const ActiveFormStep = K3D_FORM_FLOW[currentStep];

if (!ActiveFormStep) {
return null;
}

return (
<ContentContainer>
<ActiveFormStep
{...rest}
currentStep={currentStep}
clusterName="kubefirst"
domainName="kubefirst.dev"
/>
<ActiveFormStep clusterName="kubefirst" domainName="kubefirst.dev" />
</ContentContainer>
);
};
5 changes: 3 additions & 2 deletions containers/clusterForms/k3d/setupForm/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import React, { FunctionComponent } from 'react';
import { useFormContext } from 'react-hook-form';

import ControlledTextField from '../../../../components/controlledFields/TextField';
import ControlledPassword from '../../../../components/controlledFields/Password';
// import LearnMore from '../../../../components/learnMore';
import { InstallValues } from '../../../../types/redux';
import { FormFlowProps } from '../../../../types/provision';

export const LocalSetupForm: FunctionComponent<FormFlowProps<InstallValues>> = ({ control }) => {
export const LocalSetupForm: FunctionComponent = () => {
const { control } = useFormContext<InstallValues>();
return (
<>
<ControlledPassword
Expand Down
8 changes: 5 additions & 3 deletions containers/clusterForms/shared/advancedOptions/index.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import React, { ChangeEvent, FunctionComponent, useState } from 'react';
import LearnMore from 'components/learnMore';
import { useFormContext } from 'react-hook-form';

import LearnMore from '../../../../components/learnMore';
import Typography from '../../../../components/typography';
import SwitchComponent from '../../../../components/switch';
import Checkbox from '../../../../components/controlledFields/Checkbox';
import ControlledTextField from '../../../../components/controlledFields/TextField';
import ControlledAutocomplete from '../../../../components/controlledFields/AutoComplete';
import { useAppSelector } from '../../../../redux/store';
import { FormFlowProps } from '../../../../types/provision';
import { InstallValues } from '../../../../types/redux';
import { EXCLUSIVE_PLUM } from '../../../../constants/colors';

import { CheckboxContainer, Switch } from './advancedOptions.styled';

const AdvancedOptions: FunctionComponent<FormFlowProps<InstallValues>> = ({ control }) => {
const AdvancedOptions: FunctionComponent = () => {
const [isAdvancedOptionsEnabled, setIsAdvancedOptionsEnabled] = useState<boolean>(false);
const [isCloudFlareSelected, setIsCloudFlareSelected] = useState<boolean>(false);

Expand All @@ -23,6 +23,8 @@ const AdvancedOptions: FunctionComponent<FormFlowProps<InstallValues>> = ({ cont

const { values, installType } = useAppSelector(({ installation }) => installation);

const { control } = useFormContext<InstallValues>();

return (
<>
<Switch>
Expand Down
11 changes: 5 additions & 6 deletions containers/clusterForms/shared/authForm/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React, { ChangeEvent, FunctionComponent, useEffect, useMemo, useState } from 'react';
import debounce from 'lodash/debounce';
import { useFormContext } from 'react-hook-form';

import { Required } from '../../../../components/textField/textField.styled';
import GitProviderButton from '../../../../components/gitProviderButton';
Expand All @@ -10,7 +11,6 @@ import ControlledPassword from '../../../../components/controlledFields/Password
import ControlledAutocomplete from '../../../../components/controlledFields/AutoComplete';
import { useAppDispatch, useAppSelector } from '../../../../redux/store';
import { GIT_PROVIDERS, GitProvider } from '../../../../types';
import { FormFlowProps } from '../../../../types/provision';
import { InstallValues, InstallationType } from '../../../../types/redux/index';
import { FormStep } from '../../../../constants/installation';
import { EXCLUSIVE_PLUM } from '../../../../constants/colors';
Expand All @@ -34,11 +34,7 @@ import { setGitProvider } from '../../../../redux/slices/installation.slice';

import { FormContainer, GitContainer, GitUserField, GitUserFieldInput } from './authForm.styled';

const AuthForm: FunctionComponent<FormFlowProps<InstallValues>> = ({
control,
reset,
setValue,
}) => {
const AuthForm: FunctionComponent = () => {
const [isGitRequested, setIsGitRequested] = useState<boolean>();
const [gitUserName, setGitUserName] = useState<string>();

Expand Down Expand Up @@ -71,6 +67,9 @@ const AuthForm: FunctionComponent<FormFlowProps<InstallValues>> = ({
gitProvider as GitProvider,
FormStep.AUTHENTICATION,
);

const { control, reset, setValue } = useFormContext<InstallValues>();

const isGitHub = useMemo(() => gitProvider === GitProvider.GITHUB, [gitProvider]);

const validateGitOwner = async (gitOwner: string) => {
Expand Down
16 changes: 12 additions & 4 deletions containers/clusterForms/shared/clusterRunning/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,32 @@ import React, { FunctionComponent } from 'react';
import { useRouter } from 'next/router';

import { getClusters } from '../../../../redux/thunks/api.thunk';
import { useAppDispatch } from '../../../../redux/store';
import { useAppDispatch, useAppSelector } from '../../../../redux/store';
import ClusterReady from '../../../../components/clusterReady';

export interface ClusterRunning {
export interface ClusterRunningProps {
clusterName?: string;
domainName?: string;
}

const ClusterRunning: FunctionComponent<ClusterRunning> = (props) => {
const ClusterRunning: FunctionComponent<ClusterRunningProps> = (props) => {
const dispatch = useAppDispatch();
const installValues = useAppSelector(({ installation }) => installation.values);
const { push } = useRouter();

const onOpenConsole = () => {
dispatch(getClusters());
push('/services');
};

return <ClusterReady onOpenConsole={onOpenConsole} {...props} />;
return (
<ClusterReady
onOpenConsole={onOpenConsole}
clusterName={installValues?.clusterName}
domainName={installValues?.domainName}
{...props}
/>
);
};

export default ClusterRunning;
8 changes: 3 additions & 5 deletions containers/clusterForms/vultr/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React, { FunctionComponent } from 'react';
import { FormFlowProps } from 'types/provision';

import TerminalLogs from '../../terminalLogs';
import { FormStep } from '../../../constants/installation';
import { InstallValues } from '../../../types/redux';
import AuthForm from '../shared/authForm';
import ClusterRunning from '../shared/clusterRunning';

Expand All @@ -16,15 +14,15 @@ const VULTR_FORM_FLOW = {
[FormStep.READY]: ClusterRunning,
};

export const VultrFormFlow: FunctionComponent<FormFlowProps<InstallValues>> = ({
export const VultrFormFlow: FunctionComponent<{ currentStep: FormStep }> = ({
currentStep,
...rest
}) => {
const ActiveFormStep = VULTR_FORM_FLOW[currentStep as FormStep];
const ActiveFormStep = VULTR_FORM_FLOW[currentStep];

if (!ActiveFormStep) {
return null;
}

return <ActiveFormStep {...rest} currentStep={currentStep} />;
return <ActiveFormStep {...rest} />;
};
6 changes: 4 additions & 2 deletions containers/clusterForms/vultr/setupForm/index.tsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
import React, { FunctionComponent } from 'react';
import { useFormContext } from 'react-hook-form';

// import LearnMore from '../../../../components/learnMore';
import ControlledTextField from '../../../../components/controlledFields/TextField';
import ControlledAutocomplete from '../../../../components/controlledFields/AutoComplete';
import { useAppDispatch, useAppSelector } from '../../../../redux/store';
import { getCloudDomains } from '../../../../redux/thunks/api.thunk';
import { InstallValues } from '../../../../types/redux';
import { FormFlowProps } from '../../../../types/provision';
import { EMAIL_REGEX } from '../../../../constants';

const CivoSetupForm: FunctionComponent<FormFlowProps<InstallValues>> = ({ control }) => {
const CivoSetupForm: FunctionComponent = () => {
const dispatch = useAppDispatch();
const { cloudDomains, cloudRegions, values } = useAppSelector(({ api, installation }) => ({
cloudDomains: api.cloudDomains,
cloudRegions: api.cloudRegions,
values: installation.values,
}));

const { control } = useFormContext<InstallValues>();

const handleRegionOnSelect = async (region: string) => {
dispatch(getCloudDomains(region));
};
Expand Down
Loading