mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 04:05:45 +00:00
feat: load the saved collection options
This commit is contained in:
parent
e6f9973531
commit
fb7706094b
@ -15,6 +15,7 @@ import {
|
||||
} from './fields';
|
||||
import Database from './database';
|
||||
import { Model, ModelCtor } from './model';
|
||||
import _ from 'lodash';
|
||||
|
||||
const registeredModels = new Map<string, any>();
|
||||
|
||||
@ -219,6 +220,7 @@ export class Table {
|
||||
updatedAt: Utils.underscoredIf('updatedAt', underscored),
|
||||
indexes: Array.from(this.indexes.values()),
|
||||
// freezeTableName: true,
|
||||
hooks: _.get(this.Model.options, 'hooks') || {},
|
||||
...this.modelOptions,
|
||||
};
|
||||
}
|
||||
|
@ -40,15 +40,19 @@ export class CollectionModel extends BaseModel {
|
||||
return this.findOne({ where: { name } });
|
||||
}
|
||||
|
||||
/**
|
||||
* 迁移
|
||||
*/
|
||||
async migrate() {
|
||||
async loadTableOptions() {
|
||||
const options = await this.getOptions();
|
||||
const prevTable = this.database.getTable(this.get('name'));
|
||||
const prevOptions = prevTable ? prevTable.getOptions() : {};
|
||||
// table 是初始化和重新初始化
|
||||
const table = this.database.table({...prevOptions, ...options});
|
||||
return this.database.table({...prevOptions, ...options});
|
||||
}
|
||||
|
||||
/**
|
||||
* 迁移
|
||||
*/
|
||||
async migrate() {
|
||||
const table = await this.loadTableOptions();
|
||||
return await table.sync({
|
||||
force: false,
|
||||
alter: {
|
||||
@ -75,6 +79,13 @@ export class CollectionModel extends BaseModel {
|
||||
};
|
||||
}
|
||||
|
||||
static async load() {
|
||||
const collections = await this.findAll();
|
||||
for (const collection of collections) {
|
||||
await collection.loadTableOptions();
|
||||
}
|
||||
}
|
||||
|
||||
static async import(data: TableOptions, options: SaveOptions = {}): Promise<CollectionModel> {
|
||||
data = _.cloneDeep(data);
|
||||
const collection = await this.create({
|
||||
|
@ -22,7 +22,11 @@ export default async function (this: Application, options = {}) {
|
||||
Model.addHook(hookKey, hooks[modelName][hookKey]);
|
||||
});
|
||||
});
|
||||
|
||||
// 加载数据库表 collections 中已经保存的表配置
|
||||
// await Collection.findAll();
|
||||
try {
|
||||
// 加载数据库表 collections 中已经保存的表配置
|
||||
// 如果未 sync 可能报错
|
||||
// TODO collections sync
|
||||
await database.getModel('collections').load();
|
||||
} catch (error) {
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user