Skip to content

Commit eabac02

Browse files
committedMar 30, 2017
update TableUtils
1 parent 66b1a30 commit eabac02

File tree

3 files changed

+55
-23
lines changed

3 files changed

+55
-23
lines changed
 

‎src/components/DBTable/TableSchemaUtils.js ‎src/components/DBTable/TableUtils.js

+39-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
import React from 'react';
22
import {notification} from 'antd';
3+
import globalConfig from '../../config.js';
34
import ajax from '../../utils/ajax';
45
import Logger from '../../utils/Logger';
56

6-
const logger = Logger.getLogger('TableSchemaUtils');
7+
const logger = Logger.getLogger('TableUtils');
78

89
// 缓存, key是tableName, value是{querySchema, dataSchema}
910
const tableMap = new Map();
11+
// 缓存, key是tableName, value是tableConfig
12+
const configMap = new Map();
1013

1114
/**
1215
* 用于解析表schema的工具类
@@ -129,4 +132,39 @@ export default {
129132
});
130133
},
131134

135+
/**
136+
* 获取某个表的个性化配置, 会合并默认配置
137+
*
138+
* @param tableName
139+
* @returns {*}
140+
*/
141+
getTableConfig(tableName) {
142+
if (configMap.has(tableName)) {
143+
return configMap.get(tableName);
144+
}
145+
146+
let tableConfig;
147+
try {
148+
const tmp = require(`../../schema/${tableName}.config.js`); // 个性化配置加载失败也没关系
149+
tableConfig = Object.assign({}, globalConfig.DBTable.default, tmp); // 注意合并默认配置
150+
} catch (e) {
151+
logger.warn('can not find config for table %s, use default instead', tableName);
152+
tableConfig = Object.assign({}, globalConfig.DBTable.default);
153+
}
154+
155+
configMap.set(tableName, tableConfig);
156+
return tableConfig;
157+
},
158+
159+
/**
160+
* 某个表是否应该忽略缓存
161+
*
162+
* @param tableName
163+
* @returns {boolean}
164+
*/
165+
shouldIgnoreSchemaCache(tableName) {
166+
const tableConfig = this.getTableConfig(tableName);
167+
return tableConfig.asyncSchema === true && tableConfig.ignoreSchemaCache === true;
168+
},
169+
132170
}

‎src/components/DBTable/index.js

+5-22
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Error from '../Error';
44
import InnerForm from './InnerForm.js';
55
import InnerTable from './InnerTable.js';
66
import InnerPagination from './InnerPagination.js';
7-
import TableSchemaUtils from './TableSchemaUtils.js';
7+
import TableUtils from './TableUtils.js';
88
import './index.less';
99
import ajax from '../../utils/ajax';
1010
import Utils from '../../utils';
@@ -18,16 +18,6 @@ const logger = Logger.getLogger('DBTable');
1818
*/
1919
class DBTable extends React.PureComponent {
2020

21-
// 每个表的默认配置
22-
static DEFAULT_CONFIG = {
23-
showExport: true, // 显示导出按钮, 默认true
24-
showImport: true, // 显示导入按钮, 默认true
25-
showInsert: true, // 显示新增按钮, 默认true
26-
showUpdate: true, // 显示修改按钮, 默认true
27-
showDelete: true, // 显示删除按钮, 默认true
28-
asyncSchema: false, // 是否从服务端加载schema, 默认false
29-
};
30-
3121
// 父组件要保存子组件的状态...非常蛋疼...
3222
// 破坏了子组件的"封闭"原则
3323
// 但这是官方推荐的做法: https://facebook.github.io/react/docs/lifting-state-up.html
@@ -174,24 +164,17 @@ class DBTable extends React.PureComponent {
174164
return;
175165
}
176166

177-
let tableConfig;
178-
try {
179-
const tmp = require(`../../schema/${tableName}.config.js`); // 个性化配置加载失败也没关系
180-
tableConfig = Object.assign({}, DBTable.DEFAULT_CONFIG, tmp); // 注意合并默认配置
181-
} catch (e) {
182-
logger.warn('can not find config for table %s, use default instead', tableName);
183-
tableConfig = Object.assign({}, DBTable.DEFAULT_CONFIG);
184-
}
167+
const tableConfig = TableUtils.getTableConfig(tableName);
185168

186169
// 这里注意, 区分同步/异步
187-
let tmp = TableSchemaUtils.getCacheSchema(tableName);
170+
let tmp = TableUtils.getCacheSchema(tableName);
188171
if (!tmp) {
189172
if (tableConfig.asyncSchema === true) {
190173
// 如果是异步的, 必须给用户一个loading提示
191174
this.state.loadingSchema = true;
192-
tmp = await TableSchemaUtils.getRemoteSchema(tableName);
175+
tmp = await TableUtils.getRemoteSchema(tableName);
193176
} else {
194-
tmp = TableSchemaUtils.getLocalSchema(tableName);
177+
tmp = TableUtils.getLocalSchema(tableName);
195178
}
196179
}
197180

‎src/config.js

+11
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,17 @@ module.exports = {
6464

6565
DBTable: { // DBTable组件相关配置
6666
pageSize: 50, // 表格每页显示多少条数据
67+
68+
default: { // 针对每个表格的默认配置
69+
showExport: true, // 显示导出按钮, 默认true
70+
showImport: true, // 显示导入按钮, 默认true
71+
showInsert: true, // 显示新增按钮, 默认true
72+
showUpdate: true, // 显示修改按钮, 默认true
73+
showDelete: true, // 显示删除按钮, 默认true
74+
75+
asyncSchema: false, // 是否从服务端加载schema, 默认false
76+
ignoreSchemaCache: false, // 是否忽略schema的缓存, 对于异步schema而言, 默认只会请求一次后端接口然后缓存起来
77+
},
6778
},
6879

6980
// 以下一些辅助的函数, 不要修改

0 commit comments

Comments
 (0)
Please sign in to comment.