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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import {
    ListGuesser,
    EditGuesser,
    ShowGuesser,
} from "react-admin";
 
import host from "./system/host";
import config from './system/config';
import tenant from './system/tenant';
import role from './system/role';
import userLogin from './system/userLogin';
import dept from "./system/dept";
import menu from './system/menu'
import user from './system/user';
import operationRecord from './system/operationRecord';
import customer from './customer';
import shipper from './shipper';
import matnr from './matnr';
import matnrGroup from './matnrGroup';
import warehouse from './warehouse';
import warehouseAreas from './warehouseAreas';
import loc from './loc';
import container from './container';
import contract from './contract';
import stockItem from './stockItem';
import stock from './stock';
import qlyInspect from './qlyInspect';
 
 
const ResourceContent = (node) => {
    switch (node.component) {
        case 'host':
            return host;
        case 'config':
            return config;
        case 'tenant':
            return tenant;
        case 'role':
            return role;
        case 'userLogin':
            return userLogin;
        case 'dept':
            return dept;
        case 'menu':
            return menu;
        case 'user':
            return user;
        case 'operationRecord':
            return operationRecord;
        case 'customer':
            return customer;
        case 'shipper':
            return shipper;
        case 'matnr':
            return matnr;
        case 'matnrGroup':
            return matnrGroup;
        case 'warehouse':
            return warehouse;
        case 'warehouseAreas':
            return warehouseAreas;
        case 'loc':
            return loc;
        case 'container':
            return container;
        case 'contract':
            return contract;
        case 'stockItem':
            return stockItem;
        case 'stock':
            return stock;
        case 'qlyInspect':
            return qlyInspect;
        default:
            return {
                list: ListGuesser,
                edit: EditGuesser,
                show: ShowGuesser,
            }
    }
}
 
export default ResourceContent;