summaryrefslogtreecommitdiff
path: root/src/containers/Service/ServiceContext.tsx
blob: 68ff9078b55fbe73c8835831e98a70a6c1e2d893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React from 'react';
import { FormikProps } from 'formik';

export interface PanelProps {
  item: any;
  mutate: (item: any) => void;
}

type Route = Record<string, React.FC>;

export interface ServiceParams {
  route: string;
  name: string;
  nameSingular: string;
  tableFields: any[];
  default: Record<string, any>;
  routes?: Route[];
  Form?: React.FC<FormikProps>;
  Panel?: React.FC<PanelProps>;
}

const ServiceContext = React.createContext<ServiceParams>({
  route: '',
  name: '',
  nameSingular: '',
  tableFields: [],
  default: {},
});

export const ServiceProvider = ServiceContext.Provider;
export default ServiceContext;