nocobase/examples/app/custom-plugin.ts
chenos f9f8dc78f4
refactor: plugin manager (#775)
* feat: dynamic import plugin client

* refactor: pm

* chore: improve cli

* feat: improve code

* feat: update dependences

* feat: hello plugin

* fix: plugin.enabled

* fix: test error

* feat: improve code

* feat: pm command

* feat: add samples

* fix: redirect

* feat: transitions

* feat: bookmark

* feat: add pm script
2022-09-18 14:10:01 +08:00

59 lines
1.1 KiB
TypeScript

/*
# 编写一个最简单的插件
# 步骤
Step 1: Start app
yarn run:example app/custom-plugin start
Step 2: View test list
http://localhost:13000/api/test:list
*/
import { Application, Plugin } from '@nocobase/server';
import { uid } from '@nocobase/utils';
const app = new Application({
database: {
logging: process.env.DB_LOGGING === 'on' ? console.log : false,
dialect: process.env.DB_DIALECT as any,
storage: process.env.DB_STORAGE,
username: process.env.DB_USER,
password: process.env.DB_PASSWORD,
database: process.env.DB_DATABASE,
host: process.env.DB_HOST,
port: process.env.DB_PORT as any,
timezone: process.env.DB_TIMEZONE,
tablePrefix: `t_${uid()}_`,
},
resourcer: {
prefix: '/api',
},
plugins: [],
});
// Encapsulate modules into a plugin
class MyPlugin extends Plugin {
getName() {
return 'MyPlugin';
}
async load() {
this.app.resource({
name: 'test',
actions: {
async list(ctx) {
ctx.body = 'test list';
},
},
});
}
}
// Register plugin
app.plugin(MyPlugin);
if (require.main === module) {
app.runAsCLI();
}
export default app;