mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 22:27:26 +00:00
35b06cbfa0
* feat: add settingsCenter * fix: style bug * chore: optimized code * refactor: settingCenter Auth * feat: add aclSnippet option * refactor: all plugin's setting center api * feat: add plugin with name * docs: add settings-center doc * fix: settings center menu sort by name * fix: change setting center layout * fix: change hello sort * test: add SettingsCenter.ts test case * fix: bug * fix: acl bug * fix: bug * fix: bug and 404 page * fix: test bug * fix: test bug * fix: bug * fix: locale * fix: styling * fix: rename settingsCenter to pluginSettingsManager * fix: styling * fix: e2e bug * fix: e2e bug * fix: locale * feat: update docs * fix: update --------- Co-authored-by: chenos <chenlinxh@gmail.com>
76 lines
2.0 KiB
Markdown
76 lines
2.0 KiB
Markdown
# Plugin Settings Manager
|
|
|
|
<img src="./plugin-settings/settings-tab.jpg" style="max-width: 100%;"/>
|
|
|
|
## Example
|
|
|
|
### Basic Usage
|
|
|
|
```tsx | pure
|
|
import { Plugin } from '@nocobase/client';
|
|
import React from 'react';
|
|
|
|
const HelloSettingPage = () => <div>Hello Setting page</div>;
|
|
|
|
export class HelloPlugin extends Plugin {
|
|
async load() {
|
|
this.app.pluginSettingsManager.add('hello', {
|
|
title: 'Hello', // menu title and page title
|
|
icon: 'ApiOutlined', // menu icon
|
|
Component: HelloSettingPage,
|
|
})
|
|
}
|
|
}
|
|
```
|
|
|
|
### Multiple Level Routes
|
|
|
|
```tsx | pure
|
|
import { Outlet } from 'react-router-dom'
|
|
const SettingPageLayout = () => <div> <div>This</div> public part, the following is the outlet of the sub-route: <div><Outlet /></div></div>;
|
|
|
|
class HelloPlugin extends Plugin {
|
|
async load() {
|
|
this.app.pluginSettingsManager.add('hello', {
|
|
title: 'HelloWorld',
|
|
icon: '',
|
|
Component: SettingPageLayout
|
|
})
|
|
|
|
this.app.pluginSettingsManager.add('hello.demo1', {
|
|
title: 'Demo1 Page',
|
|
Component: () => <div>Demo1 Page Content</div>
|
|
})
|
|
|
|
this.app.pluginSettingsManager.add('hello.demo2', {
|
|
title: 'Demo2 Page',
|
|
Component: () => <div>Demo2 Page Content</div>
|
|
})
|
|
}
|
|
}
|
|
```
|
|
|
|
### Get Route Path
|
|
|
|
If you want to get the jump link of the setting page, you can get it through the `getRoutePath` method.
|
|
|
|
```tsx | pure
|
|
import { useApp } from '@nocobase/client'
|
|
|
|
const app = useApp();
|
|
app.pluginSettingsManager.getRoutePath('hello'); // /admin/settings/hello
|
|
app.pluginSettingsManager.getRoutePath('hello.demo1'); // /admin/settings/hello/demo1
|
|
```
|
|
|
|
### Get Config
|
|
|
|
If you want to get the added configuration (already filtered by permissions), you can get it through the `get` method.
|
|
|
|
```tsx | pure
|
|
const app = useApp();
|
|
app.pluginSettingsManager.get('hello'); // { title: 'HelloWorld', icon: '', Component: HelloSettingPage, children: [{...}] }
|
|
```
|
|
|
|
|
|
See [samples/hello](https://github.com/nocobase/nocobase/blob/main/packages/plugins/%40nocobase/plugin-sample-hello/src/client/index.tsx) for full examples.
|