nocobase/packages/plugin-client/src/plugin.ts

47 lines
940 B
TypeScript
Raw Normal View History

2022-02-11 10:13:14 +00:00
import { Plugin } from '@nocobase/server';
export class ClientPlugin extends Plugin {
async beforeLoad() {
const cmd = this.app.findCommand('install');
if (cmd) {
cmd.option('--import-demo');
cmd.option('--lang [lang]');
}
this.app.on('afterInstall', async (app, options) => {
const [opts] = options?.cliArgs || [{}];
if (opts?.importDemo) {
}
if (opts?.lang) {
}
});
}
async load() {
2022-02-11 11:31:53 +00:00
// @ts-ignore
this.app.acl.use(async (ctx, next) => {
const { resourceName } = ctx.action;
if (resourceName === 'app') {
ctx.permission = {
skip: true,
};
}
await next();
});
2022-02-11 10:13:14 +00:00
this.app.resource({
name: 'app',
actions: {
async getLang(ctx, next) {
ctx.body = {
lang: 'zh-CN',
};
await next();
},
},
});
}
}
export default ClientPlugin;