Skip to content
This repository has been archived by the owner on Apr 10, 2023. It is now read-only.

New segment constraint fix #26

Merged
merged 3 commits into from Jan 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 5 additions & 12 deletions src/components/segments/SegmentForm.tsx
@@ -1,5 +1,4 @@
import { Form, Formik } from 'formik';
import { useState } from 'react';
import { useNavigate } from 'react-router-dom';
import * as Yup from 'yup';
import Button from '~/components/forms/Button';
Expand Down Expand Up @@ -34,12 +33,7 @@ export default function SegmentForm(props: SegmentFormProps) {
const navigate = useNavigate();
const { setError, clearError } = useError();

const [selectedMatchType, setSelectedMatchType] = useState(
segment?.matchType || ('ALL_MATCH_TYPE' as SegmentMatchType)
);

const handleSubmit = (values: ISegmentBase) => {
values.matchType = selectedMatchType;
if (isNew) {
return createSegment(values);
}
Expand All @@ -50,7 +44,7 @@ export default function SegmentForm(props: SegmentFormProps) {
key: segment?.key || '',
name: segment?.name || '',
description: segment?.description || '',
matchType: selectedMatchType
matchType: segment?.matchType || ('ALL_MATCH_TYPE' as SegmentMatchType)
};

return (
Expand Down Expand Up @@ -105,7 +99,6 @@ export default function SegmentForm(props: SegmentFormProps) {
) {
formik.setFieldValue('key', stringAsKey(e.target.value));
}
formik.handleChange(e);
}}
/>
</div>
Expand Down Expand Up @@ -149,13 +142,13 @@ export default function SegmentForm(props: SegmentFormProps) {
name="matchType"
type="radio"
className="h-4 w-4 border-gray-300 text-violet-400 focus:ring-violet-400"
onChange={(e) => {
formik.handleChange(e);
setSelectedMatchType(
onChange={() => {
formik.setFieldValue(
'matchType',
matchType.id as SegmentMatchType
);
}}
checked={matchType.id === selectedMatchType}
checked={matchType.id === formik.values.matchType}
value={matchType.id}
/>
</div>
Expand Down