From 865b41114060765308d560181f4996c0aa7a3e74 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Fri, 26 Mar 2021 01:06:44 +0300 Subject: refactor: move Service to lib/ --- src/lib/Service.tsx | 25 ++++++++++++++++++++ src/lib/ServiceContext.tsx | 37 +++++++++++++++++++++++++++++ src/lib/ServiceItem.tsx | 59 ++++++++++++++++++++++++++++++++++++++++++++++ src/lib/ServiceList.tsx | 35 +++++++++++++++++++++++++++ 4 files changed, 156 insertions(+) create mode 100644 src/lib/Service.tsx create mode 100644 src/lib/ServiceContext.tsx create mode 100644 src/lib/ServiceItem.tsx create mode 100644 src/lib/ServiceList.tsx (limited to 'src/lib') diff --git a/src/lib/Service.tsx b/src/lib/Service.tsx new file mode 100644 index 0000000..b527531 --- /dev/null +++ b/src/lib/Service.tsx @@ -0,0 +1,25 @@ +import React, { useContext } from 'react'; +import { Route, Switch, useRouteMatch } from 'react-router-dom'; +import _ from 'lodash'; +import ServiceList from './ServiceList'; +import ServiceItem from './ServiceItem'; +import ServiceContext from './ServiceContext'; + + +const Service: React.FC = () => { + const { path } = useRouteMatch(); + const service = useContext(ServiceContext); + + return ( + + + + {_.map(service.routes, (component, route) => ( + + ))} + + + ); +}; + +export default Service; diff --git a/src/lib/ServiceContext.tsx b/src/lib/ServiceContext.tsx new file mode 100644 index 0000000..93cac4e --- /dev/null +++ b/src/lib/ServiceContext.tsx @@ -0,0 +1,37 @@ +import React from 'react'; +import { FormikProps } from 'formik'; +import { Props as ButtonProps } from '../components/Button'; +import { Field } from '../components/ListTable'; + +export interface Action extends ButtonProps { + name: string; +} + +export interface PanelProps { + item: any; + mutate: (item: any) => void; +} + +export interface ServiceParams { + route: string; + name: string; + tableFields: Field[]; + nameSingular?: string; + default?: Record; + routes?: Record; + actions?: Action[]; + rowLink?: (item: any) => string; + Form?: React.FC>; + Panel?: React.FC; +} + +const ServiceContext = React.createContext({ + route: '', + name: '', + nameSingular: '', + tableFields: [], + default: {}, +}); + +export const ServiceProvider = ServiceContext.Provider; +export default ServiceContext; diff --git a/src/lib/ServiceItem.tsx b/src/lib/ServiceItem.tsx new file mode 100644 index 0000000..6a0a99b --- /dev/null +++ b/src/lib/ServiceItem.tsx @@ -0,0 +1,59 @@ +import React, { useContext } from 'react'; +import { useParams, useHistory } from 'react-router-dom'; +import { Formik } from 'formik'; +import _ from 'lodash'; +import Page from '../containers/Page'; +import hooks from '../hooks/useAPIClient'; +import useQuery from '../hooks/useQuery'; +import { post, patch, del } from '../requests'; +import ServiceContext, { Action } from './ServiceContext'; + +interface Params { + id: string; +} + +const ServiceItem: React.FC = () => { + const service = useContext(ServiceContext); + const history = useHistory(); + const query = useQuery(); + const { id } = useParams(); + const { data: item, mutate } = hooks[service.route].useItem(id); + + const handleDelete = () => del(`/${service.route}/${id}`) + .then(() => history.push(`/${service.route}`)); + + const onSubmit = (values: any) => { + const promise = id + ? patch(`/${service.route}/${id}`, values) + : post(`/${service.route}`, values); + return promise.then(response => { + mutate(response.data); + history.push(`/${service.route}`); + }); + }; + + const actions: Action[] = _.compact([ + { name: 'Назад', variant: 'outlined', onClick: history.goBack }, + id && { name: 'Удалить', variant: 'outlined', onClick: handleDelete }, + { name: 'Сохранить', type: 'submit', form: 'form' }, + ]); + + return ( + + {(!id || item) && ( + + )} + {item && service.Panel && } + + ); +}; + +export default ServiceItem; diff --git a/src/lib/ServiceList.tsx b/src/lib/ServiceList.tsx new file mode 100644 index 0000000..74ad10b --- /dev/null +++ b/src/lib/ServiceList.tsx @@ -0,0 +1,35 @@ +import React, { useContext } from 'react'; +import { useHistory, useLocation } from 'react-router-dom'; +import Page from '../containers/Page'; +import ListTable from '../components/ListTable'; +import hooks from '../hooks/useAPIClient'; +import ServiceContext from './ServiceContext'; + +const ServiceList: React.FC = () => { + const service = useContext(ServiceContext); + const history = useHistory(); + const location = useLocation(); + const { data } = hooks[service.route].useList(location.search); + + const actions = service.actions || [{ + name: 'Добавить', + route: `/${service.route}/add${location.search}`, + }]; + + const handleRowClick = (index: number) => { + const item = data && data[index]; + const route = service.rowLink + ? service.rowLink(item) + : `/${service.route}/${item?._id}`; + + history.push(route); + }; + + return ( + + + + ); +}; + +export default ServiceList; -- cgit v1.2.3