From 610584c3ce986cdea431180f545e023cee14d5d2 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Mar 2021 06:30:22 +0300 Subject: feat: implement Product Add/Edit --- src/containers/ProductForm.tsx | 51 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 44 insertions(+), 7 deletions(-) (limited to 'src/containers/ProductForm.tsx') diff --git a/src/containers/ProductForm.tsx b/src/containers/ProductForm.tsx index d79b1d1..0d21df9 100644 --- a/src/containers/ProductForm.tsx +++ b/src/containers/ProductForm.tsx @@ -1,14 +1,51 @@ import React from 'react'; -import Page, { Action } from '../containers/Page'; +import { useParams, useHistory } from 'react-router-dom'; +import { Formik, Form, Field } from 'formik'; +import Page, { Action } from './Page'; +import Input from '../components/Input'; +import { useProduct } from '../hooks/useAPIClient'; +import { post, patch } from '../requests'; + +interface Params { + id: string; +} const actions: Action[] = [ - { name: 'Назад', route: '/', variant: 'outlined' }, - { name: 'Сохранить', route: '/' }, + { name: 'Назад', variant: 'outlined', route: '..' }, + { name: 'Сохранить', type: 'submit', form: 'productForm' }, ]; -const ProductForm: React.FC = () => ( - - -); +const ProductForm: React.FC = () => { + const history = useHistory(); + const { id } = useParams(); + const { data: product } = useProduct(id); + + const onSubmit = (values: any) => { + const promise = id + ? patch(`/products/${id}`, values) + : post('/products', values); + return promise.then(() => history.push('/products')); + }; + + return ( + + {(!id || product) && ( + + {() => ( +
+
+ + +
+
+ )} +
+ )} +
+ ); +}; export default ProductForm; -- cgit v1.2.3