nocobase/packages/plugin-ui-schema-storage/src/server.ts

73 lines
1.9 KiB
TypeScript
Raw Normal View History

import { MagicAttributeModel } from '@nocobase/database';
import { Plugin } from '@nocobase/server';
2022-02-13 03:23:40 +00:00
import { uid } from '@nocobase/utils';
import path from 'path';
import { uiSchemaActions } from './actions/ui-schema-action';
2022-02-11 10:13:14 +00:00
import { UiSchemaModel } from './model';
import UiSchemaRepository from './repository';
2022-02-08 12:58:57 +00:00
import { ServerHooks } from './server-hooks';
2022-02-09 12:24:25 +00:00
import { ServerHookModel } from './server-hooks/model';
2022-02-11 10:13:14 +00:00
export class UiSchemaStoragePlugin extends Plugin {
2022-02-08 12:58:57 +00:00
serverHooks: ServerHooks;
registerRepository() {
this.app.db.registerRepositories({
UiSchemaRepository,
});
}
async beforeLoad() {
const db = this.app.db;
2022-02-08 12:58:57 +00:00
this.serverHooks = new ServerHooks(db);
2022-02-09 12:24:25 +00:00
this.app.db.registerModels({ MagicAttributeModel, UiSchemaModel, ServerHookModel });
this.registerRepository();
2022-02-15 16:22:47 +00:00
db.on('uiSchemas.beforeCreate', function setUid(model) {
2022-02-13 03:23:40 +00:00
if (!model.get('name')) {
model.set('name', uid());
}
});
2022-02-15 16:22:47 +00:00
db.on('uiSchemas.afterCreate', async function insertSchema(model, options) {
const { transaction } = options;
2022-02-15 16:22:47 +00:00
const uiSchemaRepository = db.getCollection('uiSchemas').repository as UiSchemaRepository;
2022-02-10 14:53:26 +00:00
const context = options.context;
if (context?.disableInsertHook) {
return;
}
await uiSchemaRepository.insert(model.toJSON(), {
transaction,
});
});
2022-02-15 16:22:47 +00:00
db.on('uiSchemas.afterUpdate', async function patchSchema(model, options) {
const { transaction } = options;
2022-02-15 16:22:47 +00:00
const uiSchemaRepository = db.getCollection('uiSchemas').repository as UiSchemaRepository;
await uiSchemaRepository.patch(model.toJSON(), {
transaction,
});
});
this.app.resourcer.define({
2022-02-15 16:22:47 +00:00
name: 'uiSchemas',
actions: uiSchemaActions,
});
}
async load() {
await this.db.import({
directory: path.resolve(__dirname, 'collections'),
});
}
}
2022-02-11 10:13:14 +00:00
export default UiSchemaStoragePlugin;