-
Notifications
You must be signed in to change notification settings - Fork 512
Plugin system
- Folder structure
- Commands
- Build plugin
- Build product
- Development
- Static assets
- Localization
- How to add custom plugin
Plugin structure can be found on Frontend development guidelines
Execute from cloudbeaver/webapp
yarn run bootstrap
Load all dependencies and init workspaces
yarn run build
Build all packages (plugins and the application) and the result will be placed in the packages/{package-name}/lib folder
yarn run lint
Lint all code
yarn run lint-fix
Lint all code and fix
To build a single plugin execute
yarn lerna run build --stream --scope=@cloudbeaver/plugin-name
Product folder structure can be found on Frontend development guidelines
The only difference in the build command is:
"build": "core-cli-build --mode=production --config ../core-cli/configs/webpack.product.config.js",
it uses product config, also contains dev command for starting development local build
"dev": "core-cli-build serve --mode=development --progress --config=../core-cli/configs/webpack.product.dev.config.js",
The application package simple defines the list of plugins that should be included in the build
Execute the command to build only the application without rebuilding the plugins
yarn lerna run build --stream --scope=@cloudbeaver/product-name
-
To run a development build that watches file changes and rebuilds, you can use the
devcommand:
yarn lerna run dev --stream --scope=@cloudbeaver/product-default -- -- --env server=http://backend.server:8095
It starts the dev server forproduct-default. It also proxies backend requests tohttp://backend.server:8095 -
Navigate
localhost:8080to open the application
You can keep static assets like images, favicon, etc in the public folder in the plugin packages or app package.
Assets such as these will be copied to the application distributive. Assets with the same name will overwrite one another, but the Application public assets have higher priority over them all.
See the example in the core-administration AdministrationLocaleService.ts and locales folder
Follow these steps to create a custom plugin that adds a button to the top bar and logs "Hello, World!" to the console:
- Inside
/webapp/packages, create a folder with your desired name, e.g.,plugin-hello-world.
- Copy the following files from any existing package into your plugin folder:
.gitignorepackage.jsontsconfig.json
- Open
package.jsonand update thenamefield to your plugin's name,@cloudbeaver/plugin-hello-world. - Remove the
dependenciesanddevDependenciessections.
- Remove the
referencessection fromtsconfig.json.
- Inside your plugin folder, create a
srcfolder. - Add two files in
src:index.tsmanifest.ts
- Export the manifest from
index.ts:export * from './manifest.js';
- Create a service to add the button.
- It should:
- Be an injectable class.
- Extend the
Bootstrapclass.
- Add a
registermethod and implement the button-adding logic.
Example:
import { Bootstrap, injectable } from '@cloudbeaver/core-di';
import { ActionService, MenuService } from '@cloudbeaver/core-view';
import { MENU_APP_ACTIONS } from '@cloudbeaver/plugin-top-app-bar';
import { ACTION_HELLO_WORLD } from './ACTION_HELLO_WORLD.js';
@injectable()
export class HelloWorldService extends Bootstrap {
constructor(
private readonly actionService: ActionService,
private readonly menuService: MenuService,
) {
super();
}
override register(): void {
this.menuService.addCreator({
menus: [MENU_APP_ACTIONS],
getItems: (context, items) => [...items, ACTION_HELLO_WORLD],
});
this.actionService.addHandler({
id: 'hello-world-handler',
actions: [ACTION_HELLO_WORLD],
handler: (context, action) => {
switch (action) {
case ACTION_HELLO_WORLD: {
console.log('Hello World!');
break;
}
}
},
});
}
}import { createAction } from '@cloudbeaver/core-view';
export const ACTION_HELLO_WORLD = createAction('hello-world', {
label: 'Hello world!',
});Register your service in manifest.ts like this:
import type { PluginManifest } from '@cloudbeaver/core-di';
export const helloWorldPlugin: PluginManifest = {
info: {
name: 'Hello World Plugin',
},
providers: [() => import('./HelloWorldService.js').then(m => m.HelloWorldService)],
};Open /webapp/packages/product-default/index.ts and include your new plugin:
import { helloWorldPlugin } from '@cloudbeaver/plugin-hello-world';
const PLUGINS: PluginManifest[] = [
...existingPlugins,
helloWorldPlugin,
];In /webapp, run:
yarn run update-ts-references
yarn
yarn run update-ts-referencesNow, your button should appear in the top bar and log "Hello, World!" when clicked.
- Getting started
- Create connection
- Connection network options
- Supported databases
-
Drivers management
- Database authentication methods
- Database navigator
- Properties editor
- Data editor
- SQL editor
-
Entity relation diagrams
- Cloud services
-
AI Smart assistance
- Data transfer
- General user guide
- Administration
- Server configuration
-
Server security and access configuration
- Authentication methods
- Access management
- Proxy configuration
-
Secret management
- Logs
-
Query manager
- Workspace location
- Command line parameters
-
Session manager
- Deployment options
- CloudBeaver Editions
- FAQ
- Development