mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 07:25:15 +00:00
feat: removeSchema Hook with params
This commit is contained in:
parent
34f33844d5
commit
0667efefb4
@ -0,0 +1,18 @@
|
||||
import { hookFactory } from './factory';
|
||||
import { UiSchemaRepository } from '@nocobase/plugin-ui-schema-storage';
|
||||
|
||||
export async function removeSchema({ schemaInstance, options, db, params }) {
|
||||
const { transaction } = options;
|
||||
const uiSchemaRepository: UiSchemaRepository = db.getRepository('ui_schemas');
|
||||
const uid = schemaInstance.get('uid') as string;
|
||||
|
||||
if (params?.removeEmptyParents) {
|
||||
await uiSchemaRepository.removeEmptyParents({
|
||||
uid,
|
||||
breakComponent: params['breakComponent'],
|
||||
transaction,
|
||||
});
|
||||
} else {
|
||||
await uiSchemaRepository.remove(uid);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user