refactor: separate substeps in FlowStep

This commit is contained in:
Ali BARIN
2022-02-06 22:45:43 +01:00
committed by Ömer Faruk Aydın
parent 873421f1e9
commit 50ef6be69c
7 changed files with 420 additions and 190 deletions

View File

@@ -1,15 +1,25 @@
import * as React from 'react';
import { useQuery } from '@apollo/client';
import Autocomplete from '@mui/material/Autocomplete';
import { useQuery, useLazyQuery } from '@apollo/client';
import TextField from '@mui/material/TextField';
import Button from '@mui/material/Button';
import Collapse from '@mui/material/Collapse';
import ListItem from '@mui/material/ListItem';
import Autocomplete from '@mui/material/Autocomplete';
import FlowSubstepTitle from 'components/FlowSubstepTitle';
import type { App, AppConnection } from 'types/app';
import type { Step, Substep } from 'types/step';
import { GET_APP_CONNECTIONS } from 'graphql/queries/get-app-connections';
import { TEST_CONNECTION } from 'graphql/queries/test-connection';
type ChooseAccountSubstepProps = {
appKey: string;
connectionId: string;
onChange: (connectionId: string) => void;
substep: Substep,
expanded?: boolean;
onExpand: () => void;
onCollapse: () => void;
onChange: ({ step }: { step: Step}) => void;
onSubmit: () => void;
step: Step;
};
const optionGenerator = (connection: AppConnection): { label: string; value: string; } => ({
@@ -20,31 +30,105 @@ const optionGenerator = (connection: AppConnection): { label: string; value: str
const getOption = (options: Record<string, unknown>[], connectionId: string) => options.find(connection => connection.value === connectionId) || null;
function ChooseAccountSubstep(props: ChooseAccountSubstepProps): React.ReactElement {
const { appKey, connectionId, onChange } = props;
const {
substep,
expanded = false,
onExpand,
onCollapse,
step,
onSubmit,
onChange,
} = props;
const {
connection,
appKey,
} = step;
const { data, loading } = useQuery(GET_APP_CONNECTIONS, { variables: { key: appKey }});
// TODO: show detailed error when connection test/verification fails
const [
testConnection,
{
loading: testResultLoading,
refetch: retestConnection
}
] = useLazyQuery (TEST_CONNECTION, { variables: { id: connection?.id, }});
React.useEffect(() => {
if (connection?.id) {
testConnection({
variables: { id: connection?.id },
});
}
// intentionally no dependencies for initial test
}, []);
const connectionOptions = React.useMemo(() => (data?.getApp as App)?.connections?.map((connection) => optionGenerator(connection)) || [], [data]);
const { name } = substep;
const handleChange = React.useCallback((event: React.SyntheticEvent, selectedOption: unknown) => {
if (typeof selectedOption === 'object') {
// TODO: try to simplify type casting below.
const typedSelectedOption = selectedOption as { value: string };
const value = typedSelectedOption.value;
const option: { value: string } = typedSelectedOption;
const connectionId = option?.value as string;
onChange(value);
if (connectionId !== step.connection?.id) {
onChange({
step: {
...step,
connection: {
id: connectionId,
},
},
});
}
}
}, [onChange]);
}, [step, onChange]);
React.useEffect(() => {
if (step.connection?.id) {
retestConnection({
id: step.connection.id,
});
}
}, [step.connection?.id, retestConnection])
const onToggle = expanded ? onCollapse : onExpand;
return (
<Autocomplete
fullWidth
disablePortal
disableClearable
options={connectionOptions}
renderInput={(params) => <TextField {...params} label="Choose account" />}
value={getOption(connectionOptions, connectionId)}
onChange={handleChange}
loading={loading}
/>
<React.Fragment>
<FlowSubstepTitle
expanded={expanded}
onClick={onToggle}
title={name}
valid={testResultLoading ? null : connection?.verified}
/>
<Collapse in={expanded} timeout="auto" unmountOnExit>
<ListItem sx={{ pt: 2, pb: 3, flexDirection: 'column', alignItems: 'flex-start' }}>
<Autocomplete
fullWidth
disablePortal
disableClearable
options={connectionOptions}
renderInput={(params) => <TextField {...params} label="Choose account" />}
value={getOption(connectionOptions, connection?.id)}
onChange={handleChange}
loading={loading}
/>
<Button
fullWidth
variant="contained"
onClick={onSubmit}
sx={{ mt: 2 }}
disabled={testResultLoading || !connection?.verified}
>
Continue
</Button>
</ListItem>
</Collapse>
</React.Fragment>
);
}