mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
84 lines
2.8 KiB
TypeScript
84 lines
2.8 KiB
TypeScript
|
import { Button } from '@material-ui/core';
|
||
|
import Input from 'component/common/Input/Input';
|
||
|
import React from 'react';
|
||
|
import { useHistory } from 'react-router-dom';
|
||
|
import { useStyles } from 'component/segments/SegmentFormStepOne/SegmentFormStepOne.styles';
|
||
|
import { SegmentFormStep } from '../SegmentForm/SegmentForm';
|
||
|
|
||
|
interface ISegmentFormPartOneProps {
|
||
|
name: string;
|
||
|
description: string;
|
||
|
setName: React.Dispatch<React.SetStateAction<string>>;
|
||
|
setDescription: React.Dispatch<React.SetStateAction<string>>;
|
||
|
errors: { [key: string]: string };
|
||
|
clearErrors: () => void;
|
||
|
setCurrentStep: React.Dispatch<React.SetStateAction<SegmentFormStep>>;
|
||
|
}
|
||
|
|
||
|
export const SegmentFormStepOne: React.FC<ISegmentFormPartOneProps> = ({
|
||
|
children,
|
||
|
name,
|
||
|
description,
|
||
|
setName,
|
||
|
setDescription,
|
||
|
errors,
|
||
|
clearErrors,
|
||
|
setCurrentStep,
|
||
|
}) => {
|
||
|
const history = useHistory();
|
||
|
const styles = useStyles();
|
||
|
|
||
|
return (
|
||
|
<div className={styles.form}>
|
||
|
<div className={styles.container}>
|
||
|
<p className={styles.inputDescription}>
|
||
|
What is the segment name?
|
||
|
</p>
|
||
|
<Input
|
||
|
className={styles.input}
|
||
|
label="Segment name"
|
||
|
value={name}
|
||
|
onChange={e => setName(e.target.value)}
|
||
|
error={Boolean(errors.name)}
|
||
|
errorText={errors.name}
|
||
|
onFocus={() => clearErrors()}
|
||
|
autoFocus
|
||
|
required
|
||
|
/>
|
||
|
<p className={styles.inputDescription}>
|
||
|
What is the segment description?
|
||
|
</p>
|
||
|
<Input
|
||
|
className={styles.input}
|
||
|
label="Description (optional)"
|
||
|
value={description}
|
||
|
onChange={e => setDescription(e.target.value)}
|
||
|
error={Boolean(errors.description)}
|
||
|
errorText={errors.description}
|
||
|
onFocus={() => clearErrors()}
|
||
|
/>
|
||
|
</div>
|
||
|
<div className={styles.buttonContainer}>
|
||
|
<Button
|
||
|
type="button"
|
||
|
variant="contained"
|
||
|
color="primary"
|
||
|
onClick={() => setCurrentStep(2)}
|
||
|
disabled={name.length === 0}
|
||
|
>
|
||
|
Next
|
||
|
</Button>
|
||
|
<Button
|
||
|
type="button"
|
||
|
className={styles.cancelButton}
|
||
|
onClick={() => {
|
||
|
history.push('/segments');
|
||
|
}}
|
||
|
>
|
||
|
Cancel
|
||
|
</Button>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
};
|