@@ -4,7 +4,7 @@ import Error from '../Error';
4
4
import InnerForm from './InnerForm.js' ;
5
5
import InnerTable from './InnerTable.js' ;
6
6
import InnerPagination from './InnerPagination.js' ;
7
- import TableSchemaUtils from './TableSchemaUtils .js' ;
7
+ import TableUtils from './TableUtils .js' ;
8
8
import './index.less' ;
9
9
import ajax from '../../utils/ajax' ;
10
10
import Utils from '../../utils' ;
@@ -18,16 +18,6 @@ const logger = Logger.getLogger('DBTable');
18
18
*/
19
19
class DBTable extends React . PureComponent {
20
20
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
-
31
21
// 父组件要保存子组件的状态...非常蛋疼...
32
22
// 破坏了子组件的"封闭"原则
33
23
// 但这是官方推荐的做法: https://facebook.github.io/react/docs/lifting-state-up.html
@@ -174,24 +164,17 @@ class DBTable extends React.PureComponent {
174
164
return ;
175
165
}
176
166
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 ) ;
185
168
186
169
// 这里注意, 区分同步/异步
187
- let tmp = TableSchemaUtils . getCacheSchema ( tableName ) ;
170
+ let tmp = TableUtils . getCacheSchema ( tableName ) ;
188
171
if ( ! tmp ) {
189
172
if ( tableConfig . asyncSchema === true ) {
190
173
// 如果是异步的, 必须给用户一个loading提示
191
174
this . state . loadingSchema = true ;
192
- tmp = await TableSchemaUtils . getRemoteSchema ( tableName ) ;
175
+ tmp = await TableUtils . getRemoteSchema ( tableName ) ;
193
176
} else {
194
- tmp = TableSchemaUtils . getLocalSchema ( tableName ) ;
177
+ tmp = TableUtils . getLocalSchema ( tableName ) ;
195
178
}
196
179
}
197
180
0 commit comments