tachybase_todo/packages/plugins/@nocobase/plugin-mobile-client/src/server/plugin.ts
chenos f82b4d8726
feat(ui-schema): nocobase-admin-menu & nocobase-mobile-container (#3213)
* feat(ui-schema): nocobase-admin-menu & nocobase-mobile-container

* fix: db.sync

* fix: error

* fix: error

* fix: error

* fix: add test case

* fix: migration error

* fix: test error
2023-12-17 11:16:30 +08:00

54 lines
1.2 KiB
TypeScript

import { Plugin } from '@nocobase/server';
import { resolve } from 'path';
export class MobileClientPlugin extends Plugin {
afterAdd() {}
async load() {
this.db.addMigrations({
namespace: 'client',
directory: resolve(__dirname, './migrations'),
context: {
plugin: this,
},
});
}
async install() {
const uiSchemas = this.db.getRepository<any>('uiSchemas');
await uiSchemas.insert({
type: 'void',
'x-uid': 'nocobase-mobile-container',
'x-component': 'MContainer',
'x-designer': 'MContainer.Designer',
'x-component-props': {},
properties: {
page: {
type: 'void',
'x-component': 'MPage',
'x-designer': 'MPage.Designer',
'x-component-props': {},
properties: {
grid: {
type: 'void',
'x-component': 'Grid',
'x-initializer': 'MBlockInitializers',
'x-component-props': {
showDivider: false,
},
},
},
},
},
});
}
async afterEnable() {}
async afterDisable() {}
async remove() {}
}
export default MobileClientPlugin;