feat: add custom page sample and doc (#855)
* docs: custom ui route sample * feat: custom page * fix: remove error * feat: update doc * fix: defaultShowCode true
This commit is contained in:
parent
6fbb80f3c8
commit
a7e6e4716a
6
.github/workflows/node-ci.yml
vendored
6
.github/workflows/node-ci.yml
vendored
@ -1,6 +1,12 @@
|
|||||||
name: Nocobase test
|
name: Nocobase test
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- develop
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'docs/**'
|
- 'docs/**'
|
||||||
|
@ -1 +1,63 @@
|
|||||||
# UI Router
|
# UI Router
|
||||||
|
|
||||||
|
NocoBase Client 的 Router 基于 [React Router](https://v5.reactrouter.com/web/guides/quick-start),可以通过 `<RouteSwitch routes={[]} />` 来配置 ui routes,例子如下:
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
/**
|
||||||
|
* defaultShowCode: true
|
||||||
|
*/
|
||||||
|
import React from 'react';
|
||||||
|
import { Link, MemoryRouter as Router } from 'react-router-dom';
|
||||||
|
import { RouteRedirectProps, RouteSwitchProvider, RouteSwitch } from '@nocobase/client';
|
||||||
|
|
||||||
|
const Home = () => <h1>Home</h1>;
|
||||||
|
const About = () => <h1>About</h1>;
|
||||||
|
|
||||||
|
const routes: RouteRedirectProps[] = [
|
||||||
|
{
|
||||||
|
type: 'route',
|
||||||
|
path: '/',
|
||||||
|
exact: true,
|
||||||
|
component: 'Home',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'route',
|
||||||
|
path: '/about',
|
||||||
|
component: 'About',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
return (
|
||||||
|
<RouteSwitchProvider components={{ Home, About }}>
|
||||||
|
<Router initialEntries={['/']}>
|
||||||
|
<Link to={'/'}>Home</Link>, <Link to={'/about'}>About</Link>
|
||||||
|
<RouteSwitch routes={routes} />
|
||||||
|
</Router>
|
||||||
|
</RouteSwitchProvider>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
在完整的 NocoBase 应用里,可以类似以下的的方式扩展 Route:
|
||||||
|
|
||||||
|
```tsx | pure
|
||||||
|
import { RouteSwitchContext } from '@nocobase/client';
|
||||||
|
import React, { useContext } from 'react';
|
||||||
|
|
||||||
|
const HelloWorld = () => {
|
||||||
|
return <div>Hello ui router</div>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default React.memo((props) => {
|
||||||
|
const ctx = useContext(RouteSwitchContext);
|
||||||
|
ctx.routes.push({
|
||||||
|
type: 'route',
|
||||||
|
path: '/hello-world',
|
||||||
|
component: HelloWorld,
|
||||||
|
});
|
||||||
|
return <RouteSwitchContext.Provider value={ctx}>{props.children}</RouteSwitchContext.Provider>;
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
完整示例查看 [packages/samples/custom-page](https://github.com/nocobase/nocobase/tree/develop/packages/samples/custom-page)
|
@ -111,11 +111,18 @@ export class PluginManager {
|
|||||||
ctx.throw(400, 'filterByTk invalid');
|
ctx.throw(400, 'filterByTk invalid');
|
||||||
}
|
}
|
||||||
const name = pm.getPackageName(filterByTk);
|
const name = pm.getPackageName(filterByTk);
|
||||||
|
console.log(name, pm.plugins.keys());
|
||||||
const plugin = pm.get(name);
|
const plugin = pm.get(name);
|
||||||
if (plugin.model) {
|
if (plugin?.model) {
|
||||||
await plugin.model.destroy();
|
await plugin.model.destroy();
|
||||||
|
pm.remove(name);
|
||||||
|
} else {
|
||||||
|
await pm.repository.destroy({
|
||||||
|
filter: {
|
||||||
|
name: filterByTk,
|
||||||
|
},
|
||||||
|
});
|
||||||
}
|
}
|
||||||
pm.remove(name);
|
|
||||||
await app.reload();
|
await app.reload();
|
||||||
await app.start();
|
await app.start();
|
||||||
ctx.body = 'ok';
|
ctx.body = 'ok';
|
||||||
|
28
packages/samples/custom-page/README.md
Normal file
28
packages/samples/custom-page/README.md
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# Custom page
|
||||||
|
|
||||||
|
## Register
|
||||||
|
|
||||||
|
```ts
|
||||||
|
yarn pm add sample-custom-page
|
||||||
|
```
|
||||||
|
|
||||||
|
## Activate
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yarn pm enable sample-custom-page
|
||||||
|
```
|
||||||
|
|
||||||
|
## Launch the app
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# for development
|
||||||
|
yarn dev
|
||||||
|
|
||||||
|
# for production
|
||||||
|
yarn build
|
||||||
|
yarn start
|
||||||
|
```
|
||||||
|
|
||||||
|
## Visit the custom page
|
||||||
|
|
||||||
|
Open http://localhost:13000/hello-world in a web browser.
|
4
packages/samples/custom-page/client.d.ts
vendored
Executable file
4
packages/samples/custom-page/client.d.ts
vendored
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
// @ts-nocheck
|
||||||
|
export * from './lib/client';
|
||||||
|
export { default } from './lib/client';
|
||||||
|
|
30
packages/samples/custom-page/client.js
Executable file
30
packages/samples/custom-page/client.js
Executable file
@ -0,0 +1,30 @@
|
|||||||
|
"use strict";
|
||||||
|
|
||||||
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
||||||
|
|
||||||
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
||||||
|
|
||||||
|
var _index = _interopRequireWildcard(require("./lib/client"));
|
||||||
|
|
||||||
|
Object.defineProperty(exports, "__esModule", {
|
||||||
|
value: true
|
||||||
|
});
|
||||||
|
var _exportNames = {};
|
||||||
|
Object.defineProperty(exports, "default", {
|
||||||
|
enumerable: true,
|
||||||
|
get: function get() {
|
||||||
|
return _index.default;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Object.keys(_index).forEach(function (key) {
|
||||||
|
if (key === "default" || key === "__esModule") return;
|
||||||
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
||||||
|
if (key in exports && exports[key] === _index[key]) return;
|
||||||
|
Object.defineProperty(exports, key, {
|
||||||
|
enumerable: true,
|
||||||
|
get: function get() {
|
||||||
|
return _index[key];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
11
packages/samples/custom-page/package.json
Normal file
11
packages/samples/custom-page/package.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"name": "@nocobase/plugin-sample-custom-page",
|
||||||
|
"version": "0.7.4-alpha.7",
|
||||||
|
"main": "lib/server/index.js",
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {
|
||||||
|
"@nocobase/client": "0.7.4-alpha.7",
|
||||||
|
"@nocobase/server": "0.7.4-alpha.7",
|
||||||
|
"@nocobase/test": "0.7.4-alpha.7"
|
||||||
|
}
|
||||||
|
}
|
4
packages/samples/custom-page/server.d.ts
vendored
Executable file
4
packages/samples/custom-page/server.d.ts
vendored
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
// @ts-nocheck
|
||||||
|
export * from './lib/server';
|
||||||
|
export { default } from './lib/server';
|
||||||
|
|
30
packages/samples/custom-page/server.js
Executable file
30
packages/samples/custom-page/server.js
Executable file
@ -0,0 +1,30 @@
|
|||||||
|
"use strict";
|
||||||
|
|
||||||
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
||||||
|
|
||||||
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
||||||
|
|
||||||
|
var _index = _interopRequireWildcard(require("./lib/server"));
|
||||||
|
|
||||||
|
Object.defineProperty(exports, "__esModule", {
|
||||||
|
value: true
|
||||||
|
});
|
||||||
|
var _exportNames = {};
|
||||||
|
Object.defineProperty(exports, "default", {
|
||||||
|
enumerable: true,
|
||||||
|
get: function get() {
|
||||||
|
return _index.default;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Object.keys(_index).forEach(function (key) {
|
||||||
|
if (key === "default" || key === "__esModule") return;
|
||||||
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
||||||
|
if (key in exports && exports[key] === _index[key]) return;
|
||||||
|
Object.defineProperty(exports, key, {
|
||||||
|
enumerable: true,
|
||||||
|
get: function get() {
|
||||||
|
return _index[key];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
16
packages/samples/custom-page/src/client/index.tsx
Normal file
16
packages/samples/custom-page/src/client/index.tsx
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import { RouteSwitchContext } from '@nocobase/client';
|
||||||
|
import React, { useContext } from 'react';
|
||||||
|
|
||||||
|
const HelloWorld = () => {
|
||||||
|
return <div>Hello ui router</div>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default React.memo((props) => {
|
||||||
|
const ctx = useContext(RouteSwitchContext);
|
||||||
|
ctx.routes.push({
|
||||||
|
type: 'route',
|
||||||
|
path: '/hello-world',
|
||||||
|
component: HelloWorld,
|
||||||
|
});
|
||||||
|
return <RouteSwitchContext.Provider value={ctx}>{props.children}</RouteSwitchContext.Provider>;
|
||||||
|
});
|
1
packages/samples/custom-page/src/index.ts
Normal file
1
packages/samples/custom-page/src/index.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
export { default } from './server';
|
21
packages/samples/custom-page/src/server/index.ts
Normal file
21
packages/samples/custom-page/src/server/index.ts
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
import { InstallOptions, Plugin } from '@nocobase/server';
|
||||||
|
|
||||||
|
export class CustomPagePlugin extends Plugin {
|
||||||
|
getName(): string {
|
||||||
|
return this.getPackageName(__dirname);
|
||||||
|
}
|
||||||
|
|
||||||
|
initialize() {}
|
||||||
|
|
||||||
|
beforeLoad() {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
async load() {}
|
||||||
|
|
||||||
|
async install(options: InstallOptions) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default CustomPagePlugin;
|
Loading…
Reference in New Issue
Block a user