diff --git a/.github/workflows/node-ci.yml b/.github/workflows/node-ci.yml index 7c564cce6..793009536 100644 --- a/.github/workflows/node-ci.yml +++ b/.github/workflows/node-ci.yml @@ -1,6 +1,9 @@ name: Nocobase test -on: [push, pull_request] +on: + pull_request: + paths-ignore: + - 'docs/**' jobs: test: diff --git a/.gitignore b/.gitignore index 315ab3b4d..2be23bcba 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ lerna-debug.log *.sqlite coverage .umi +.umi-production /uploads .env.test docs-dist/ diff --git a/.umirc.ts b/.umirc.ts index d1fae6822..2f49ac228 100644 --- a/.umirc.ts +++ b/.umirc.ts @@ -42,8 +42,8 @@ const getTitle = (item, lang) => { return item.title; }; -const parseMenuItems = (items, lang = null) => { - const menuItems = []; +const parseMenuItems = (items: any[], lang: string) => { + const menuItems: any[] = []; for (const item of items) { if (typeof item === 'string') { const result = markdown(item, lang); @@ -86,18 +86,63 @@ export default defineConfig({ locales: [[lang, lang]], hash: true, logo: 'https://www.nocobase.com/images/logo.png', - navs: [ - { - title: 'Docs', - path: '/', - hidden: true, - }, - { - title: 'GitHub', - path: 'https://github.com/nocobase/nocobase', - }, - ], - menus: { - '/': parseMenuItems(menus, lang), + navs: { + 'en-US': [ + { + title: 'Introduction', + path: '/introduction' + }, + { + title: 'Getting started', + path: '/getting-started' + }, + { + title: 'Manual', + path: '/manual' + }, + { + title: 'Development', + path: '/development' + }, + { + title: 'API reference', + path: '/api' + }, + { + title: 'GitHub', + path: 'https://github.com/nocobase/nocobase', + }, + ], + 'zh-CN': [ + { + title: '介绍', + path: '/introduction' + }, + { + title: '快速开始', + path: '/getting-started' + }, + { + title: '使用手册', + path: '/manual' + }, + { + title: '开发教程', + path: '/development' + }, + { + title: 'API 参考', + path: '/api' + }, + { + title: 'GitHub', + path: 'https://github.com/nocobase/nocobase', + }, + ] }, + menus: Object.keys(menus).reduce((result, key) => { + const items = menus[key]; + result[key] = parseMenuItems(items, lang); + return result; + }, {}) }); diff --git a/docs/menus.ts b/docs/menus.ts index acf6ee310..9db587035 100644 --- a/docs/menus.ts +++ b/docs/menus.ts @@ -1,140 +1,240 @@ -export default [ - { - title: 'Welcome', - 'title.zh-CN': '欢迎', - type: 'group', - children: [ - '/index', - '/why', - '/who', - '/release-notes', - ], - }, - { - title: 'Getting started', - 'title.zh-CN': '快速开始', - type: 'group', - children: [ - { - title: 'Installation', - 'title.zh-CN': '安装', - type: 'subMenu', - children: [ - '/getting-started/installation/overview', - '/getting-started/installation/docker-compose', - '/getting-started/installation/create-nocobase-app', - '/getting-started/installation/git-clone', - ], - }, - '/getting-started/upgrading', - ], - }, - { - title: 'User manual', - 'title.zh-CN': '用户手册', - type: 'group', - children: [ - '/user-manual/introduction/5-minutes-to-get-started', - { - title: 'Advanced guide', - 'title.zh-CN': '深入 NocoBase', - type: 'subMenu', - children: [ - '/user-manual/advanced-guide/functional-zoning', - '/user-manual/advanced-guide/collections', - '/user-manual/advanced-guide/menus', - '/user-manual/advanced-guide/blocks', - '/user-manual/advanced-guide/actions', - '/user-manual/advanced-guide/roles-permissions', - '/user-manual/advanced-guide/tabs', - '/user-manual/advanced-guide/file-storages', - '/user-manual/advanced-guide/system-settings', - '/user-manual/advanced-guide/plugins', - ], - }, - ], - }, - { - title: 'Development', - 'title.zh-CN': '开发指南', - type: 'group', - children: [ - '/development/directory-structure', - '/development/env', - '/development/nocobase-cli', - { - title: 'HTTP API', - 'title.zh-CN': 'HTTP API', - type: 'subMenu', - children: [ - '/development/http-api/index', - '/development/http-api/rest-api', - '/development/http-api/action-api', - '/development/http-api/javascript-sdk', - '/development/http-api/filter-operators', - ], - }, - '/development/javascript-sdk', - { - title: 'Plugin development', - 'title.zh-CN': '插件开发', - type: 'subMenu', - children: [ - '/development/plugin-development/index', - { - title: 'Server', - 'title.zh-CN': 'Server', - type: 'subMenu', - children: [ - '/development/plugin-development/server/overview', - '/development/plugin-development/server/database', - '/development/plugin-development/server/resourcer', - '/development/plugin-development/server/middleware', - '/development/plugin-development/server/acl', - '/development/plugin-development/server/events', - '/development/plugin-development/server/i18n', - '/development/plugin-development/server/cli', - '/development/plugin-development/server/app-manager', - '/development/plugin-development/server/plugin-manager', - ], - }, - { - title: 'Client', - 'title.zh-CN': 'Client', - type: 'subMenu', - children: [ - '/development/plugin-development/client/overview', - { - title: 'Providers', - 'title.zh-CN': 'Providers', - type: 'subMenu', - children: [ - '/development/plugin-development/client/providers/acl', - '/development/plugin-development/client/providers/antd', - '/development/plugin-development/client/providers/api-client', - '/development/plugin-development/client/providers/collection-manager', - '/development/plugin-development/client/providers/i18n', - '/development/plugin-development/client/providers/route-switch', - '/development/plugin-development/client/providers/schema-component', - '/development/plugin-development/client/providers/schema-initializer', - ], - }, - ], - }, - ], - }, - ], - }, - { - title: 'Community', - 'title.zh-CN': '社区', - type: 'group', - children: [ - '/contributing', - '/translations', - '/roadmap', - '/faq', - '/thanks', - ], - } -]; +export default { + '/introduction': [ + '/introduction/index', + '/introduction/features', + '/introduction/when', + '/introduction/quickstart', + '/introduction/roadmap', + '/introduction/thanks', + ], + '/getting-started': [ + { + title: 'Installation', + 'title.zh-CN': '安装', + type: 'subMenu', + children: [ + '/getting-started/installation/index', + '/getting-started/installation/docker-compose', + '/getting-started/installation/create-nocobase-app', + '/getting-started/installation/git-clone', + ], + }, + '/getting-started/upgrading', + '/getting-started/deployment', + ], + '/manual': [ + '/manual/functional-zoning', + '/manual/collections', + '/manual/menus', + '/manual/blocks', + '/manual/actions', + '/manual/roles-permissions', + '/manual/tabs', + '/manual/file-storages', + '/manual/system-settings', + '/manual/plugins', + ], + '/development': [ + { + title: 'Getting started', + 'title.zh-CN': '快速开始', + type: 'group', + children: [ + '/development/index', + '/development/your-fisrt-plugin' + ], + }, + { + title: 'Extension Guides', + 'title.zh-CN': '扩展指南', + type: 'group', + children: [ + '/development/guide/index', + '/development/guide/collections-fields', + '/development/guide/commands', + '/development/guide/hooks', + '/development/guide/i18n', + '/development/guide/middleware', + '/development/guide/migration', + '/development/guide/resources-actions', + { + title: 'UI Schema Designer', + type: 'subMenu', + children: [ + // '/development/guide/ui-schema-designer/index', + '/development/guide/ui-schema-designer/what-is-ui-schema', + '/development/guide/ui-schema-designer/extending-schema-components', + // '/development/guide/ui-schema-designer/insert-adjacent', + '/development/guide/ui-schema-designer/designable', + '/development/guide/ui-schema-designer/component-library', + '/development/guide/ui-schema-designer/collection-manager', + '/development/guide/ui-schema-designer/acl', + ], + }, + '/development/guide/ui-router', + ], + }, + { + title: 'Test & Build', + 'title.zh-CN': '测试与构建', + type: 'group', + children: ['/development/pre-release/test', '/development/pre-release/build'], + }, + { + title: 'HTTP API', + type: 'group', + children: [ + '/api/http-api/index', + '/api/http-api/rest-api', + ], + }, + ], + // { + // title: 'Development', + // 'title.zh-CN': '开发指南', + // type: 'group', + // children: [ + // '/development/directory-structure', + // '/development/env', + // '/development/nocobase-cli', + // { + // title: 'HTTP API', + // 'title.zh-CN': 'HTTP API', + // type: 'subMenu', + // children: [ + // '/development/http-api/index', + // '/development/http-api/rest-api', + // '/development/http-api/action-api', + // '/development/http-api/javascript-sdk', + // '/development/http-api/filter-operators', + // ], + // }, + // '/development/javascript-sdk', + // { + // title: 'Plugin development', + // 'title.zh-CN': '插件开发', + // type: 'subMenu', + // children: [ + // '/development/plugin-development/index', + // { + // title: 'Server', + // 'title.zh-CN': 'Server', + // type: 'subMenu', + // children: [ + // '/development/plugin-development/server/overview', + // '/development/plugin-development/server/database', + // '/development/plugin-development/server/resourcer', + // '/development/plugin-development/server/middleware', + // '/development/plugin-development/server/acl', + // '/development/plugin-development/server/events', + // '/development/plugin-development/server/i18n', + // '/development/plugin-development/server/cli', + // '/development/plugin-development/server/app-manager', + // '/development/plugin-development/server/plugin-manager', + // ], + // }, + // { + // title: 'Client', + // 'title.zh-CN': 'Client', + // type: 'subMenu', + // children: [ + // '/development/plugin-development/client/overview', + // { + // title: 'Providers', + // 'title.zh-CN': 'Providers', + // type: 'subMenu', + // children: [ + // '/development/plugin-development/client/providers/acl', + // '/development/plugin-development/client/providers/antd', + // '/development/plugin-development/client/providers/api-client', + // '/development/plugin-development/client/providers/collection-manager', + // '/development/plugin-development/client/providers/i18n', + // '/development/plugin-development/client/providers/route-switch', + // '/development/plugin-development/client/providers/schema-component', + // '/development/plugin-development/client/providers/schema-initializer', + // ], + // }, + // ], + // }, + // ], + // }, + // ], + // }, + '/api': [ + '/api/index', + '/api/env', + { + title: '@nocobase/server', + type: 'subMenu', + children: ['/api/server/application', '/api/server/plugin-manager', '/api/server/i18n'], + }, + { + title: '@nocobase/database', + type: 'subMenu', + children: [ + '/api/database/index', + '/api/database/collection', + '/api/database/field', + '/api/database/repository', + '/api/database/relation-repository', + '/api/database/operators', + ], + }, + { + title: '@nocobase/resourcer', + type: 'subMenu', + children: [ + '/api/resourcer/index', + '/api/resourcer/resource', + '/api/resourcer/action', + '/api/resourcer/middleware', + ], + }, + { + title: '@nocobase/acl', + path: '/api/acl', + }, + { + title: '@nocobase/client', + type: 'subMenu', + children: [ + '/api/client/index', + '/api/client/application', + '/api/client/route-switch', + { + title: 'SchemaDesigner', + 'title.zh-CN': 'SchemaDesigner', + type: 'subMenu', + children: [ + '/api/client/schema-designer/schema-component', + '/api/client/schema-designer/schema-initializer', + '/api/client/schema-designer/schema-settings', + ], + }, + { + title: 'Extensions', + 'title.zh-CN': 'Extensions', + type: 'subMenu', + children: [ + '/api/client/extensions/schema-component', + '/api/client/extensions/collection-manager', + '/api/client/extensions/block-provider', + '/api/client/extensions/acl', + ], + }, + ], + }, + { + title: '@nocobase/cli', + path: '/api/cli', + }, + { + title: '@nocobase/actions', + path: '/api/actions', + }, + { + title: '@nocobase/sdk', + path: '/api/sdk', + }, + ], +}; diff --git a/docs/zh-CN/development/plugin-development/server/acl.md b/docs/zh-CN/api/acl.md similarity index 100% rename from docs/zh-CN/development/plugin-development/server/acl.md rename to docs/zh-CN/api/acl.md diff --git a/docs/zh-CN/api/actions.md b/docs/zh-CN/api/actions.md new file mode 100644 index 000000000..672e7c4b0 --- /dev/null +++ b/docs/zh-CN/api/actions.md @@ -0,0 +1,2 @@ +# Actions API + diff --git a/docs/zh-CN/api/cli.md b/docs/zh-CN/api/cli.md new file mode 100644 index 000000000..d6bf24b97 --- /dev/null +++ b/docs/zh-CN/api/cli.md @@ -0,0 +1 @@ +# @nocobase/cli \ No newline at end of file diff --git a/docs/zh-CN/api/client/application.md b/docs/zh-CN/api/client/application.md new file mode 100644 index 000000000..4fd84f9c5 --- /dev/null +++ b/docs/zh-CN/api/client/application.md @@ -0,0 +1,33 @@ +# Application + +```ts +const app = new Application({ + apiClient: { + baseURL: process.env.API_BASE_URL, + }, + dynamicImport: (name: string) => { + return import(`../plugins/${name}`); + }, +}); +``` + +## 属性 + +## 方法 + + + +## Providers + +- APIClientProvider +- I18nextProvider +- AntdConfigProvider +- RemoteRouteSwitchProvider +- SystemSettingsProvider +- PluginManagerProvider +- SchemaComponentProvider +- SchemaInitializerProvider +- BlockSchemaComponentProvider +- AntdSchemaComponentProvider +- ACLProvider +- RemoteDocumentTitleProvider diff --git a/docs/zh-CN/development/plugin-development/client/providers/acl.md b/docs/zh-CN/api/client/extensions/acl.md similarity index 100% rename from docs/zh-CN/development/plugin-development/client/providers/acl.md rename to docs/zh-CN/api/client/extensions/acl.md diff --git a/docs/zh-CN/api/client/extensions/block-provider.md b/docs/zh-CN/api/client/extensions/block-provider.md new file mode 100644 index 000000000..a277e3d54 --- /dev/null +++ b/docs/zh-CN/api/client/extensions/block-provider.md @@ -0,0 +1 @@ +# BlockProvider \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/client/providers/collection-manager.md b/docs/zh-CN/api/client/extensions/collection-manager.md similarity index 100% rename from docs/zh-CN/development/plugin-development/client/providers/collection-manager.md rename to docs/zh-CN/api/client/extensions/collection-manager.md diff --git a/docs/zh-CN/api/client/extensions/schema-component.md b/docs/zh-CN/api/client/extensions/schema-component.md new file mode 100644 index 000000000..efc9c4667 --- /dev/null +++ b/docs/zh-CN/api/client/extensions/schema-component.md @@ -0,0 +1,22 @@ +# SchemaComponent + +## Core + +- SchemaComponentProvider +- SchemaComponent +- createDesignable +- useDesignable +- useCompile + +## Common + +- DndContext +- SortableItem + +## And Design + +- Action +- BlockItem +- Calendar +- CardItem +- Cascader diff --git a/docs/zh-CN/api/client/index.md b/docs/zh-CN/api/client/index.md new file mode 100644 index 000000000..3a2170da0 --- /dev/null +++ b/docs/zh-CN/api/client/index.md @@ -0,0 +1,3 @@ +# Overview + +test diff --git a/docs/zh-CN/api/client/route-switch.md b/docs/zh-CN/api/client/route-switch.md new file mode 100644 index 000000000..325b432b2 --- /dev/null +++ b/docs/zh-CN/api/client/route-switch.md @@ -0,0 +1,35 @@ +# RouteSwitch + +```tsx | pure +import React from 'react'; +import { Link, MemoryRouter as Router } from 'react-router-dom'; +import { RouteRedirectProps, RouteSwitchProvider, RouteSwitch } from '@nocobase/client'; + +const Home = () =>

Home

; +const About = () =>

About

; + +const routes: RouteRedirectProps[] = [ + { + type: 'route', + path: '/', + exact: true, + component: 'Home', + }, + { + type: 'route', + path: '/about', + component: 'About', + }, +]; + +export default () => { + return ( + + + Home, About + + + + ); +}; +``` \ No newline at end of file diff --git a/docs/zh-CN/api/client/schema-designer/schema-component.md b/docs/zh-CN/api/client/schema-designer/schema-component.md new file mode 100644 index 000000000..efc9c4667 --- /dev/null +++ b/docs/zh-CN/api/client/schema-designer/schema-component.md @@ -0,0 +1,22 @@ +# SchemaComponent + +## Core + +- SchemaComponentProvider +- SchemaComponent +- createDesignable +- useDesignable +- useCompile + +## Common + +- DndContext +- SortableItem + +## And Design + +- Action +- BlockItem +- Calendar +- CardItem +- Cascader diff --git a/docs/zh-CN/api/client/schema-designer/schema-initializer.md b/docs/zh-CN/api/client/schema-designer/schema-initializer.md new file mode 100644 index 000000000..1947d22cf --- /dev/null +++ b/docs/zh-CN/api/client/schema-designer/schema-initializer.md @@ -0,0 +1 @@ +# SchemaInitializer \ No newline at end of file diff --git a/docs/zh-CN/api/client/schema-designer/schema-settings.md b/docs/zh-CN/api/client/schema-designer/schema-settings.md new file mode 100644 index 000000000..a7700ee3c --- /dev/null +++ b/docs/zh-CN/api/client/schema-designer/schema-settings.md @@ -0,0 +1 @@ +# SchemaSettings \ No newline at end of file diff --git a/docs/zh-CN/api/database/collection.md b/docs/zh-CN/api/database/collection.md new file mode 100644 index 000000000..8be6651ea --- /dev/null +++ b/docs/zh-CN/api/database/collection.md @@ -0,0 +1,484 @@ +# Collection + +数据表结构管理类。 + +大部分接口通常不会直接由开发者调用,除非进行较底层的扩展开发。 + +## 构造函数 + +通常不会直接使用,主要通过 `Database` 实例的 `collection` 方法作为代理入口调用。 + +**签名** + +* `constructor(options: CollectionOptions, context: CollectionContext)` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.name` | `string` | - | collection 标识 | +| `options.tableName?` | `string` | - | 数据库表名,如不传则使用 `options.name` 的值 | +| `options.fields?` | `FieldOptions[]` | - | 字段定义,详见 [Field](./field) | +| `options.model?` | `string \| ModelCtor` | - | Sequelize 的 Model 类型,如果使用的是 `string`,则需要调用之前在 db 上注册过该模型名称 | +| `options.repository?` | `string \| RepositoryType` | - | 数据仓库类型,如果使用 `string`,则需要调用之前在 db 上注册过该仓库类型 | +| `options.sortable?` | `string \| boolean \| { name?: string; scopeKey?: string }` | - | 数据可排序字段配置,默认不排序 | +| `options.autoGenId?` | `boolean` | `true` | 是否自动生成唯一主键,默认为 `true` | +| `context.database` | `Database` | - | 所在的上下文环境数据库 | + +**示例** + +创建一张文章表: + +```ts +const posts = new Collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + }, + { + type: 'double', + name: 'price', + } + ] +}, { + // 已存在的数据库实例 + database: db +}); +``` + +## 实例成员 + +### `options` + +数据表配置初始参数。与构造函数的 `options` 参数一致。 + +### `context` + +当前数据表所属的上下文环境,目前主要是数据库实例。 + +### `name` + +数据表名称。 + +### `db` + +所属数据库实例。 + +### `filterTargetKey` + +作为主键的字段名。 + +### `isThrough` + +是否为中间表。 + +### `model` + +匹配 Sequelize 的 Model 类型。 + +### `repository` + +数据仓库实例。 + +## 字段配置方法 + +### `getField()` + +获取数据表已定义对应名称的字段对象。 + +**签名** + +* `getField(name: string): Field` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 字段名称 | + +**示例** + +```ts +const posts = db.collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + } + ] +}); + +const field = posts.getField('title'); +``` + +### `setField()` + +对数据表设置字段。 + +**签名** + +* `setField(name: string, options: FieldOptions): Field` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 字段名称 | +| `options` | `FieldOptions` | - | 字段配置,详见 [Field](./field) | + +**示例** + +```ts +const posts = db.collection({ name: 'posts' }); + +posts.setField('title', { type: 'string' }); +``` + +### `setFields()` + +对数据表批量设置多个字段。 + +**签名** + +* `setFields(fields: FieldOptions[], resetFields = true): Field[]` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `fields` | `FieldOptions[]` | - | 字段配置,详见 [Field](./field) | +| `resetFields` | `boolean` | `true` | 是否重置已存在的字段 | + +**示例** + +```ts +const posts = db.collection({ name: 'posts' }); + +posts.setFields([ + { type: 'string', name: 'title' }, + { type: 'double', name: 'price' } +]); +``` + +### `removeField()` + +移除数据表已定义对应名称的字段对象。 + +**签名** + +* `removeField(name: string): void | Field` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 字段名称 | + +**示例** + +```ts +const posts = db.collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + } + ] +}); + +posts.removeField('title'); +``` + +### `resetFields()` + +重置(清空)数据表的字段。 + +**签名** + +* `resetFields(): void` + +**示例** + +```ts +const posts = db.collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + } + ] +}); + +posts.resetFields(); +``` + +### `hasField()` + +判断数据表是否已定义对应名称的字段对象。 + +**签名** + +* `hasField(name: string): boolean` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 字段名称 | + +**示例** + +```ts +const posts = db.collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + } + ] +}); + +posts.hasField('title'); // true +``` + +### `findField()` + +查找数据表中符合条件的字段对象。 + +**签名** + +* `findField(predicate: (field: Field) => boolean): Field | undefined` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `predicate` | `(field: Field) => boolean` | - | 查找条件 | + +**示例** + +```ts +const posts = db.collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + } + ] +}); + +posts.findField(field => field.name === 'title'); +``` + +### `forEachField()` + +遍历数据表中的字段对象。 + +**签名** + +* `forEachField(callback: (field: Field) => void): void` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `callback` | `(field: Field) => void` | - | 回调函数 | + +**示例** + +```ts +const posts = db.collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + } + ] +}); + +posts.forEachField(field => console.log(field.name)); +``` + +## 索引配置方法 + +### `addIndex()` + +添加数据表索引。 + +**签名** + +* `addIndex(index: string | string[] | { fields: string[], unique?: boolean,[key: string]: any })` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `index` | `string \| string[]` | - | 需要配置索引的字段名 | +| `index` | `{ fields: string[], unique?: boolean, [key: string]: any }` | - | 完整配置 | + +**示例** + +```ts +const posts = db.collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + } + ] +}); + +posts.addIndex({ + fields: ['title'], + unique: true +}); +``` + +### `removeIndex()` + +移除数据表索引。 + +**签名** + +* `removeIndex(fields: string[])` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `fields` | `string[]` | - | 需要移除索引的字段名组合 | + +**示例** + +```ts +const posts = db.collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + } + ], + indexes: [ + { + fields: ['title'], + unique: true + } + ] +}); + +posts.removeIndex(['title']); +``` + +## 表配置方法 + +### `remove()` + +删除数据表。 + +**签名** + +* `remove(): void` + +**示例** + +```ts +const posts = db.collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + } + ] +}); + +posts.remove(); +``` + +## 数据库操作方法 + +### `sync()` + +同步数据表定义到数据库。除了 Sequelize 中默认的 `Model.sync` 的逻辑,还会一并处理关系字段对应的数据表。 + +**签名** + +* `sync(): Promise` + +**示例** + +```ts +const posts = db.collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + } + ] +}); + +await posts.sync(); +``` + +### `existsInDb()` + +判断数据表是否存在于数据库中。 + +**签名** + +* `existsInDb(options?: Transactionable): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options?.transaction` | `Transaction` | - | 事务实例 | + +**示例** + +```ts +const posts = db.collection({ + name: 'posts', + fields: [ + { + type: 'string', + name: 'title', + } + ] +}); + +const existed = await posts.existsInDb(); + +console.log(existed); // false +``` + +### `removeFromDb()` + +**签名** + +* `removeFromDb(): Promise` + +**示例** + +```ts +const books = db.collection({ + name: 'books' +}); + +// 同步书籍表到数据库 +await db.sync(); + +// 删除数据库中的书籍表 +await books.removeFromDb(); +``` diff --git a/docs/zh-CN/api/database/field.md b/docs/zh-CN/api/database/field.md new file mode 100644 index 000000000..340b97cde --- /dev/null +++ b/docs/zh-CN/api/database/field.md @@ -0,0 +1,554 @@ +# Field + +数据表字段管理类(抽象类)。同时是所有字段类型的基类,其他任意字段类型均通过继承该类来实现。 + +## 构造函数 + +通常不会直接由开发者调用,主要通过 `db.collection({ fields: [] })` 方法作为代理入口调用。 + +在扩展字段时主要通过继承 `Field` 抽象类,再注册到 Database 实例中来实现。 + +**签名** + +* `constructor(options: FieldOptions, context: FieldContext)` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options` | `FieldOptions` | - | 字段配置对象 | +| `options.name` | `string` | - | 字段名称 | +| `options.type` | `string` | - | 字段类型,对应在 db 中注册的字段类型名称 | +| `context` | `FieldContext` | - | 字段上下文对象 | +| `context.database` | `Database` | - | 数据库实例 | +| `context.collection` | `Collection` | - | 数据表实例 | + +## 实例成员 + +### `name` + +字段名称。 + +### `type` + +字段类型。 + +### `dataType` + +字段数据库存储类型。 + +### `options` + +字段初始化配置参数。 + +### `context` + +字段上下文对象。 + +## 配置方法 + +### `on()` + +基于数据表事件的快捷定义方式。相当于 `db.on(this.collection.name + '.' + eventName, listener)`。 + +继承时通常无需覆盖此方法。 + +**签名** + +* `on(eventName: string, listener: (...args: any[]) => void)` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `eventName` | `string` | - | 事件名称 | +| `listener` | `(...args: any[]) => void` | - | 事件监听器 | + +### `off()` + +基于数据表事件的快捷移除方式。相当于 `db.off(this.collection.name + '.' + eventName, listener)`。 + +继承时通常无需覆盖此方法。 + +**签名** + +* `off(eventName: string, listener: (...args: any[]) => void)` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `eventName` | `string` | - | 事件名称 | +| `listener` | `(...args: any[]) => void` | - | 事件监听器 | + +### `bind()` + +当字段被添加到数据表时触发的执行内容。通常用于添加数据表事件监听器和其他处理。 + +继承时需要先调用对应的 `super.bind()` 方法。 + +**签名** + +* `bind()` + +### `unbind()` + +当字段从数据表中移除时触发的执行内容。通常用于移除数据表事件监听器和其他处理。 + +继承时需要先调用对应的 `super.unbind()` 方法。 + +**签名** + +* `unbind()` + +### `get()` + +获取字段的配置项的值。 + +**签名** + +* `get(key: string): any` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `key` | `string` | - | 配置项名称 | + +**示例** + +```ts +const field = db.collection('users').getField('name'); + +// 获取字段名称配置项的值,返回 'name' +console.log(field.get('name')); +``` + +### `merge()` + +合并字段的配置项的值。 + +**签名** + +* `merge(options: { [key: string]: any }): void` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options` | `{ [key: string]: any }` | - | 要合并的配置项对象 | + +**示例** + +```ts +const field = db.collection('users').getField('name'); + +field.merge({ + // 添加一个索引配置 + index: true +}); +``` + +### `remove()` + +从数据表中移除字段(仅从内存中移除)。 + +**示例** + +```ts +const books = db.getCollections('books'); + +books.getField('isbn').remove(); + +// really remove from db +await books.sync(); +``` + +## 数据库方法 + +### `removeFromDb()` + +从数据库中移除字段。 + +**签名** + +* `removeFromDb(options?: Transactionable): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.transaction?` | `Transaction` | - | 事务实例 | + +### `existsInDb()` + +判断字段是否存在于数据库中。 + +**签名** + +* `existsInDb(options?: Transactionable): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.transaction?` | `Transaction` | - | 事务实例 | + +## 内置字段类型列表 + +NocoBase 内置了一些常用的字段类型,可以直接在定义数据表的字段是使用对应的 type 名称来指定类型。不同类型的字段参数配置不同,具体可参考下面的列表。 + +所有字段类型的配置项除了以下额外介绍的以外,都会透传至 Sequelize,所以所有 Sequelize 支持的字段配置项都可以在这里使用(如 `allowNull`、`defaultValue` 等)。 + +另外 server 端的字段类型主要解决数据库存储和部分算法的问题,与前端的字段展示类型和使用组件基本无关。前端字段类型可以参考教程对应说明。 + +### `'boolean'` + +逻辑值类型。 + +**示例** + +```js +db.collection({ + name: 'books', + fields: [ + { + type: 'boolean', + name: 'published' + } + ] +}); +``` + +### `'integer'` + +整型(32 位)。 + +**示例** + +```ts +db.collection({ + name: 'books', + fields: [ + { + type: 'integer', + name: 'pages' + } + ] +}); +``` + +### `'bigInt'` + +长整型(64 位)。 + +**示例** + +```ts +db.collection({ + name: 'books', + fields: [ + { + type: 'bigInt', + name: 'words' + } + ] +}); +``` + +### `'double'` + +双精度浮点型(64 位)。 + +**示例** + +```ts +db.collection({ + name: 'books', + fields: [ + { + type: 'double', + name: 'price' + } + ] +}); +``` + +### `'real'` + +实数类型(仅 PG 适用)。 + +### `'decimal'` + +十进制小数类型。 + +### `'string'` + +字符串类型。相当于大部分数据库的 `VARCHAR` 类型。 + +**示例** + +```ts +db.collection({ + name: 'books', + fields: [ + { + type: 'string', + name: 'title' + } + ] +}); +``` + +### `'text'` + +文本类型。相当于大部分数据库的 `TEXT` 类型。 + +**示例** + +```ts +db.collection({ + name: 'books', + fields: [ + { + type: 'text', + name: 'content' + } + ] +}); +``` + +### `'password'` + +密码类型(NocoBase 扩展)。基于 Node.js 原生的 crypto 包的 `scrypt` 方法进行密码加密。 + +**示例** + +```ts +db.collection({ + name: 'users', + fields: [ + { + type: 'password', + name: 'password', + length: 64, // 长度,默认 64 + randomBytesSize: 8 // 随机字节长度,默认 8 + } + ] +}); +``` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `length` | `number` | 64 | 字符长度 | +| `randomBytesSize` | `number` | 8 | 随机字节大小 | + +### `'date'` + +日期类型。 + +### `'time'` + +时间类型。 + +### `'array'` + +数组类型(仅 PG 适用)。 + +### `'json'` + +JSON 类型。 + +### `'jsonb'` + +JSONB 类型(仅 PG 适用,其他会被兼容为 `'json'` 类型)。 + +### `'uuid'` + +UUID 类型。 + +### `'uid'` + +UID 类型(NocoBase 扩展)。短随机字符串标识符类型。 + +### `'formula'` + +公式类型(NocoBase 扩展)。可配置基于 [mathjs](https://www.npmjs.com/package/mathjs) 的数学公式计算,公式中可以引用同一条记录中其他列的数值参与计算。 + +**示例** + +```ts +db.collection({ + name: 'orders', + fields: [ + { + type: 'double', + name: 'price' + }, + { + type: 'integer', + name: 'quantity' + }, + { + type: 'formula', + name: 'total', + expression: 'price * quantity' + } + ] +}); +``` + +### `'radio'` + +单选类型(NocoBase 扩展)。全表最多有一行数据的该字段值为 `true`,其他都为 `false` 或 `null`。 + +**示例** + +整个系统只有一个被标记为 root 的用户,任意另一个用户的 root 值被改为 `true` 之后,其他所有 root 为 `true` 的记录均会被修改为 `false`: + +```ts +db.collection({ + name: 'users', + fields: [ + { + type: 'radio', + name: 'root', + } + ] +}); +``` + +### `'sort'` + +排序类型(NocoBase 扩展)。基于整型数字进行排序,为新记录自动生成新序号,当移动数据时进行序号重排。 + +数据表如果定义了 `sortable` 选项,也会自动生成对应字段。 + +**示例** + +文章基于所属用户可排序: + +```ts +db.collection({ + name: 'posts', + fields: [ + { + type: 'belongsTo', + name: 'user', + }, + { + type: 'sort', + name: 'priority', + scopeKey: 'userId' // 以 userId 相同值分组的数据进行排序 + } + ] +}); +``` + +### `'virtual'` + +虚拟类型。不实际储存数据,仅用于特殊 getter/setter 定义时使用。 + +### `'belongsTo'` + +多对一关联类型。外键储存在自身表,与 hasOne/hasMany 相对。 + +**示例** + +任意文章属于某个作者: + +```ts +db.collection({ + name: 'posts', + fields: [ + { + type: 'belongsTo', + name: 'author', + target: 'users', // 不配置默认为 name 复数名称的表名 + foreignKey: 'authorId', // 不配置默认为 + Id 的格式 + sourceKey: 'id' // 不配置默认为 target 表的 id + } + ] +}); +``` + +### `'hasOne'` + +一对一关联类型。外键储存在关联表,与 belongsTo 相对。 + +**示例** + +任意用户都有一份个人资料: + +```ts +db.collection({ + name: 'users', + fields: [ + { + type: 'hasOne', + name: 'profile', + target: 'profiles', // 可省略 + } + ] +}) +``` + +### `'hasMany'` + +一对多关联类型。外键储存在关联表,与 belongsTo 相对。 + +**示例** + +任意用户可以拥有多篇文章: + +```ts +db.collection({ + name: 'users', + fields: [ + { + type: 'hasMany', + name: 'posts', + foreignKey: 'authorId', + sourceKey: 'id' + } + ] +}); +``` + +### `'belongsToMany'` + +多对多关联类型。使用中间表储存双方外键,如不指定已存在的表为中间表的话,将会自动创建中间表。 + +**示例** + +任意文章可以加任意多个标签,任意标签也可以被任意多篇文章添加: + +```ts +db.collection({ + name: 'posts', + fields: [ + { + type: 'belongsToMany', + name: 'tags', + target: 'tags', // 同名可省略 + through: 'postsTags', // 中间表不配置将自动生成 + foreignKey: 'postId', // 自身表在中间表的外键 + sourceKey: 'id', // 自身表的主键 + otherKey: 'tagId' // 关联表在中间表的外键 + } + ] +}); + +db.collection({ + name: 'tags', + fields: [ + { + type: 'belongsToMany', + name: 'posts', + through: 'postsTags', // 同一组关系指向同一张中间表 + } + ] +}); +``` diff --git a/docs/zh-CN/api/database/index.md b/docs/zh-CN/api/database/index.md new file mode 100644 index 000000000..77af5cd16 --- /dev/null +++ b/docs/zh-CN/api/database/index.md @@ -0,0 +1,753 @@ +# Database + +NocoBase 内置的数据库访问类,通过封装 [Sequelize](https://sequelize.org/) 提供了更加简单的数据库访问接口和统一化的 JSON 数据库表配置方式,同时也提供了扩展字段类型和查询操作符的能力。 + +Database 类继承自 EventEmitter,可以通过 `db.on('event', callback)` 监听数据库事件,以及 `db.off('event', callback)` 移除监听。 + +## 包结构 + +可通过以下方式引入相关实体: + +```ts +import Database, { + Field, + Collection, + Repository, + RelationRepository, + extend +} from '@nocobase/database'; +``` + +## 构造函数 + +**签名** + +* `constructor(options: DatabaseOptions)` + +创建一个数据库实例。 + +**参数** + +`options` 参数与 [Sequelize 的构造参数](https://sequelize.org/api/v6/class/src/sequelize.js~sequelize#instance-constructor-constructor)一致的部分会透传至 Sequelize,同时 NocoBase 也会使用一些额外的参数: + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.host` | `string` | `'localhost'` | 数据库主机 | +| `options.port` | `number` | - | 数据库服务端口,根据使用的数据库有对应默认端口 | +| `options.username` | `string` | - | 数据库用户名 | +| `options.password` | `string` | - | 数据库密码 | +| `options.database` | `string` | - | 数据库名称 | +| `options.dialect` | `string` | `'mysql'` | 数据库类型 | +| `options.storage?` | `string` | `':memory:'` | SQLite 的存储模式 | +| `options.logging?` | `boolean` | `false` | 是否开启日志 | +| `options.define?` | `Object` | `{}` | 默认的表定义参数 | +| `options.tablePrefix?` | `string` | `''` | NocoBase 扩展,表名前缀 | +| `options.migrator?` | `UmzugOptions` | `{}` | NocoBase 扩展,迁移管理器相关参数,参考 [Umzug](https://github.com/sequelize/umzug/blob/main/src/types.ts#L15) 实现 | + +**示例** + +```ts +import Database from '@nocobase/database'; + +const app = new Database({ + dialect: 'mysql', + host: 'localhost', + port: 3306, + username: 'root', + password: '123456', + database: 'test', + tablePrefix: 'my_' +}); +``` + +## 实例成员 + +### `sequelize` + +初始化后的 Sequelize 实例,在需要使用 sequelize 底层方法时可以调用,相关信息可以直接参考 sequelize 的文档。 + +### `options` + +初始化的配置参数,包含了 Sequelize 的配置参数和 NocoBase 的额外配置参数。 + +### `version` + +连接的数据库的版本信息对象,可通过 `await db.version.satisfies()` 检查是否满足特定数据库版本要求。 + +**示例** + +```ts +const r = await this.db.version.satisfies({ + mysql: '>=8.0.17', + sqlite: '3.x', + postgres: '>=10', +}); +``` + +## 迁移相关方法 + +### `addMigration()` + +添加单个迁移文件。 + +**签名** + +* `addMigration(options: MigrationItem)` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.name` | `string` | - | 迁移文件名称 | +| `options.context?` | `string` | - | 迁移文件的 `up` 方法 | +| `options.migration?` | `typeof Migration` | - | 迁移文件的自定义类 | +| `options.up` | `Function` | - | 迁移文件的 `up` 方法 | +| `options.down` | `Function` | - | 迁移文件的 `down` 方法 | + +**示例** + +```ts +db.addMigration({ + name: '20220916120411-test-1', + async up() { + const queryInterface = this.context.db.sequelize.getQueryInterface(); + await queryInterface.query(/* your migration sqls */); + } +}); +``` + +### `addMigrations()` + +添加指定目录下的迁移文件。 + +**签名** + +* `addMigrations(options: AddMigrationsOptions): void` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.directory` | `string` | `''` | 迁移文件所在目录 | +| `options.extensions` | `string[]` | `['js', 'ts']` | 文件扩展名 | +| `options.namespace?` | `string` | `''` | 命名空间 | +| `options.context?` | `Object` | `{ db }` | 迁移文件的上下文 | + +**示例** + +```ts +db.addMigrations({ + directory: path.resolve(__dirname, './migrations'), + namespace: 'test' +}); +``` + +## 工具方法 + +### `inDialect()` + +判断当前数据库类型是否为指定类型。 + +**签名** + +* `inDialect(dialect: string[]): boolean` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `dialect` | `string[]` | - | 数据库类型,可选值为 `mysql`/`postgres`/`sqlite` | + +### `getTablePrefix()` + +获取配置中的表名前缀。 + +**签名** + +* `getTablePrefix(): string` + +## 数据表配置 + +### `collection()` + +定义一个数据表。该调用类似与 Sequelize 的 `define` 方法,只在内存中创建表结构,如需持久化到数据库,需要调用 `sync` 方法。 + +**签名** + +* `collection(options: CollectionOptions): Collection` + +**参数** + +`options` 所有配置参数与 `Collection` 类的构造函数一致,参考 [Collection](/api/server/database/collection#构造函数)。 + +**事件** + +* `'beforeDefineCollection'`:在定义表之前触发。 +* `'afterDefineCollection'`:在定义表之后触发。 + +**示例** + +```ts +db.collection({ + name: 'books', + fields: [ + { + type: 'string', + name: 'title', + }, + { + type: 'float', + name: 'price', + } + ] +}); + +// sync collection as table to db +await db.sync(); +``` + +### `getCollection()` + +获取已定义的数据表。 + +**签名** + +* `getCollection(name: string): Collection` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 表名 | + +**示例** + +```ts +const collection = db.getCollection('books'); +``` + +### `hasCollection()` + +判断是否已定义指定的数据表。 + +**签名** + +* `hasCollection(name: string): boolean` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 表名 | + +**示例** + +```ts +db.collection({ name: 'books' }); + +db.hasCollection('books'); // true + +db.hasCollection('authors'); // false +``` + +### `removeCollection()` + +移除已定义的数据表。仅在内存中移除,如需持久化,需要调用 `sync` 方法。 + +**签名** + +* `removeCollection(name: string): void` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 表名 | + +**事件** + +* `'beforeRemoveCollection'`:在移除表之前触发。 +* `'afterRemoveCollection'`:在移除表之后触发。 + +**示例** + +```ts +db.collection({ name: 'books' }); + +db.removeCollection('books'); +``` + +### `import()` + +导入文件目录下所有文件作为 collection 配置载入内存。 + +**签名** + +* `async import(options: { directory: string; extensions?: ImportFileExtension[] }): Promise>` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.directory` | `string` | - | 要导入的目录路径 | +| `options.extensions` | `string[]` | `['ts', 'js']` | 扫描特定后缀 | + +**示例** + +`./collections/books.ts` 文件定义的 collection 如下: + +```ts +export default { + name: 'books', + fields: [ + { + type: 'string', + name: 'title', + } + ] +}; +``` + +在插件加载时导入相关配置: + +```ts +class Plugin { + async load() { + await this.app.db.import({ + directory: path.resolve(__dirname, './collections'), + }); + } +} +``` + +## 扩展注册与获取 + +### `registerFieldTypes()` + +注册自定义字段类型。 + +**签名** + +* `registerFieldTypes(fieldTypes: MapOf): void` + +**参数** + +`fieldTypes` 是一个键值对,键为字段类型名称,值为字段类型类。 + +**示例** + +```ts +import { Field } from '@nocobase/database'; + +class MyField extends Field { + // ... +} + +db.registerFieldTypes({ + myField: MyField, +}); +``` + +### `registerModels()` + +注册自定义数据模型类。 + +**签名** + +* `registerModels(models: MapOf>): void` + +**参数** + +`models` 是一个键值对,键为数据模型名称,值为数据模型类。 + +**示例** + +```ts +import { Model } from '@nocobase/database'; + +class MyModel extends Model { + // ... +} + +db.registerModels({ + myModel: MyModel, +}); + +db.collection({ + name: 'myCollection', + model: 'myModel' +}); +``` + +### `registerRepositories()` + +注册自定义数据仓库类。 + +**签名** + +* `registerRepositories(repositories: MapOf): void` + +**参数** + +`repositories` 是一个键值对,键为数据仓库名称,值为数据仓库类。 + +**示例** + +```ts +import { Repository } from '@nocobase/database'; + +class MyRepository extends Repository { + // ... +} + +db.registerRepositories({ + myRepository: MyRepository, +}); + +db.collection({ + name: 'myCollection', + repository: 'myRepository' +}); +``` + +### `registerOperators()` + +注册自定义数据查询操作符。 + +**签名** + +* `registerOperators(operators: MapOf)` + +**参数** + +`operators` 是一个键值对,键为操作符名称,值为操作符比较语句生成函数。 + +**示例** + +```ts +db.registerOperators({ + $dateOn(value) { + return { + [Op.and]: [{ [Op.gte]: stringToDate(value) }, { [Op.lt]: getNextDay(value) }], + }; + } +}); + +db.getRepository('books').count({ + filter: { + createdAt: { + // registered operator + $dateOn: '2020-01-01', + } + } +}); +``` + +### `getModel()` + +获取已定义的数据模型类。如果没有在之前注册自定义模型类,将返回 Sequelize 默认的模型类。默认名称与 collection 定义的名称相同。 + +**签名** + +* `getModel(name: string): Model` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 已注册的模型名 | + +**示例** + +```ts +db.registerModels({ + books: class MyModel extends Model {} +}); + +const ModelClass = db.getModel('books'); + +console.log(ModelClass.prototype instanceof MyModel) // true +``` + +注:从 collection 中获取的模型类并不与注册时的模型类严格相等,而是继承自注册时的模型类。由于 Sequelize 的模型类在初始化过程中属性会被修改,所以 NocoBase 自动处理了这个继承关系。除类不相等以外,其他所有定义都可以正常使用。 + +### `getRepository()` + +获取自定义的数据仓库类。如果没有在之前注册自定义数据仓库类,将返回 NocoBase 默认的数据仓库类。默认名称与 collection 定义的名称相同。 + +数据仓库类主要用于基于数据模型的增删改查等操作,参考 [数据仓库](/api/server/database/repository)。 + +**签名** + +* `getRepository(name: string): Repository` +* `getRepository(name: string, relationId?: string | number): Repository` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 已注册的数据仓库名 | +| `relationId` | `string` \| `number` | - | 关系数据的外键值 | + +当名称是形如 `'tables.relactions'` 的带关联的名称时,将返回关联的数据仓库类。如果提供了第二个参数,数据仓库在使用时(查询、修改等)会基于关系数据的外键值。 + +**示例** + +假设有两张数据表_文章_与_作者_,并且文章表中有一个外键指向作者表: + +```ts +const AuthorsRepo = db.getRepository('authors'); +const author1 = AuthorsRepo.create({ name: 'author1' }); + +const PostsRepo = db.getRepository('authors.posts', author1.id); +const post1 = AuthorsRepo.create({ title: 'post1' }); +asset(post1.authorId === author1.id); // true +``` + +## 数据库事件 + +### `on()` + +监听数据库事件。 + +Database 除了对 sequelize 原生的事件封装以外,还提供以下可监听事件类型: + +| 事件名称 | 描述 | +| --- | --- | +| `'beforeDefineCollection'` | 定义 collection 之前触发 | +| `'afterDefineCollection'` | 定义 collection 之后触发 | +| `'beforeRemoveCollection'` | 移除 collection 之前触发 | +| `'afterRemoveCollection'` | 移除 collection 之后触发 | +| `` | 所有 sequelize 的全局事件均可通过此方式监听,详见示例部分 | +| `.` | 所有 sequelize model 的事件均可通过此方式监听,详见示例部分 | +| `.afterCreateWithAssociations` | NocoBase 扩展的当连同关联数据一并创建记录成功后触发的事件(使用 Repository 的 create 方法会触发) | +| `.afterUpdateWithAssociations` | NocoBase 扩展的当连同关联数据一并更新记录成功后触发的事件(使用 Repository 的 update 方法会触发) | +| `.afterSaveWithAssociations` | NocoBase 扩展的当连同关联数据一并创建或更新记录成功后触发的事件(使用 Repository 的 create/update 方法都会触发) | + +**签名** + +* `on(event: string, listener: (...args: any[]) => void | Promise): void` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| event | string | - | 事件名称 | +| listener | Function | - | 事件监听器 | + +**示例** + +监听 books 表事件,当创建新记录成功后触发: + +```ts +db.on('books.afterCreate', async (model, options) => { + const { transaction } = options; + const result = await model.constructor.findByPk(model.id, { + transaction + }); + console.log(result); +}); +``` + +监听 books 表,当连同关联数据一并创建成功后触发的事件: + +```ts +db.on('books.afterCreateWithAssociations', async (model, options) => { + const { transaction } = options; + const result = await model.constructor.findByPk(model.id, { + transaction + }); + console.log(result); +}); +``` + +监听任意表的删除事件: + +```ts +db.on('afterDestroy', async (model, options) => { + console.log(model); +}); +``` + +### `off()` + +移除事件监听函数。 + +**签名** + +* `off(name: string, listener: Function)` + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| name | string | - | 事件名称 | +| listener | Function | - | 事件监听器 | + +**示例** + +```ts +const listener = async (model, options) => { + console.log(model); +}; + +db.on('afterCreate', listener); + +db.off('afterCreate', listener); +``` + +## 数据库操作 + +### `auth()` + +数据库连接验证。可以用于确保应用与数据已建立连接。 + +**签名** + +* `auth(options: QueryOptions & { retry?: number } = {}): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options?` | `Object` | - | 验证选项 | +| `options.retry?` | `number` | `10` | 验证失败时重试次数 | +| `options.transaction?` | `Transaction` | - | 事务对象 | +| `options.logging?` | `boolean \| Function` | `false` | 是否打印日志 | + +**示例** + +```ts +await db.auth(); +``` + +### `reconnect()` + +重新连接数据库。 + +**示例** + +```ts +await db.reconnect(); +``` + +### `closed()` + +判断数据库是否已关闭连接。 + +**签名** + +* `closed(): boolean` + +### `close()` + +关闭数据库连接。等同于 `sequelize.close()`。 + +### `sync()` + +同步数据库表结构。等同于 `sequelize.sync()`,参数参考 [Sequelize 文档](https://sequelize.org/api/v6/class/src/sequelize.js~sequelize#instance-method-sync)。 + +### `clean()` + +清空数据库,将删除所有数据表。 + +**签名** + +* `clean(options: CleanOptions): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.drop` | `boolean` | `false` | 是否移除所有数据表 | +| `options.skip` | `string[]` | - | 跳过的表名配置 | +| `options.transaction` | `Transaction` | - | 事务对象 | + +**示例** + +移除除 `users` 表以外的所有表。 + +```ts +await db.clean({ + drop: true, + skip: ['users'] +}) +``` + +## 包级导出 + +### `defineCollection()` + +创建一个数据表的配置内容。 + +**签名** + +* `defineCollection(name: string, config: CollectionOptions): CollectionOptions` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `collectionOptions` | `CollectionOptions` | - | 与所有 `db.collection()` 的参数相同 | + +**示例** + +对于要被 `db.import()` 导入的数据表配置文件: + +```ts +import { defineCollection } from '@nocobase/database'; + +export default defineCollection({ + name: 'users', + fields: [ + { + type: 'string', + name: 'name', + }, + ], +}); +``` + +### `extendCollection()` + +扩展已在内存中的表结构配置内容,主要用于 `import()` 方法导入的文件内容。该方法是 `@nocobase/database` 包导出的顶级方法,不通过 db 实例调用。也可以使用 `extend` 别名。 + +**签名** + +* `extendCollection(collectionOptions: CollectionOptions, mergeOptions?: MergeOptions): ExtendedCollectionOptions` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `collectionOptions` | `CollectionOptions` | - | 与所有 `db.collection()` 的参数相同 | +| `mergeOptions?` | `MergeOptions` | - | npm 包 [deepmerge](https://npmjs.com/package/deepmerge) 的参数 | + +**示例** + +原始 books 表定义(books.ts): + +```ts +export default { + name: 'books', + fields: [ + { name: 'title', type: 'string' } + ] +} +``` + +扩展 books 表定义(books.extend.ts): + +```ts +import { extend } from '@nocobase/database'; + +// 再次扩展 +export default extend({ + name: 'books', + fields: [ + { name: 'price', type: 'number' } + ] +}); +``` + +以上两个文件如在调用 `import()` 时导入,通过 `extend()` 再次扩展以后,books 表将拥有 `title` 和 `price` 两个字段。 + +此方法在扩展已有插件已定义的表结构时非常有用。 diff --git a/docs/zh-CN/api/database/operators.md b/docs/zh-CN/api/database/operators.md new file mode 100644 index 000000000..468d5f0e4 --- /dev/null +++ b/docs/zh-CN/api/database/operators.md @@ -0,0 +1,816 @@ +# Filter Operators + +用于 Repository 的 find、findOne、findAndCount、count 等 API 的 filter 参数里。如: + +```ts +const repository = db.getRepository('books'); + +repository.find({ + filter: { + title: { + $eq: '春秋', + } + } +}); +``` + +相当于 Sequelize Where 查询的 [Op](https://sequelize.org/docs/v6/core-concepts/model-querying-basics/#operators) 对象。 + +为了支持 JSON 化,NocoBase 中将查询运算符转换为以 $ 为前缀的字符串标识。 + +另外,NocoBase 也提供了扩展运算符的 API,详见 [`db.registerOperators()`](../database#registeroperators)。 + +## 通用运算符 + +### `$eq` + +判断字段值是否相等于指定值。相当于 SQL 的 `=`。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $eq: '春秋', + } + } +}); +``` + +等同于 `title: '春秋'`。 + +### `$ne` + +判断字段值是否不等于指定值。相当于 SQL 的 `!=`。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $ne: '春秋', + } + } +}); +``` + +### `$is` + +判断字段值是否为指定值。相当于 SQL 的 `IS`。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $is: null, + } + } +}); +``` + +### `$not` + +判断字段值是否不为指定值。相当于 SQL 的 `IS NOT`。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $not: null, + } + } +}); +``` + +### `$col` + +判断字段值是否等于另一个字段的值。相当于 SQL 的 `=`。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $col: 'name', + } + } +}); +``` + +### `$in` + +判断字段值是否在指定数组中。相当于 SQL 的 `IN`。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $in: ['春秋', '战国'], + } + } +}); +``` + +### `$notIn` + +判断字段值是否不在指定数组中。相当于 SQL 的 `NOT IN`。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $notIn: ['春秋', '战国'], + } + } +}); +``` + +### `$empty` + +判断一般字段是否为空,如果是字符串字段,判断是否为空串,如果是数组字段,判断是否为空数组。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $empty: true, + } + } +}); +``` + +### `$notEmpty` + +判断一般字段是否不为空,如果是字符串字段,判断是否不为空串,如果是数组字段,判断是否不为空数组。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $notEmpty: true, + } + } +}); +``` + +## 逻辑运算符 + +### `$and` + +逻辑 AND。相当于 SQL 的 `AND`。 + +**示例** + +```ts +repository.find({ + filter: { + $and: [ + { title: '诗经' }, + { isbn: '1234567890' }, + ] + } +}); +``` + +### `$or` + +逻辑 OR。相当于 SQL 的 `OR`。 + +**示例** + +```ts +repository.find({ + filter: { + $or: [ + { title: '诗经' }, + { publishedAt: { $lt: '0000-00-00T00:00:00Z' } }, + ] + } +}); +``` + +## 布尔类型字段运算符 + +用于布尔类型字段 `type: 'boolean'` + +### `$isFalsy` + +判断布尔类型字段值是否为假。布尔字段值为 `false`、`0` 和 `NULL` 的情况都会被判断为 `$isFalsy: true`。 + +**示例** + +```ts +repository.find({ + filter: { + isPublished: { + $isFalsy: true, + } + } +}) +``` + +### `$isTruly` + +判断布尔类型字段值是否为真。布尔字段值为 `true` 和 `1` 的情况都会被判断为 `$isTruly: true`。 + +**示例** + +```ts +repository.find({ + filter: { + isPublished: { + $isTruly: true, + } + } +}) +``` + +## 数字类型字段运算符 + +用于数字类型字段,包括: + +- `type: 'integer'` +- `type: 'float'` +- `type: 'double'` +- `type: 'real'` +- `type: 'decimal'` + +### `$gt` + +判断字段值是否大于指定值。相当于 SQL 的 `>`。 + +**示例** + +```ts +repository.find({ + filter: { + price: { + $gt: 100, + } + } +}); +``` + +### `$gte` + +判断字段值是否大于等于指定值。相当于 SQL 的 `>=`。 + +**示例** + +```ts +repository.find({ + filter: { + price: { + $gte: 100, + } + } +}); +``` + +### `$lt` + +判断字段值是否小于指定值。相当于 SQL 的 `<`。 + +**示例** + +```ts +repository.find({ + filter: { + price: { + $lt: 100, + } + } +}); +``` + +### `$lte` + +判断字段值是否小于等于指定值。相当于 SQL 的 `<=`。 + +**示例** + +```ts +repository.find({ + filter: { + price: { + $lte: 100, + } + } +}); +``` + +### `$between` + +判断字段值是否在指定的两个值之间。相当于 SQL 的 `BETWEEN`。 + +**示例** + +```ts +repository.find({ + filter: { + price: { + $between: [100, 200], + } + } +}); +``` + +### `$notBetween` + +判断字段值是否不在指定的两个值之间。相当于 SQL 的 `NOT BETWEEN`。 + +**示例** + +```ts +repository.find({ + filter: { + price: { + $notBetween: [100, 200], + } + } +}); +``` + +## 字符串类型字段运算符 + +用于字符串类型字段,包括 `string` + +### `$includes` + +判断字符串字段是否包含指定子串。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $includes: '三字经', + } + } +}) +``` + +### `$notIncludes` + +判断字符串字段是否不包含指定子串。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $notIncludes: '三字经', + } + } +}) +``` + +### `$startsWith` + +判断字符串字段是否以指定子串开头。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $startsWith: '三字经', + } + } +}) +``` + +### `$notStatsWith` + +判断字符串字段是否不以指定子串开头。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $notStatsWith: '三字经', + } + } +}) +``` + +### `$endsWith` + +判断字符串字段是否以指定子串结尾。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $endsWith: '三字经', + } + } +}) +``` + +### `$notEndsWith` + +判断字符串字段是否不以指定子串结尾。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $notEndsWith: '三字经', + } + } +}) +``` + +### `$like` + +判断字段值是否包含指定的字符串。相当于 SQL 的 `LIKE`。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $like: '计算机', + } + } +}); +``` + +### `$notLike` + +判断字段值是否不包含指定的字符串。相当于 SQL 的 `NOT LIKE`。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $notLike: '计算机', + } + } +}); +``` + +### `$iLike` + +判断字段值是否包含指定的字符串,忽略大小写。相当于 SQL 的 `ILIKE`(仅 PG 适用)。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $iLike: 'Computer', + } + } +}); +``` + +### `$notILike` + +判断字段值是否不包含指定的字符串,忽略大小写。相当于 SQL 的 `NOT ILIKE`(仅 PG 适用)。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $notILike: 'Computer', + } + } +}); +``` + +### `$regexp` + +判断字段值是否匹配指定的正则表达式。相当于 SQL 的 `REGEXP`(仅 PG 适用)。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $regexp: '^计算机', + } + } +}); +``` + +### `$notRegexp` + +判断字段值是否不匹配指定的正则表达式。相当于 SQL 的 `NOT REGEXP`(仅 PG 适用)。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $notRegexp: '^计算机', + } + } +}); +``` + +### `$iRegexp` + +判断字段值是否匹配指定的正则表达式,忽略大小写。相当于 SQL 的 `~*`(仅 PG 适用)。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $iRegexp: '^COMPUTER', + } + } +}); +``` + +### `$notIRegexp` + +判断字段值是否不匹配指定的正则表达式,忽略大小写。相当于 SQL 的 `!~*`(仅 PG 适用)。 + +**示例** + +```ts +repository.find({ + filter: { + title: { + $notIRegexp: '^COMPUTER', + } + } +}); +``` + +## 日期类型字段运算符 + +用于日期类型字段 `type: 'date'` + +### `$dateOn` + +判断日期字段是否在某天内。 + +**示例** + +```ts +repository.find({ + filter: { + createdAt: { + $dateOn: '2021-01-01', + } + } +}) +``` + +### `$dateNotOn` + +判断日期字段是否不在某天内。 + +**示例** + +```ts +repository.find({ + filter: { + createdAt: { + $dateNotOn: '2021-01-01', + } + } +}) +``` + +### `$dateBefore` + +判断日期字段是否在某个值之前。相当于小于传入的日期值。 + +**示例** + +```ts +repository.find({ + filter: { + createdAt: { + $dateBefore: '2021-01-01T00:00:00.000Z', + } + } +}) +``` + +### `$dateNotBefore` + +判断日期字段是否不在某个值之前。相当于大于等于传入的日期值。 + +**示例** + +```ts +repository.find({ + filter: { + createdAt: { + $dateNotBefore: '2021-01-01T00:00:00.000Z', + } + } +}) +``` + +### `$dateAfter` + +判断日期字段是否在某个值之后。相当于大于传入的日期值。 + +**示例** + +```ts +repository.find({ + filter: { + createdAt: { + $dateAfter: '2021-01-01T00:00:00.000Z', + } + } +}) +``` + +### `$dateNotAfter` + +判断日期字段是否不在某个值之后。相当于小于等于传入的日期值。 + +**示例** + +```ts +repository.find({ + filter: { + createdAt: { + $dateNotAfter: '2021-01-01T00:00:00.000Z', + } + } +}) +``` + +## 数组类型字段运算符 + +用于数组类型字段 `type: 'array'` + +### `$match` + +判断数组字段的值是否匹配指定数组中的值。 + +**示例** + +```ts +repository.find({ + filter: { + tags: { + $match: ['文学', '历史'], + } + } +}) +``` + +### `$notMatch` + +判断数组字段的值是否不匹配指定数组中的值。 + +**示例** + +```ts +repository.find({ + filter: { + tags: { + $notMatch: ['文学', '历史'], + } + } +}) +``` + +### `$anyOf` + +判断数组字段的值是否包含指定数组中的任意值。 + +**示例** + +```ts +repository.find({ + filter: { + tags: { + $anyOf: ['文学', '历史'], + } + } +}) +``` + +### `$noneOf` + +判断数组字段的值是否不包含指定数组中的任意值。 + +**示例** + +```ts +repository.find({ + filter: { + tags: { + $noneOf: ['文学', '历史'], + } + } +}) +``` + +### `$arrayEmpty` + +判断数组字段是否为空。 + +**示例** + +```ts +repository.find({ + filter: { + tags: { + $arrayEmpty: true, + } + } +}); +``` + +### `$arrayNotEmpty` + +判断数组字段是否不为空。 + +**示例** + +```ts +repository.find({ + filter: { + tags: { + $arrayNotEmpty: true, + } + } +}); +``` + +## 关系字段类型运算符 + +用于判断关系是否存在,字段类型包括: + +- `type: 'hasOne'` +- `type: 'hasMany'` +- `type: 'belongsTo'` +- `type: 'belongsToMany'` + +### `$exists` + +有关系数据 + +**示例** + +```ts +repository.find({ + filter: { + author: { + $exists: true, + } + } +}); +``` + +### `$notExists` + +无关系数据 + +**示例** + +```ts +repository.find({ + filter: { + author: { + $notExists: true, + } + } +}); +``` diff --git a/docs/zh-CN/api/database/relation-repository.md b/docs/zh-CN/api/database/relation-repository.md new file mode 100644 index 000000000..32e9879c7 --- /dev/null +++ b/docs/zh-CN/api/database/relation-repository.md @@ -0,0 +1,87 @@ +# RelationRepository + +关系型数据仓库抽象类。 + +## 基类属性 + +### `db` + +### `sourceCollection` + +### `targetCollection` + +### `associationField` + +### `sourceKeyValue` + +### `sourceInstance` + +## HasOneRepository + +### `find()` + +### `update()` + +### `destroy()` + +### `remove()` + +### `set()` + +## BelongsToRepository + +### `find()` + +### `update()` + +### `destroy()` + +### `remove()` + +### `set()` + +## HasManyRepository + +### `count()` + +### `find()` + +### `findOne()` + +### `findAndCount()` + +### `create()` + +### `update()` + +### `destroy()` + +### `add()` + +### `remove()` + +### `set()` + +## BelongsToManyRepository + +### `count()` + +### `find()` + +### `findOne()` + +### `findAndCount()` + +### `create()` + +### `update()` + +### `destroy()` + +### `add()` + +### `remove()` + +### `set()` + +### `toggle()` diff --git a/docs/zh-CN/api/database/repository.md b/docs/zh-CN/api/database/repository.md new file mode 100644 index 000000000..66c6a1a01 --- /dev/null +++ b/docs/zh-CN/api/database/repository.md @@ -0,0 +1,355 @@ +# Repository + +数据表数据仓库管理类。大部分基于数据表的数据存取等操作均通过该类实现。 + +## 构造函数 + +通常不会直接由开发者调用,主要通过 `db.registerRepositories()` 注册类型以后,在 `db.colletion()` 的参数中指定对应已注册的仓库类型,并完成实例化。 + +**签名** + +* `constructor(collection: Collection)` + +**示例** + +```ts +import { Repository } from '@nocobase/database'; + +class MyRepository extends Repository { + async myQuery(sql) { + return this.database.sequelize.query(sql); + } +} + +db.registerRepositories({ + books: MyRepository +}); + +db.collection({ + name: 'books', + // here link to the registered repository + repository: 'books' +}); + +await db.sync(); + +const books = db.getRepository('books') as MyRepository; +await books.myQuery('SELECT * FROM books;'); +``` + +## 实例成员 + +### `database` + +上下文所在的数据库管理实例。 + +### `collection` + +对应的数据表管理实例。 + +### `model` + +对应的数据模型类。 + +## 实例方法 + +### `count()` + +从数据库查询特定条件的数据总数。相当于 Sequelize 中的 `Model.count()`。 + +**签名** + +* `count(options?: CountOptions): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.filter?` | `Filter` | `{}` | 查询条件 | +| `options.fields?` | `string[]` | - | 计数列 | +| `options.transaction?` | `Transaction` | - | 事务 | + +`filter` 为兼容 Sequelize 查询条件的扩展形式,更多操作符支持详见 [Operators](./operators.md)。 + +**示例** + +```ts +const books = db.getRepository('books'); + +const count = await books.count({ + filter: { + title: '三字经' + } +}); +``` + +### `find()` + +从数据库查询特定条件的数据集。相当于 Sequelize 中的 `Model.findAll()`。 + +**签名** + +* `async find(options?: FindOptions): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.filterByTk?` | `number \| string` | `{}` | 主键值 | +| `options.filter?` | `Filter` | `{}` | 查询条件 | +| `options.fields?` | `string[]` | - | 查询列 | +| `options.appends?` | `string[]` | - | 追加关系数据列 | +| `options.except?` | `string[]` | - | 排除数据列 | +| `options.sort?` | `string[] \| string` | - | 排序 | +| `options.limit?` | `number` | - | 限制条数 | +| `options.offset?` | `number` | - | 跳过条数 | +| `options.transaction?` | `Transaction` | - | 事务 | + +`fields` 和 `except` 通常只使用其一,相当于 Sequelize 中 `attributes` 的 `include` / `exclude`。`appends` 通常用于关系字段。 + +**示例** + +```ts +const posts = db.getRepository('posts'); + +const results = await posts.find({ + filter: { + createdAt: { + $gt: '2022-01-01T00:00:00.000Z', + } + }, + fields: ['title'], + appends: ['user'], +}); +``` + +### `findOne()` + +从数据库查询特定条件的单条数据。相当于 Sequelize 中的 `Model.findOne()`。 + +**签名** + +* `async findOne(options?: FindOneOptions): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.filterByTk?` | `number \| string` | `{}` | 主键值 | +| `options.filter?` | `Filter` | `{}` | 查询条件 | +| `options.fields?` | `string[]` | - | 查询列 | +| `options.appends?` | `string[]` | - | 追加关系数据列 | +| `options.except?` | `string[]` | - | 排除数据列 | +| `options.sort?` | `string[] \| string` | - | 排序 | +| `options.offset?` | `number` | - | 跳过条数 | +| `options.transaction?` | `Transaction` | - | 事务 | + +大部分参数与 `find()` 相同,不同之处在于 `findOne()` 只返回单条数据,所以不需要 `limit` 参数,且查询时始终为 `1`。 + +**示例** + +```ts +const posts = db.getRepository('posts'); + +const result = await posts.findOne({ + filterByTk: 1, +}); +``` + +### `findAndCount()` + +从数据库查询特定条件的数据集和总数。相当于 Sequelize 中的 `Model.findAndCountAll()`。 + +**签名** + +* `async findAndCount(options?: FindAndCountOptions): Promise<[Model[], number]>` + +**参数** + +所有参数与 [`find()`](#find) 相同。 + +### `create()` + +向数据表插入一条新创建的数据。相当于 Sequelize 中的 `Model.create()`。当要创建的数据对象携带关系字段的信息时,会一并创建或更新相应的关系数据记录。 + +**签名** + +* `async create(options: CreateOptions): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.values` | `M` | `{}` | 插入的数据对象 | +| `options.whitelist?` | `string[]` | - | `values` 字段的白名单,只有名单内的字段会被存储 | +| `options.blacklist?` | `string[]` | - | `values` 字段的黑名单,名单内的字段不会被存储 | +| `options.transaction?` | `Transaction` | - | 事务 | + +如果没有传入事务参数,该方法会自动创建一个内部事务。 + +**示例** + +```ts +const posts = db.getRepository('posts'); + +const result = await posts.create({ + values: { + title: 'NocoBase 1.0 发布日志', + tags: [ + // 有关系表主键值时为更新该条数据 + { id: 1 }, + // 没有主键值时为创建新数据 + { name: 'NocoBase' }, + ] + }, +}); +``` + +### `createMany()` + +向数据表插入多条新创建的数据。相当于多次调用 `create()` 方法。 + +**签名** + +* `createMany(options: CreateManyOptions): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.records` | `Model[]` | - | 插入的数据对象数组 | +| `options.whitelist?` | `string[]` | - | `values` 字段的白名单,只有名单内的字段会被存储 | +| `options.blacklist?` | `string[]` | - | `values` 字段的黑名单,名单内的字段不会被存储 | +| `options.transaction?` | `Transaction` | - | 事务 | + +如果没有传入事务参数,该方法会自动创建一个内部事务。 + +**示例** + +```ts +const posts = db.getRepository('posts'); + +const results = await posts.createMany({ + records: [ + { + title: 'NocoBase 1.0 发布日志', + tags: [ + // 有关系表主键值时为更新该条数据 + { id: 1 }, + // 没有主键值时为创建新数据 + { name: 'NocoBase' }, + ] + }, + { + title: 'NocoBase 1.1 发布日志', + tags: [ + { id: 1 } + ] + }, + ], +}); +``` + +### `update()` + +更新数据表中的数据。相当于 Sequelize 中的 `Model.update()`。当要更新的数据对象携带关系字段的信息时,会一并创建或更新相应的关系数据记录。 + +**签名** + +* `async update(options: UpdateOptions): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.filterByTk` | `number \| string` | - | 查询主键 | +| `options.filter` | `Filter` | - | 查询条件 | +| `options.values` | `M` | `{}` | 更新的数据对象 | +| `options.whitelist?` | `string[]` | - | `values` 字段的白名单,只有名单内的字段会被存储 | +| `options.blacklist?` | `string[]` | - | `values` 字段的黑名单,名单内的字段不会被存储 | +| `options.transaction?` | `Transaction` | - | 事务 | + +`filterByTk` 与 `filter` 至少要传其一。如果没有传入事务参数,该方法会自动创建一个内部事务。 + +**示例** + +```ts +const posts = db.getRepository('posts'); + +const result = await posts.update({ + filterByTk: 1, + values: { + title: 'NocoBase 1.0 发布日志', + tags: [ + // 有关系表主键值时为更新该条数据 + { id: 1 }, + // 没有主键值时为创建新数据 + { name: 'NocoBase' }, + ] + }, +}); +``` + +### `destory()` + +删除数据表中的数据。相当于 Sequelize 中的 `Model.destroy()`。 + +**签名** + +* `async destory(options?: TargetKey | TargetKey[] | DestoryOptions): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.filterByTk` | `number \| string` | - | 查询主键 | +| `options.filter` | `Filter` | - | 查询条件 | +| `options.transaction?` | `Transaction` | - | 事务 | + +`filterByTk` 与 `filter` 至少要传其一。如果没有传入事务参数,该方法会自动创建一个内部事务。 + +## 关系数据仓库类 + +通过 `db.getRepository('', )` 方法获取到的关系数据仓库管理实例,在调用方法时,会自动在查询条件中加入当前表的主键值。除此以外,还拥有一些基于不同关系类型特有的成员和关系操作方法。 + +### `set()` + +相当于 Sequelize 的 `record.setXxx()` 方法,用于设置关联数据。对一的关系参数为对应的外键,对多的关系参数为对应的外键数组。如果关系类型为 `BelongsToMany`,则会自动创建中间表数据。 + +**签名** + +* `async set(association: string | number | string[] | number[]): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `association` | `string \| number \| string[] \| number[]` | - | 关联数据的外键,对多时可用数组 | + +### `add()` + +相当于 Sequelize 的 `record.addXxx()` 方法,用于附加关联,仅针对对多关系。 + +**签名** + +* `async add(association: string | number | string[] | number[]): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `association` | `string \| number \| string[] \| number[]` | - | 关联数据的外键 | + +### `remove()` + +相当于 Sequelize 的 `record.removeXxx()` 方法,用于移除关联,仅针对对多关系。 + +**签名** + +* `async remove(association: string | number | string[] | number[]): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `association` | `string \| number \| string[] \| number[]` | - | 关联数据的外键 | diff --git a/docs/zh-CN/development/env.md b/docs/zh-CN/api/env.md similarity index 100% rename from docs/zh-CN/development/env.md rename to docs/zh-CN/api/env.md diff --git a/docs/zh-CN/development/http-api/action-api.md b/docs/zh-CN/api/http-api/action-api.md similarity index 100% rename from docs/zh-CN/development/http-api/action-api.md rename to docs/zh-CN/api/http-api/action-api.md diff --git a/docs/zh-CN/development/http-api/filter-operators.md b/docs/zh-CN/api/http-api/filter-operators.md similarity index 100% rename from docs/zh-CN/development/http-api/filter-operators.md rename to docs/zh-CN/api/http-api/filter-operators.md diff --git a/docs/zh-CN/development/http-api/index.md b/docs/zh-CN/api/http-api/index.md similarity index 100% rename from docs/zh-CN/development/http-api/index.md rename to docs/zh-CN/api/http-api/index.md diff --git a/docs/zh-CN/development/http-api/rest-api.md b/docs/zh-CN/api/http-api/rest-api.md similarity index 100% rename from docs/zh-CN/development/http-api/rest-api.md rename to docs/zh-CN/api/http-api/rest-api.md diff --git a/docs/zh-CN/api/index.md b/docs/zh-CN/api/index.md new file mode 100644 index 000000000..068dd21f7 --- /dev/null +++ b/docs/zh-CN/api/index.md @@ -0,0 +1,11 @@ +# 概览 + +## 内置模块列表 + +| 模块 | 包名 | 描述 | +| --- | --- | --- | +| [Server](./server) | `@nocobase/server` | 服务端应用 | +| [Database](./database) | `@nocobase/database` | 数据库访问层 | +| [Resourcer](./resourcer) | `@nocobase/resourcer` | 资源与路由映射 | +| [ACL](./acl) | `@nocobase/acl` | 访问控制表 | +| [Client](./client) | `@nocobase/client` | 客户端应用 | diff --git a/docs/zh-CN/api/resourcer/action.md b/docs/zh-CN/api/resourcer/action.md new file mode 100644 index 000000000..6c81c3e38 --- /dev/null +++ b/docs/zh-CN/api/resourcer/action.md @@ -0,0 +1,103 @@ +# Action + +Action 是对资源的操作过程的描述,通常包含数据库处理等,类似其他框架中的 service 层,最简化的实现可以是一个 Koa 的中间件函数。在资源管理器里,针对特定资源定义的普通操作函数会被包装成 Action 类型的实例,当请求匹配对应资源的操作时,执行对应的操作过程。 + +## 构造函数 + +通常不需要直接实例化 Action,而是由资源管理器自动调用 `Action` 的静态方法 `toInstanceMap()` 进行实例化。 + +### `constructor(options: ActionOptions)` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `handler` | `Function` | - | 操作函数 | +| `middlewares?` | `Middleware \| Middleware[]` | - | 针对操作的中间件 | +| `values?` | `Object` | - | 默认的操作数据 | +| `fields?` | `string[]` | - | 默认针对的字段组 | +| `appends?` | `string[]` | - | 默认附加的关联字段组 | +| `except?` | `string[]` | - | 默认排除的字段组 | +| `filter` | `FilterOptions` | - | 默认的过滤参数 | +| `sort` | `string[]` | - | 默认的排序参数 | +| `page` | `number` | - | 默认的页码 | +| `pageSize` | `number` | - | 默认的每页数量 | +| `maxPageSize` | `number` | - | 默认最大每页数量 | + +## 实例成员 + +### `actionName` + +被实例化后对应的操作名称。在实例化时从请求中解析获取。 + +### `resourceName` + +被实例化后对应的资源名称。在实例化时从请求中解析获取。 + +### `resourceOf` + +被实例化后对应的关系资源的主键值。在实例化时从请求中解析获取。 + +### `readonly middlewares` + +针对操作的中间件列表。 + +### `params` + +操作参数。包含对应操作的所有相关参数,实例化时根据定义的 action 参数初始化,之后请求中解析前端传入的参数并根据对应参数的合并策略合并。如果有其他中间件的处理,也会有类似的合并过程。直到 handler 处理时,访问 params 得到的是经过多次合并的最终参数。 + +参数的合并过程提供了针对操作处理的可扩展性,可以通过自定义中间件的方式按业务需求进行参数的前置解析和处理,例如表单提交的参数验证就可以在此环节实现。 + +预设的参数与默认合并策略如下表: + +| 参数名 | 类型 | 默认值 | 合并策略 | 描述 | +| --- | --- | --- | --- | --- | +| `filterByTk` | `number \| string` | - | SQL `and` | 查询主键值 | +| `filter` | `FilterOptions` | - | SQL `and` | 查询过滤参数 | +| `fields` | `string[]` | - | 取并集 | 字段组 | +| `appends` | `string[]` | `[]` | 取并集 | 附加的关联字段组 | +| `except` | `string[]` | `[]` | 取并集 | 排除的字段组 | +| `whitelist` | `string[]` | `[]` | 取交集 | 可处理字段的白名单 | +| `blacklist` | `string[]` | `[]` | 取交集 | 可处理字段的黑名单 | +| `sort` | `string[]` | - | SQL `order by` | 查询排序参数 | +| `page` | `number` | - | 覆盖 | 页码 | +| `pageSize` | `number` | - | 覆盖 | 每页数量 | +| `values` | `Object` | - | shallow merge | 操作提交的数据 | + +参数中还包含请求资源路由的描述部分,具体如下: + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `resourceName` | `string` | - | 资源名称 | +| `resourceIndex` | `string \| number` | - | 资源的主键值 | +| `associatedName` | `string` | - | 所属关系资源的名称 | +| `associatedIndex` | `string \| number` | - | 所属关系资源的主键值 | +| `associated` | `Object` | - | 所属关系资源的实例 | +| `actionName` | `string` | - | 操作名称 | + +**示例** + +```ts +app.resourcer.define('books', { + actions: { + publish(ctx, next) { + ctx.body = ctx.action.params.values; + // { + // id: 1234567890 + // publishedAt: '2019-01-01', + // } + } + }, + middlewares: [ + async (ctx, next) => { + ctx.action.mergeParam({ + values: { + id: Math.random().toString(36).substr(2, 10), + publishedAt: new Date(), + } + }); + await next(); + } + ] +}); +``` diff --git a/docs/zh-CN/api/resourcer/index.md b/docs/zh-CN/api/resourcer/index.md new file mode 100644 index 000000000..d1eb0c49b --- /dev/null +++ b/docs/zh-CN/api/resourcer/index.md @@ -0,0 +1,252 @@ +# Resourcer + +Resourcer 主要用于管理 API 资源与路由,也是 NocoBase 的内置模块,app 默认会自动创建一个 Resourcer 实例,大部分情况你可以通过 `app.resourcer` 访问。 + +资源路由管理器主要通过 [资源](/api/server/resourcer/resource) + [操作](/api/server/resourcer/action) 的概念定义服务端 API 接口,与 RESTful 的概念相似。大部分资源通过映射数据库表生成,包含常规的 CRUD 操作,以覆盖常见场景。但如果有额外需求,也可以在此基础上扩展更多的资源类型和操作类型。 + +## 包结构 + +可通过以下方式引入相关实体: + +```ts +import Resourcer, { + Resource, + Action, + Middleware, + branch +} from '@nocobase/resourcer'; +``` + +## 构造函数 + +用于创建 Resourcer 管理器实例。由于 app 默认创建一个内置实例,所以通常不会直接使用构造函数。 + +**签名** + +* `constructor(options: ResourcerOptions)` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `prefix` | `string` | - | 路由路径前缀 | +| `accessors` | `Object` | _以下成员值_ | 默认操作方法名称标识 | +| `accessors.list` | `string` | `'list'` | 列举操作方法名称标识 | +| `accessors.get` | `string` | `'get'` | 获取操作方法名称标识 | +| `accessors.create` | `string` | `'create'` | 创建操作方法名称标识 | +| `accessors.update` | `string` | `'update'` | 更新操作方法名称标识 | +| `accessors.delete` | `string` | `'destroy'` | 删除操作方法名称标识 | +| `accessors.add` | `string` | `'add'` | 增加关联操作方法名称标识 | +| `accessors.remove` | `string` | `'remove'` | 移除关联操作方法名称标识 | +| `accessors.set` | `string` | `'set'` | 全量设置关联操作方法名称标识 | + +**示例** + +在创建 app 时件时,可以通过 `resourcer` 选项传入: + +```ts +const app = new Application({ + // 对应默认 resourcer 实例的配置项 + resourcer: { + prefix: process.env.API_BASE_PATH + } +}); +``` + +## 实例方法 + +### `define()` + +定义并向资源管理器注册一个资源对象。通常代替 `Resource` 类的构造函数使用。 + +**签名** + +* `define(options: ResourceOptions): Resource` + +**参数** + +详见 [Resource 构造函数](/api/server/resourcer/resource#构造函数)。 + +**示例** + +```ts +app.resourcer.define({ + name: 'books', + actions: { + // 扩展的 action + publish(ctx, next) { + ctx.body = 'ok'; + } + } +}); +``` + +### `isDefined()` + +检查对应名称的资源是否已被注册。 + +**签名** + +* `isDefined(name: string): boolean` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 资源名称 | + +**示例** + +```ts +app.resourcer.isDefined('books'); // true +``` + +### `registerAction()` + +向资源管理器注册一个操作,可以指定针对特定的资源,如不指定资源名称,则认为是针对全局所有资源都可访问的操作。 + +**签名** + +* `registerAction(name: string, handler: HandlerType): void` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 操作名称 | +| `handler` | `HandlerType` | - | 操作处理函数 | + +`name` 的值如果以 `:` 开头则代表仅针对 `` 资源可访问,否则认为是全局操作。 + +**示例** + +```ts +// 注册后任意资源都可以进行 upload 操作 +app.resourcer.registerAction('upload', async (ctx, next) => { + ctx.body = 'ok'; +}); + +// 仅针对 attachments 资源注册 upload 操作 +app.resourcer.registerAction('attachments:upload', async (ctx, next) => { + ctx.body = 'ok'; +}); +``` + +### `registerActions()` + +向资源管理器注册多个操作的集合方法。 + +**签名** + +* `registerActions(actions: { [name: string]: HandlerType }): void` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `actions` | `{ [name: string]: HandlerType }` | - | 操作集合 | + +**示例** + +```ts +app.resourcer.registerActions({ + upload: async (ctx, next) => { + ctx.body = 'ok'; + }, + 'attachments:upload': async (ctx, next) => { + ctx.body = 'ok'; + } +}); +``` + +### `getResource()` + +获取对应名称的资源对象。 + +**签名** + +* `getResource(name: string): Resource` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 资源名称 | + +**示例** + +```ts +app.resourcer.getResource('books'); +``` + +### `getAction()` + +获取对应名称的操作处理函数。 + +**签名** + +* `getAction(name: string): HandlerType` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 操作名称 | + +`name` 的值如果以 `:` 开头则代表仅针对 `` 资源的操作,否则认为是全局操作。 + +**示例** + +```ts +app.resourcer.getAction('upload'); +app.resourcer.getAction('attachments:upload'); +``` + +### `use()` + +以 Koa 的形式注册一个中间件,中间件形成一个队列,并排在所有资源的操作处理函数之前执行。 + +**签名** + +* `use(middleware: Middleware | Middleware[]): void` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `middleware` | `Middleware \| Middleware[]` | - | 中间件 | + +**示例** + +```ts +app.resourcer.use(async (ctx, next) => { + console.log(ctx.req.url); + await next(); +}); +``` + +### `middleware()` + +生成一个兼容 Koa 的中间件,用于将资源的路由处理注入到应用中。 + +**签名** + +* `middleware(options: KoaMiddlewareOptions): KoaMiddleware` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.prefix?` | `string` | `''` | 路径前缀。 | +| `options.accessors?` | `Object` | `{}` | 常用方法的名称映射,与构造函数的 `accessors` 参数结构相同。 | + +**示例** + +```ts +const koa = new Koa(); + +const resourcer = new Resourcer(); + +// 生成兼容 Koa 的中间件 +koa.use(resourcer.middleware()); +``` diff --git a/docs/zh-CN/api/resourcer/middleware.md b/docs/zh-CN/api/resourcer/middleware.md new file mode 100644 index 000000000..1f0a4d3a8 --- /dev/null +++ b/docs/zh-CN/api/resourcer/middleware.md @@ -0,0 +1,168 @@ +# Middleware + +与 Koa 的中间件类似,但提供了更多增强的功能,可以方便的进行更多的扩展。 + +中间件定义后可以在资源管理器等多处进行插入使用,由开发者自行控制调用的时机。 + +## 构造函数 + +**签名** + +* `constructor(options: Function)` +* `constructor(options: MiddlewareOptions)` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options` | `Function` | - | 中间件处理函数 | +| `options` | `MiddlewareOptions ` | - | 中间件配置项 | +| `options.only` | `string[]` | - | 仅允许指定的操作 | +| `options.except` | `string[]` | - | 排除指定的操作 | +| `options.handler` | `Function` | - | 处理函数 | + +**示例** + +简单定义: + +```ts +const middleware = new Middleware((ctx, next) => { + await next(); +}); +``` + +使用相关参数: + +```ts +const middleware = new Middleware({ + only: ['create', 'update'], + async handler(ctx, next) { + await next(); + }, +}); +``` + +## 实例方法 + +### `getHandler()` + +返回已经过编排的处理函数。 + +**示例** + +以下中间件在请求时会先输出 `1`,再输出 `2`。 + +```ts +const middleware = new Middleware((ctx, next) => { + console.log(1); + await next(); +}); + +middleware.use(async (ctx, next) => { + console.log(2); + await next(); +}); + +app.resourcer.use(middleware.getHandler()); +``` + +### `use()` + +对当前中间件添加中间件函数。用于提供中间件的扩展点。示例见 `getHandler()`。 + +**签名** + +* `use(middleware: Function)` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `middleware` | `Function` | - | 中间件处理函数 | + +### `disuse()` + +移除当前中间件已添加的中间件函数。 + +**签名** + +* `disuse(middleware: Function)` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `middleware` | `Function` | - | 中间件处理函数 | + +**示例** + +以下示例在请求处理是只输出 `1`,不执行 fn1 中的 `2` 输出。 + +```ts +const middleware = new Middleware((ctx, next) => { + console.log(1); + await next(); +}); + +async function fn1(ctx, next) { + console.log(2); + await next(); +} + +middleware.use(fn1); + +app.resourcer.use(middleware.getHandler()); + +middleware.disuse(fn1); +``` + +### `canAccess()` + +判断当前中间件针对特定操作是否要被调用,通常由资源管理器内部处理。 + +**签名** + +* `canAccess(name: string): boolean` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 操作名称 | + +## 其他导出 + +### `branch()` + +创建一个分支中间件,用于在中间件中进行分支处理。 + +**签名** + +* `branch(map: { [key: string]: Function }, reducer: Function, options): Function` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `map` | `{ [key: string]: Function }` | - | 分支处理函数映射表,键名由后续计算函数在调用时给出 | +| `reducer` | `(ctx) => string` | - | 计算函数,用于基于上下文计算出分支的键名 | +| `options?` | `Object` | - | 分支配置项 | +| `options.keyNotFound?` | `Function` | `ctx.throw(404)` | 未找到键名时的处理函数 | +| `options.handlerNotSet?` | `Function` | `ctx.throw(404)` | 未定义处理函数时的处理 | + +**示例** + +用户验证时,根据请求 URL 中 query 部分的 `authenticator` 参数的值决定后续需要如何处理: + +```ts +app.resourcer.use(branch({ + 'password': async (ctx, next) => { + // ... + }, + 'sms': async (ctx, next) => { + // ... + }, +}, (ctx) => { + return ctx.action.params.authenticator ?? 'password'; +})); +``` diff --git a/docs/zh-CN/api/resourcer/resource.md b/docs/zh-CN/api/resourcer/resource.md new file mode 100644 index 000000000..4e83b2d21 --- /dev/null +++ b/docs/zh-CN/api/resourcer/resource.md @@ -0,0 +1,114 @@ +# Resource + +Resource 用于定义资源实例。被 Resourcer 管理的资源实例都可以通过 HTTP 请求访问。 + +## 构造函数 + +用于创建 Resource 实例。通常由 Resourcer 管理器的 `define()` 接口调用替代,不需要直接使用。 + +**签名** + +* `constructor(options: ResourceOptions, resourcer: Resourcer)` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.name` | `string` | - | 资源名称,对应 URL 路由中的资源地址部分。 | +| `options.type` | `string` | `'single'` | 资源类型,可选项为 `'single'`、`'hasOne'`、`'hasMany'`、`'belongsTo'`、`'belongsToMany'`。 | +| `options.actions` | `Object` | - | 对资源可进行的操作列表,详见示例部分。 | +| `options.middlewares` | `MiddlewareType \| MiddlewareType[]` | - | 对当前定义资源进行任意操作访问时的中间件列表,详见示例部分。 | +| `options.only` | `ActionName[]` | `[]` | 针对全局操作的白名单列表,当数组中有值时(`length > 0`),只有数组中的操作可被访问。 | +| `options.except` | `ActionName[]` | `[]` | 针对全局操作的黑名单列表,当数组中有值时(`length > 0`),除数组中的操作外,其他操作可被访问。 | +| `resourcer` | `Resourcer` | - | 所属资源管理器实例。 | + +**示例** + +```ts +app.resourcer.define({ + name: 'books', + actions: { + // 扩展的 action + publish(ctx, next) { + ctx.body = 'ok'; + } + }, + middleware: [ + // 扩展的中间件 + async (ctx, next) => { + await next(); + } + ] +}); +``` + +## 实例成员 + +### `options` + +当前资源的配置项。 + +### `resourcer` + +所属的资源管理器实例。 + +### `middlewares` + +已注册的中间件列表。 + +### `actions` + +已注册的操作映射表。 + +### `except` + +操作排除的名单列表。 + +## 实例方法 + +### `getName()` + +获取当前资源的名称。 + +**签名** + +* `getName(): string` + +**示例** + +```ts +const resource = app.resourcer.define({ + name: 'books' +}); + +resource.getName(); // 'books' +``` + +### `getAction()` + +根据名称获取当前资源的操作。 + +**签名** + +* `getAction(name: string): Action` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `name` | `string` | - | 操作名称。 | + +**示例** + +```ts +const resource = app.resourcer.define({ + name: 'books', + actions: { + publish(ctx, next) { + ctx.body = 'ok'; + } + } +}); + +resource.getAction('publish'); // [Function: publish] +``` diff --git a/docs/zh-CN/development/http-api/javascript-sdk.md b/docs/zh-CN/api/sdk.md similarity index 99% rename from docs/zh-CN/development/http-api/javascript-sdk.md rename to docs/zh-CN/api/sdk.md index 34737c1b5..d4fc6fa70 100644 --- a/docs/zh-CN/development/http-api/javascript-sdk.md +++ b/docs/zh-CN/api/sdk.md @@ -1,4 +1,4 @@ -# JavaScript SDK +# @nocobase/sdk ## APIClient diff --git a/docs/zh-CN/development/plugin-development/server/app-manager.md b/docs/zh-CN/api/server/app-manager.md similarity index 100% rename from docs/zh-CN/development/plugin-development/server/app-manager.md rename to docs/zh-CN/api/server/app-manager.md diff --git a/docs/zh-CN/api/server/application.md b/docs/zh-CN/api/server/application.md new file mode 100644 index 000000000..5ecd37bc6 --- /dev/null +++ b/docs/zh-CN/api/server/application.md @@ -0,0 +1,267 @@ +# Application + +NocoBase 的应用程序类,服务端的应用进程将实例化该类并启动。因为继承自 [Koa](https://koajs.com/),所以也可以直接调用 Koa 实例的方法。 + +同时因为 Koa 还继承自 [EventEmitter](https://nodejs.org/api/events.html#events_class_eventemitter),所以也可以通过 `app.on` 监听事件。 + +## 构造函数 + +**签名** + +* `constructor(options: ApplicationOptions)` + +创建一个应用实例。 + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.database` | `IDatabaseOptions` or `Database` | `{}` | 数据库配置 | +| `options.resourcer` | `ResourcerOptions` | `{}` | 资源路由配置 | +| `options.cors` | `CorsOptions` | `{}` | 跨域配置,参考 [@koa/cors](https://npmjs.com/package/@koa/cors) | +| `options.dataWrapping` | `boolean` | `true` | 是否包装响应数据,`true` 则将把通常的 `ctx.body` 包装为 `{ data, meta }` 的结构。 | +| `options.registerActions` | `boolean` | `true` | 是否注册默认的 action | +| `options.i18n` | `I18nOptions` | `{}` | 国际化配置,参考 [i18next](https://www.npmjs.com/package/i18next) | +| `options.plugins` | `PluginConfiguration[]` | `[]` | 默认启用的插件配置 | + +**示例** + +```ts +import Application from '@nocobase/server'; + +const app = new Application({ + database: { + dialect: 'mysql', + host: 'localhost', + port: 3306, + username: 'root', + password: '123456', + database: 'test', + }, + resourcer: { + prefix: '/api', + }, + cors: { + origin: '*', + } +}); +``` + +## 实例成员 + +### `db` + +应用初始化自动创建的数据库实例,通过 `@nocobase/database` 封装的数据库访问类,相关方法参考 [Database](./database)。 + +### `resourcer` + +应用初始化自动创建的资源路由管理实例,相关方法参考 [Resourcer](./resourcer)。 + +### `cli` + +应用初始化自动创建的命令行工具实例,相关方法参考 [CLI](../cli)。 + +### `acl` + +应用初始化自动创建的访问控制表实例,相关方法参考 [ACL](./acl)。 + +### `i18n` + +应用初始化自动创建的国际化工具实例,相关方法参考 [I18n](./i18n)。 + +### `appManager` + +应用初始化自动创建的应用管理实例,相关方法参考 [AppManager](./app-manager)。 + +### `pm` + +应用初始化自动创建的插件管理器实例,相关方法参考 [PluginManager](./plugin-manager)。 + +### `context` + +继承自 koa 的 context,可以通过 `app.context` 访问,用于向每个请求注入上下文可访问的内容。参考 [Koa Context](https://koajs.com/#app-context)。 + +NocoBase 默认对 context 注入了以下成员,可以在请求处理函数中直接使用: + +| 变量名 | 类型 | 描述 | +| --- | --- | --- | +| `ctx.app` | `Application` | 应用实例 | +| `ctx.db` | `Database` | 数据库实例 | +| `ctx.resourcer` | `Resourcer` | 资源路由管理器实例 | +| `ctx.action` | `Action` | 资源操作相关对象实例 | +| `ctx.i18n` | `I18n` | 国际化实例 | +| `ctx.getBearerToken()` | `Function` | 获取请求头中的 bearer token | + +## 实例方法 + +### `getVersion()` + +获取当前版本。 + +**签名** + +* `getVersion(): string` + +**示例** + +```ts +console.log(app.getVersion()); // 0.7.4-alpha.7 +``` + +### `plugin()` + +向应用中注册插件的快捷方法,等同于 `app.pm.add()`,参考 [PluginManager](./plugin-manager#add)。 + +### `loadPluginConfig()` + +批量注册插件与默认参数。 + +**签名** + +* `loadPluginConfig(pluginsConfigurations: PluginConfiguration[]): void` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `pluginsConfigurations[]` | `string` | - | 插件的 npm 包名 | +| `pluginsConfigurations[]` | `[string, any]` | - | 插件的 npm 包名与默认参数 | + +### `getPlugin()` + +获取已注册的插件实例,等同于 `app.pm.get(name)`,参考 [PluginManager](./plugin-manager#get)。 + +### `use()` + +注册应用级中间件的快捷方法,等同于 `koa.use()`。 + +### `on()` + +订阅应用级事件,主要与生命周期相关,等同于 `eventEmitter.on()`。所有可订阅事件参考 [事件](#事件)。 + +### `collection()` + +向数据库注册数据表模型的快捷方法,等同于 `app.db.collection()`,参考 [Database](./database#collection)。 + +### `resource()` + +向资源路由管理器注册资源的快捷方法,等同于 `app.resourcer.define()`,参考 [Resourcer](./resourcer#define)。 + +### `actions()` + +向资源路由管理器注册 action 的快捷方法,等同于 `app.resourcer.registerActions()`,参考 [Resourcer](./resourcer#registerActions)。 + +### `command()` + +向命令行工具注册命令的快捷方法,等同于 `app.cli.command()`,参考 [cli](./cli)。 + +### `load()` + +应用生命周期方法,用于加载所有已注册的插件,等同于 `app.pm.load()`,参考 [PluginManager](./plugin-manager#load)。 + +**签名** + +* `async load(): Promise` + +### `start()` + +启动应用,如果配置了监听的端口,将启动监听,之后应用即可接受 HTTP 请求。 + +**签名** + +* `async start(options: StartOptions): Promise` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options.listen?` | `ListenOptions` | `{}` | HTTP 监听参数对象 | +| `options.listen.port?` | `number` | 13000 | 端口 | +| `options.listen.host?` | `string` | `'localhost'` | 域名 | + +**事件** + +`start()` 调用会触发两个事件: + +* `'beforeStart'`:在应用启动前触发。 +* `'afterStart'`:在应用启动后触发。 + +### `stop()` + +停止应用,如果应用正在监听,将停止监听,并关闭数据库连接。 + +**签名** + +* `async stop(options: any): Promise` + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `options?` | `any` | - | 将透传至停止事件的参数 | + +**事件** + +`stop()` 调用会触发两个事件: + +* `'beforeStop'`:在应用停止前触发。 +* `'afterStop'`:在应用停止后触发。 + +### `destroy()` + +销毁并停止应用,包含 `stop()` 的调用。 + +**事件** + +`destroy()` 调用会触发两个事件: + +* `'beforeDestroy'`:在应用销毁前触发。 +* `'afterDestroy'`:在应用销毁后触发。 + +插件相关的销毁事件可以基于该事件进行扩展。 + +### `install()` + +应用初始化安装调用接口,用于安装应用的基础数据,包括: + +* 同步已通过 `db.collection()` 和 `db.import()` 注入的数据库表结构到数据库。 +* 调用所有已注册插件实例的 `install()` 方法,执行相应安装过程。 + +**事件** + +* `'beforeInstall'`:在应用安装前触发。 +* `'afterInstall'`:在应用安装后触发。 + +### `upgrade()` + +应用调用接口,当更新新版本代码后通过命令行工具调用,用于执行应用的升级过程,包括: + +* 数据库迁移工具执行。 + +**事件** + +* `'beforeUpgrade'`:在应用升级前触发。 +* `'afterUpgrade'`:在应用升级后触发。 + +## 事件 + +应用生命周期会触发相应事件,扩展开发可以基于这些事件进行。 + +| 事件名称 | 是否异步 | 描述 | +| --- | --- | --- | +| `'beforeInstall'` | 是 | 安装前触发 | +| `'afterInstall'` | 是 | 安装后触发 | +| `'beforeUpgrade'` | 是 | 升级前触发 | +| `'afterUpgrade'` | 是 | 升级后触发 | +| `'beforeStart'` | 是 | 启动前触发 | +| `'afterStart'` | 是 | 启动后触发 | +| `'beforeStop'` | 是 | 停止前触发 | +| `'afterStop'` | 是 | 停止后触发 | +| `'beforeDestroy'` | 是 | 销毁前触发 | +| `'afterDestroy'` | 是 | 销毁后触发 | + +**示例** + +```ts +app.on('beforeStart', async () => { + console.log('app before start'); +}); +``` diff --git a/docs/zh-CN/development/plugin-development/server/i18n.md b/docs/zh-CN/api/server/i18n.md similarity index 100% rename from docs/zh-CN/development/plugin-development/server/i18n.md rename to docs/zh-CN/api/server/i18n.md diff --git a/docs/zh-CN/api/server/plugin-manager.md b/docs/zh-CN/api/server/plugin-manager.md new file mode 100644 index 000000000..d5a1282fe --- /dev/null +++ b/docs/zh-CN/api/server/plugin-manager.md @@ -0,0 +1,33 @@ +# PluginManager + +应用插件管理器的实例,由应用自动创建,可以通过 `app.pm` 访问。 + +## 实例方法 + +### `add()` + +**签名** + +* `add(pluginClass: PluginConstructor, options?: any): Plugin` + +**参数** + +| 参数名 | 类型 | 默认值 | 描述 | +| --- | --- | --- | --- | +| `pluginClass` | `PluginConstructor` | - | 插件类,参考 [Plugin 类](./plugin) | + +**返回值** + +对应插件类的实例 + +**示例** + +```ts +import Application, { Plugin } from '@nocobase/server'; + +class MyPlugin extends Plugin {} + +const app = new Application(); + +app.pm.add(MyPlugin, { a: 1 }); +``` diff --git a/docs/zh-CN/contributing.md b/docs/zh-CN/development/contributing.md similarity index 100% rename from docs/zh-CN/contributing.md rename to docs/zh-CN/development/contributing.md diff --git a/docs/zh-CN/development/guide/collections-fields.md b/docs/zh-CN/development/guide/collections-fields.md new file mode 100644 index 000000000..2942bacfa --- /dev/null +++ b/docs/zh-CN/development/guide/collections-fields.md @@ -0,0 +1 @@ +# Collections & Fields \ No newline at end of file diff --git a/docs/zh-CN/development/guide/commands.md b/docs/zh-CN/development/guide/commands.md new file mode 100644 index 000000000..61c515e7b --- /dev/null +++ b/docs/zh-CN/development/guide/commands.md @@ -0,0 +1 @@ +# Commands diff --git a/docs/zh-CN/development/guide/hooks.md b/docs/zh-CN/development/guide/hooks.md new file mode 100644 index 000000000..df33ddeef --- /dev/null +++ b/docs/zh-CN/development/guide/hooks.md @@ -0,0 +1 @@ +# Hooks \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/client/providers/i18n.md b/docs/zh-CN/development/guide/i18n.md similarity index 100% rename from docs/zh-CN/development/plugin-development/client/providers/i18n.md rename to docs/zh-CN/development/guide/i18n.md diff --git a/docs/zh-CN/development/guide/index.md b/docs/zh-CN/development/guide/index.md new file mode 100644 index 000000000..07dd0c5c7 --- /dev/null +++ b/docs/zh-CN/development/guide/index.md @@ -0,0 +1 @@ +# Overview diff --git a/docs/zh-CN/development/guide/middleware.md b/docs/zh-CN/development/guide/middleware.md new file mode 100644 index 000000000..4dd1086ee --- /dev/null +++ b/docs/zh-CN/development/guide/middleware.md @@ -0,0 +1 @@ +# Middleware diff --git a/docs/zh-CN/development/guide/migration.md b/docs/zh-CN/development/guide/migration.md new file mode 100644 index 000000000..689e8d24e --- /dev/null +++ b/docs/zh-CN/development/guide/migration.md @@ -0,0 +1 @@ +# Migration diff --git a/docs/zh-CN/development/guide/resources-actions.md b/docs/zh-CN/development/guide/resources-actions.md new file mode 100644 index 000000000..90ad35167 --- /dev/null +++ b/docs/zh-CN/development/guide/resources-actions.md @@ -0,0 +1 @@ +# Resources & Actions diff --git a/docs/zh-CN/development/guide/ui-router.md b/docs/zh-CN/development/guide/ui-router.md new file mode 100644 index 000000000..a587e8b4f --- /dev/null +++ b/docs/zh-CN/development/guide/ui-router.md @@ -0,0 +1 @@ +# UI Router diff --git a/docs/zh-CN/development/guide/ui-schema-designer/acl.md b/docs/zh-CN/development/guide/ui-schema-designer/acl.md new file mode 100644 index 000000000..d1c6127f6 --- /dev/null +++ b/docs/zh-CN/development/guide/ui-schema-designer/acl.md @@ -0,0 +1,2 @@ +# ACL + diff --git a/docs/zh-CN/development/guide/ui-schema-designer/collection-manager.md b/docs/zh-CN/development/guide/ui-schema-designer/collection-manager.md new file mode 100644 index 000000000..a02a42f06 --- /dev/null +++ b/docs/zh-CN/development/guide/ui-schema-designer/collection-manager.md @@ -0,0 +1 @@ +# Collection Manager diff --git a/docs/zh-CN/development/guide/ui-schema-designer/component-library.md b/docs/zh-CN/development/guide/ui-schema-designer/component-library.md new file mode 100644 index 000000000..db99b2c6b --- /dev/null +++ b/docs/zh-CN/development/guide/ui-schema-designer/component-library.md @@ -0,0 +1,82 @@ +# Schema 组件库 + +## 包装器组件 + +- BlockItem +- FormItem +- CardItem + +## 布局 + +- Page +- Grid +- Tabs +- Space + +## 字段组件 + +字段组件一般不单独使用,而是用在数据展示组件当中 + +- CollectionField:万能组件 +- Cascader +- Checkbox +- ColorSelect +- DatePicker +- Filter +- Formula +- IconPicker +- Input +- InputNumber +- Markdown +- Password +- Percent +- Radio +- RecordPicker +- RichText +- Select +- TimePicker +- TreeSelect +- Upload + +## 数据展示组件 + +需要与字段组件搭配使用 + +- Calendar +- Form +- Kanban +- Table +- TableV2 + +## 操作(onClick 事件型组件) + +- Action +- Action.Drawer +- Action.Modal +- ActionBar:用于操作布局 +- Menu + +## 其他 + +- G2plot +- Markdown.Void + +## `x-designer` 和 `x-initializer` 的使用场景 + +`x-decorator` 或 `x-component` 是以下组件时,`x-designer` 生效: + +- BlockItem +- CardItem +- FormItem +- Table.Column +- Tabs.TabPane + +`x-decorator` 或 `x-component` 是以下组件时,`x-initializer` 生效: + +- ActionBar +- BlockItem +- CardItem +- FormItem +- Grid +- Table +- Tabs \ No newline at end of file diff --git a/docs/zh-CN/development/guide/ui-schema-designer/demo1.tsx b/docs/zh-CN/development/guide/ui-schema-designer/demo1.tsx new file mode 100644 index 000000000..25469fab9 --- /dev/null +++ b/docs/zh-CN/development/guide/ui-schema-designer/demo1.tsx @@ -0,0 +1,107 @@ +import { ArrayField } from '@formily/core'; +import { connect, ISchema, observer, RecursionField, useField, useFieldSchema } from '@formily/react'; +import { SchemaComponent, SchemaComponentProvider } from '@nocobase/client'; +import { Table, TableColumnType } from 'antd'; +import React from 'react'; + +const ArrayTable = observer((props: any) => { + const { rowKey } = props; + const field = useField(); + const schema = useFieldSchema(); + const columnSchemas = schema.reduceProperties((buf, s) => { + if (s['x-component'] === 'ArrayTable.Column') { + buf.push(s); + } + return buf; + }, []); + + const columns = columnSchemas.map((s) => { + return { + render: (value, record) => { + return ; + }, + } as TableColumnType; + }); + + return ; +}); + +const Value = connect((props) => { + return
  • value: {props.value}
  • ; +}); + +const schema: ISchema = { + type: 'object', + properties: { + objArr: { + type: 'array', + default: [ + { __path: '0', id: 1, value: 't1' }, + { + __path: '1', + id: 2, + value: 't2', + children: [ + { + __path: '1.children.0', + id: 5, + value: 't5', + parentId: 2, + }, + ], + }, + { + __path: '2', + id: 3, + value: 't3', + children: [ + { + __path: '2.children.0', + id: 4, + value: 't4', + parentId: 3, + children: [ + { + __path: '2.children.0.children.0', + id: 6, + value: 't6', + parentId: 4, + }, + { + __path: '2.children.0.children.1', + id: 7, + value: 't7', + parentId: 4, + }, + ], + }, + ], + }, + ], + 'x-component': 'ArrayTable', + 'x-component-props': { + rowKey: 'id', + }, + properties: { + c1: { + type: 'void', + 'x-component': 'ArrayTable.Column', + properties: { + value: { + type: 'string', + 'x-component': 'Value', + }, + }, + }, + }, + }, + }, +}; + +export default () => { + return ( + + + + ); +}; diff --git a/docs/zh-CN/development/guide/ui-schema-designer/designable.md b/docs/zh-CN/development/guide/ui-schema-designer/designable.md new file mode 100644 index 000000000..2aaa16b4a --- /dev/null +++ b/docs/zh-CN/development/guide/ui-schema-designer/designable.md @@ -0,0 +1,353 @@ +# Schema 的设计能力 + +Schema 的设计能力主要体现在 + +- 邻近位置插入,可用于 + - 插入新的 schema 节点 + - 现有 schema 节点的拖拽移动 +- schema 参数修改 + +设计器核心 API 和参数有: + +- 设计器 API:`createDesignable()` & `useDesignable()` +- Schema 参数:`x-designer`,用于适配设计器组件 + +## 设计器 API + +### createDesignable() + +```ts +import { Schema } from '@nocobase/client'; + +const current = new Schema({ + type: 'void', + 'x-component': 'div', +}); + +const { + designable, // 是否可以配置 + remove, + insertAdjacent, // 在某位置插入,四个位置:beforeBegin、afterBegin、beforeEnd、afterEnd + insertBeforeBegin, // 在当前节点的前面插入 + insertAfterBegin, // 在当前节点的第一个子节点前面插入 + insertBeforeEnd, // 在当前节点的最后一个子节点后面 + insertAfterEnd, // 在当前节点的后面 +} = createDesignable({ + current, +}); + +const newSchema = { + type: 'void', + name: 'hello', + 'x-component': 'Hello', +}; + +insertAfterBegin(newSchema); + +console.log(current.toJSON()); +{ + type: 'void', + 'x-component': 'div', + properties: { + hello: { + type: 'void', + 'x-component': 'Hello', + }, + }, +} +``` + +### useDesignable() + +React Hook 场景也可以用 `useDesignable()` 获取当前 schema 组件设计器的 API + +```ts +const { + designable, // 是否可以配置 + remove, + insertAdjacent, // 在某位置插入,四个位置:beforeBegin、afterBegin、beforeEnd、afterEnd + insertBeforeBegin, // 在当前节点的前面插入 + insertAfterBegin, // 在当前节点的第一个子节点前面插入 + insertBeforeEnd, // 在当前节点的最后一个子节点后面 + insertAfterEnd, // 在当前节点的后面 +} = useDesignable(); + +const schema = { + name: uid(), + 'x-component': 'Hello', +}; + +// 在当前节点的前面插入 +insertBeforeBegin(schema); +// 等同于 +insertAdjacent('beforeBegin', schema); + +// 在当前节点的第一个子节点前面插入 +insertAfterBegin(schema); +// 等同于 +insertAdjacent('afterBegin', schema); + +// 在当前节点的最后一个子节点后面 +insertBeforeEnd(schema); +// 等同于 +insertAdjacent('beforeEnd', schema); + +// 在当前节点的后面 +insertAfterEnd(schema); +// 等同于 +insertAdjacent('afterEnd', schema); +``` + +## 邻近位置插入 + +与 DOM 的 [insert adjacent](https://dom.spec.whatwg.org/#insert-adjacent) 概念相似,Schema 也提供了 `insertAdjacent()` 方法用于解决邻近位置的插入问题。 + +四个邻近位置 + +```ts +{ + properties: { + // beforeBegin 在当前节点的前面插入 + node1: { + properties: { + // afterBegin 在当前节点的第一个子节点前面插入 + // ... + // beforeEnd 在当前节点的最后一个子节点后面 + }, + }, + // afterEnd 在当前节点的后面 + }, +} +``` + +和 HTML 标签一样,Schema 组件库的组件也是可以相互组合,通过 insertAdjacent API 按实际需要插入在合理的邻近位置。 + +### 插入新的 schema 节点 + +在 Schema 组件里,可以直接通过 `useDesignable()` 在当前 Schema 的相邻位置插入新节点: + + +示例 + +```tsx +import React from 'react'; +import { SchemaComponentProvider, SchemaComponent, useDesignable } from '@nocobase/client'; +import { observer, Schema, useFieldSchema } from '@formily/react'; +import { Button, Space } from 'antd'; +import { uid } from '@formily/shared'; + +const Hello = observer((props) => { + const { insertAdjacent } = useDesignable(); + const fieldSchema = useFieldSchema(); + return ( +
    +

    {fieldSchema.name}

    + + + + + + +
    {props.children}
    +
    + ); +}); + +const Page = observer((props) => { + return
    {props.children}
    ; +}); + +export default () => { + return ( + + + + ); +} +``` + +### 现有 schema 节点的拖拽移动 + +insertAdjacent 等方法也可用于节点的拖拽移动 + +```tsx +import React from 'react'; +import { uid } from '@formily/shared'; +import { observer, useField, useFieldSchema } from '@formily/react'; +import { DndContext, DragEndEvent, useDraggable, useDroppable } from '@dnd-kit/core'; +import { SchemaComponent, SchemaComponentProvider, createDesignable, useDesignable } from '@nocobase/client'; + +const useDragEnd = () => { + const { refresh } = useDesignable(); + + return ({ active, over }: DragEndEvent) => { + const activeSchema = active?.data?.current?.schema; + const overSchema = over?.data?.current?.schema; + + if (!activeSchema || !overSchema) { + return; + } + + const dn = createDesignable({ + current: overSchema, + }); + + dn.on('insertAdjacent', refresh); + dn.insertBeforeBeginOrAfterEnd(activeSchema); + }; +}; + +const Page = observer((props) => { + return {props.children}; +}); + +function Draggable(props) { + const { attributes, listeners, setNodeRef, transform } = useDraggable({ + id: props.id, + data: props.data, + }); + const style = transform + ? { + transform: `translate3d(${transform.x}px, ${transform.y}px, 0)`, + } + : undefined; + + return ( + + ); +} + +function Droppable(props) { + const { isOver, setNodeRef } = useDroppable({ + id: props.id, + data: props.data, + }); + const style = { + color: isOver ? 'green' : undefined, + }; + + return ( +
    + {props.children} +
    + ); +} + +const Block = observer((props) => { + const field = useField(); + const fieldSchema = useFieldSchema(); + return ( + +
    + Block {fieldSchema.name}{' '} + + Drag + +
    +
    + ); +}); + +export default function App() { + return ( + + + + ); +} +``` + +## `x-designer` 的应用 + +`x-designer` 通常只在 BlockItem、CardItem、FormItem 等包装器组件中使用。 + +```ts +{ + type: 'object', + properties: { + title: { + type: 'string', + title: '标题', + 'x-decorator': 'FormItem', + 'x-component': 'Input', + 'x-designer': 'FormItem.Designer', + }, + status: { + type: 'string', + title: '状态', + 'x-decorator': 'FormItem', + 'x-component': 'Select', + 'x-designer': 'FormItem.Designer', + }, + }, +} +``` + +说明:NocoBase 提供的 Schema 设计器是以工具栏形式直接嵌入于界面,当激活界面配置时(`designable = true`),`x-designer` 组件(设计器工具栏)会显示出来,就可以通过工具栏更新当前 schema 组件了,工具栏提供的设计能力包括: + +- 拖拽移动:DndContext + DragHandler +- 插入新节点:SchemaInitializer +- 参数配置:SchemaSettings diff --git a/docs/zh-CN/development/guide/ui-schema-designer/extending-schema-components.md b/docs/zh-CN/development/guide/ui-schema-designer/extending-schema-components.md new file mode 100644 index 000000000..e8592dd95 --- /dev/null +++ b/docs/zh-CN/development/guide/ui-schema-designer/extending-schema-components.md @@ -0,0 +1,515 @@ +# 扩展 Schema 组件 + +除了原生的 html 标签,开发也可以适配更多的自定义组件,用于丰富 Schema 组件库。 + +扩展组件时,常用的方法: + +- [connect](https://react.formilyjs.org/api/shared/connect) 无侵入接入第三方组件,一般用于适配字段组件,和 [mapProps](https://react.formilyjs.org/api/shared/map-props)[、mapReadPretty](https://react.formilyjs.org/api/shared/map-read-pretty) 搭配使用 +- [observer](https://react.formilyjs.org/api/shared/observer) 当组件内部使用了 observable 对象,而你希望组件响应 observable 对象的变化时 + +## 最简单的扩展 + +直接将现成的 React 组件注册进来。 + +```tsx +/** + * defaultShowCode: true + */ +import React from 'react'; +import { SchemaComponent, SchemaComponentProvider } from '@nocobase/client'; + +const Hello = () =>

    Hello, world!

    ; + +const schema = { + type: 'void', + name: 'hello', + 'x-component': 'Hello', +}; + +export default () => { + return ( + + + + ); +}; +``` + +## 通过 connect 接入第三方组件 + +```tsx +/** + * defaultShowCode: true + */ +import React from 'react'; +import { Input } from 'antd' +import { connect, mapProps, mapReadPretty } from '@formily/react'; +import { SchemaComponent, SchemaComponentProvider } from '@nocobase/client'; + +const ReadPretty = (props) => { + return
    {props.value}
    +}; + +const SingleText = connect( + Input, + mapProps((props, field) => { + return { + ...props, + suffix: '后缀', + } + }), + mapReadPretty(ReadPretty), +); + +const schema = { + type: 'object', + properties: { + t1: { + type: 'string', + default: 'hello t1', + 'x-component': 'SingleText', + }, + t2: { + type: 'string', + default: 'hello t2', + 'x-component': 'SingleText', + 'x-pattern': 'readPretty', + }, + } +}; + +export default () => { + return ( + + + + ); +}; +``` + +## 使用 observer 响应数据 + +```tsx +/** + * defaultShowCode: true + */ +import React from 'react'; +import { Input } from 'antd'; +import { connect, observer, useForm } from '@formily/react'; +import { SchemaComponent, SchemaComponentProvider } from '@nocobase/client'; + +const SingleText = connect(Input); + +const UsedObserver = observer((props) => { + const form = useForm(); + return
    UsedObserver: {form.values.t1}
    +}); + +const NotUsedObserver = (props) => { + const form = useForm(); + return
    NotUsedObserver: {form.values.t1}
    +}; + +const schema = { + type: 'object', + properties: { + t1: { + type: 'string', + 'x-component': 'SingleText', + }, + t2: { + type: 'string', + 'x-component': 'UsedObserver', + }, + t3: { + type: 'string', + 'x-component': 'NotUsedObserver', + }, + } +}; + +const components = { + SingleText, + UsedObserver, + NotUsedObserver +}; + +export default () => { + return ( + + + + ); +}; +``` + +## 嵌套的 Schema + +- `props.children` 嵌套,适用于 void 和 object 类型,例子见 [void 和 object 类型 schema 的嵌套](#void-和-object-类型-schema-的嵌套) +- `` 嵌套,适用于各种场景,例子见 [array 类型 schema 的嵌套](#array-类型-schema-的嵌套) + +注意:仅 void 和 object 类型的 schema 可以与 onlyRenderProperties 使用 + +```tsx | pure + +``` + +### void 和 object 类型 schema 的嵌套 + +直接通过 props.children 就可以适配 properties 节点了 + +```tsx +/** + * defaultShowCode: true + */ +import React from 'react'; +import { SchemaComponent, SchemaComponentProvider } from '@nocobase/client'; + +// Hello 组件适配了 children,可以嵌套 properties 了 +const Hello = (props) =>

    Hello, {props.children}!

    ; +const World = () => world; + +const schema = { + type: 'object', + name: 'hello', + 'x-component': 'Hello', + properties: { + world: { + type: 'string', + 'x-component': 'World', + }, + }, +}; + +export default () => { + return ( + + + + ); +}; +``` + +各类型对比,array 和 string 并不会渲染 World 节点 + +```tsx +import React from 'react'; +import { SchemaComponent, SchemaComponentProvider } from '@nocobase/client'; + +const Hello = (props) =>

    Hello, {props.children}!

    ; +const World = () => world; + +const schema = { + type: 'object', + properties: { + title1: { + type: 'void', + 'x-content': 'Void schema', + }, + void: { + type: 'void', + name: 'hello', + 'x-component': 'Hello', + properties: { + world: { + type: 'void', + 'x-component': 'World', + }, + }, + }, + title2: { + type: 'void', + 'x-content': 'Object schema', + }, + object: { + type: 'object', + name: 'hello', + 'x-component': 'Hello', + properties: { + world: { + type: 'string', + 'x-component': 'World', + }, + }, + }, + title3: { + type: 'void', + 'x-content': 'Array schema', + }, + array: { + type: 'array', + name: 'hello', + 'x-component': 'Hello', + properties: { + world: { + type: 'string', + 'x-component': 'World', + }, + }, + }, + title4: { + type: 'void', + 'x-content': 'String schema', + }, + string: { + type: 'string', + name: 'hello', + 'x-component': 'Hello', + properties: { + world: { + type: 'string', + 'x-component': 'World', + }, + }, + }, + } +}; + +export default () => { + return ( + + + + ); +}; +``` + +### array 类型 schema 的嵌套 + +可以通过 `` 解决自定义嵌套问题 + +#### Array 元素是 string 或 number 时 + +```tsx +import React from 'react'; +import { useFieldSchema, Schema, RecursionField, useField, observer, connect } from '@formily/react'; +import { SchemaComponent, SchemaComponentProvider } from '@nocobase/client'; + +const useValueSchema = () => { + const schema = useFieldSchema(); + return schema.reduceProperties((buf, s) => { + if (s['x-component'] === 'Value') { + return s; + } + return buf; + }); +}; + +const ArrayList = observer((props) => { + const field = useField(); + const schema = useValueSchema(); + return ( + <> + String Array +
      + {field.value?.map((item, index) => { + // 只有一个元素 + return + })} +
    + + ); +}); + +const Value = connect((props) => { + return
  • value: {props.value}
  • +}); + +const schema = { + type: 'object', + properties: { + strArr: { + type: 'array', + default: [1, 2, 3], + 'x-component': 'ArrayList', + properties: { + value: { + type: 'number', + 'x-component': 'Value', + }, + } + }, + } +}; + +export default () => { + return ( + + + + ); +}; +``` + +#### Array 元素是 Object 时 + +```tsx +import React from 'react'; +import { useFieldSchema, Schema, RecursionField, useField, observer, connect } from '@formily/react'; +import { SchemaComponent, SchemaComponentProvider } from '@nocobase/client'; + +const ArrayList = observer((props) => { + const field = useField(); + const schema = useFieldSchema(); + // array 类型的 schema 无法 onlyRenderProperties,需要转化为 object 类型 + const objSchema = new Schema({ + type: 'object', + properties: schema.properties, + }); + return ( +
      + {field.value?.map((item, index) => { + // array 元素是 object + return ( + + ) + })} +
    + ); +}); + +const Value = connect((props) => { + return
  • value: {props.value}
  • +}); + +const schema = { + type: 'object', + properties: { + objArr: { + type: 'array', + default: [ + { value: 't1' }, + { value: 't2' }, + { value: 't3' }, + ], + 'x-component': 'ArrayList', + properties: { + value: { + type: 'number', + 'x-component': 'Value', + }, + } + } + } +}; + +export default () => { + return ( + + + + ); +}; +``` + +#### Tree 结构数据 + +```tsx +import { ArrayField } from '@formily/core'; +import { connect, ISchema, observer, RecursionField, useField, useFieldSchema } from '@formily/react'; +import { SchemaComponent, SchemaComponentProvider } from '@nocobase/client'; +import { Table, TableColumnType } from 'antd'; +import React from 'react'; + +const ArrayTable = observer((props: any) => { + const { rowKey } = props; + const field = useField(); + const schema = useFieldSchema(); + const columnSchemas = schema.reduceProperties((buf, s) => { + if (s['x-component'] === 'ArrayTable.Column') { + buf.push(s); + } + return buf; + }, []); + + const columns = columnSchemas.map((s) => { + return { + render: (value, record) => { + return ; + }, + } as TableColumnType; + }); + + return
    ; +}); + +const Value = connect((props) => { + return
  • value: {props.value}
  • ; +}); + +const schema: ISchema = { + type: 'object', + properties: { + objArr: { + type: 'array', + default: [ + { __path: '0', id: 1, value: 't1' }, + { + __path: '1', + id: 2, + value: 't2', + children: [ + { + __path: '1.children.0', + id: 5, + value: 't5', + parentId: 2, + }, + ], + }, + { + __path: '2', + id: 3, + value: 't3', + children: [ + { + __path: '2.children.0', + id: 4, + value: 't4', + parentId: 3, + children: [ + { + __path: '2.children.0.children.0', + id: 6, + value: 't6', + parentId: 4, + }, + { + __path: '2.children.0.children.1', + id: 7, + value: 't7', + parentId: 4, + }, + ], + }, + ], + }, + ], + 'x-component': 'ArrayTable', + 'x-component-props': { + rowKey: 'id', + }, + properties: { + c1: { + type: 'void', + 'x-component': 'ArrayTable.Column', + properties: { + value: { + type: 'string', + 'x-component': 'Value', + }, + }, + }, + }, + }, + }, +}; + +export default () => { + return ( + + + + ); +}; +``` \ No newline at end of file diff --git a/docs/zh-CN/development/guide/ui-schema-designer/index.md b/docs/zh-CN/development/guide/ui-schema-designer/index.md new file mode 100644 index 000000000..102eb7c9a --- /dev/null +++ b/docs/zh-CN/development/guide/ui-schema-designer/index.md @@ -0,0 +1,3 @@ +# Overview + + \ No newline at end of file diff --git a/docs/zh-CN/development/guide/ui-schema-designer/insert-adjacent.md b/docs/zh-CN/development/guide/ui-schema-designer/insert-adjacent.md new file mode 100644 index 000000000..f315f0c28 --- /dev/null +++ b/docs/zh-CN/development/guide/ui-schema-designer/insert-adjacent.md @@ -0,0 +1,144 @@ +# 邻近位置插入 + +与 DOM 的 [insert adjacent](https://dom.spec.whatwg.org/#insert-adjacent) 概念相似,Schema 也提供了 `dn.insertAdjacent()` 方法用于解决邻近位置的插入问题。 + +## 邻近位置 + +```ts +{ + properties: { + // beforeBegin 在当前节点的前面插入 + node1: { + properties: { + // afterBegin 在当前节点的第一个子节点前面插入 + // ... + // beforeEnd 在当前节点的最后一个子节点后面 + }, + }, + // afterEnd 在当前节点的后面 + }, +} +``` + +## useDesignable() + +获取当前 schema 节点设计器的 API + +```ts +const { + designable, // 是否可以配置 + insertAdjacent, // 在某位置插入,四个位置:beforeBegin、afterBegin、beforeEnd、afterEnd + insertBeforeBegin, // 在当前节点的前面插入 + insertAfterBegin, // 在当前节点的第一个子节点前面插入 + insertBeforeEnd, // 在当前节点的最后一个子节点后面 + insertAfterEnd, // 在当前节点的后面 +} = useDesignable(); + +const schema = { + name: uid(), + 'x-component': 'Hello', +}; + +// 在当前节点的前面插入 +insertBeforeBegin(schema); +// 等同于 +insertAdjacent('beforeBegin', schema); + +// 在当前节点的第一个子节点前面插入 +insertAfterBegin(schema); +// 等同于 +insertAdjacent('afterBegin', schema); + +// 在当前节点的最后一个子节点后面 +insertBeforeEnd(schema); +// 等同于 +insertAdjacent('beforeEnd', schema); + +// 在当前节点的后面 +insertAfterEnd(schema); +// 等同于 +insertAdjacent('afterEnd', schema); +``` + +示例 + +```tsx +import React from 'react'; +import { SchemaComponentProvider, SchemaComponent, useDesignable } from '@nocobase/client'; +import { observer, Schema, useFieldSchema } from '@formily/react'; +import { Button, Space } from 'antd'; +import { uid } from '@formily/shared'; + +const Hello = observer((props) => { + const { insertAdjacent } = useDesignable(); + const fieldSchema = useFieldSchema(); + return ( +
    +

    {fieldSchema.name}

    + + + + + + +
    {props.children}
    +
    + ); +}); + +const Page = observer((props) => { + return
    {props.children}
    ; +}); + +export default () => { + return ( + + + + ); +} +``` diff --git a/docs/zh-CN/development/guide/ui-schema-designer/what-is-ui-schema.md b/docs/zh-CN/development/guide/ui-schema-designer/what-is-ui-schema.md new file mode 100644 index 000000000..32025744e --- /dev/null +++ b/docs/zh-CN/development/guide/ui-schema-designer/what-is-ui-schema.md @@ -0,0 +1,329 @@ +# UI Schema 是什么? + +一种描述前端组件的协议,基于 Formily Schema 2.0,类 JSON Schema 风格。 + +```ts +interface ISchema { + type: 'void' | 'string' | 'number' | 'object' | 'array'; + name?: string; + title?: any; + // 包装器组件 + ['x-decorator']?: string; + // 包装器组件属性 + ['x-decorator-props']?: any; + // 组件 + ['x-component']?: string; + // 组件属性 + ['x-component-props']?: any; + // 组件的子节点,简单使用 + ['x-content']?: any; + // 展示状态,默认为 'visible' + ['x-display']?: 'none' | 'hidden' | 'visible'; + // children 节点 schema + properties?: Record; + + // 以下仅字段组件时使用 + + // 字段联动 + ['x-reactions']?: SchemaReactions; + // 字段 UI 交互模式,默认为 'editable' + ['x-pattern']?: 'editable' | 'disabled' | 'readOnly' | 'readPretty'; + // 字段校验 + ['x-validator']?: FieldValidator; + // 默认数据 + default: ?:any; + + // 设计器相关 + + // 设计器组件(工具栏) + ['x-designer']?: any; + // 初始化器组件(工具栏) + ['x-initializer']?: any; +} +``` + +## 最简单的组件 + +所有的原生 html 标签都可以转为 schema 的写法。如: + +```ts +{ + type: 'void', + 'x-component': 'h1', + 'x-content': 'Hello, world!', +} +``` + +JSX 示例 + +```tsx | pure +

    Hello, world!

    +``` + +## children 组件可以写在 properties 里 + +```ts +{ + type: 'void', + 'x-component': 'div', + 'x-component-props': { className: 'form-item' }, + properties: { + title: { + type: 'string', + 'x-component': 'input', + }, + }, +} +``` + +JSX 等同于 + +```tsx | pure +
    + +
    +``` + +## decorator 的巧妙用法 + +decorator + component 的组合,可以将两个组件放在一个 schema 节点里,降低 schema 结构复杂度,提高组件的复用率。 + +例如表单场景里,可以将 FormItem 组件与任意字段组件组合,在这里 FormItem 就是 Decorator。 + +```ts +{ + type: 'void', + ['x-component']: 'div', + properties: { + title: { + type: 'string', + 'x-decorator': 'FormItem', + 'x-component': 'Input', + }, + content: { + type: 'string', + 'x-decorator': 'FormItem', + 'x-component': 'Input.TextArea', + }, + }, +} +``` + +JSX 等同于 + +```tsx | pure +
    + + + + + + +
    +``` + +也可以提供一个 CardItem 组件,用于包裹所有区块,这样所有区块就都是 Card 包裹的了。 + +```ts +{ + type: 'void', + ['x-component']: 'div', + properties: { + title: { + type: 'string', + 'x-decorator': 'CardItem', + 'x-component': 'Table', + }, + content: { + type: 'string', + 'x-decorator': 'CardItem', + 'x-component': 'Kanban', + }, + }, +} +``` + +JSX 等同于 + +```tsx | pure +
    + +
    + + + + + +``` + +## 组件的展示状态 + +- `'x-display': 'visible'`:显示组件 +- `'x-display': 'hidden'`:隐藏组件,数据不隐藏 +- `'x-display': 'none'`:隐藏组件,数据也隐藏 + +### `'x-display': 'visible'` + +```ts +{ + type: 'void', + 'x-component': 'div', + 'x-component-props': { className: 'form-item' }, + properties: { + title: { + type: 'string', + 'x-component': 'input', + 'x-display': 'visible' + }, + }, +} +``` + +JSX 等同于 + +```tsx | pure +
    + +
    +``` + +### `'x-display': 'hidden'` + +```ts +{ + type: 'void', + 'x-component': 'div', + 'x-component-props': { className: 'form-item' }, + properties: { + title: { + type: 'string', + 'x-component': 'input', + 'x-display': 'hidden' + }, + }, +} +``` + +JSX 等同于 + +```tsx | pure +
    + {/* 此处不输出 input 组件,对应的 name=title 的字段模型还存在 */} +
    +``` + +### `'x-display': 'none'` + +```ts +{ + type: 'void', + 'x-component': 'div', + 'x-component-props': { className: 'form-item' }, + properties: { + title: { + type: 'string', + 'x-component': 'input', + 'x-display': 'none' + }, + }, +} +``` + +JSX 等同于 + +```tsx | pure +
    + {/* 此处不输出 input 组件,对应的 name=title 的字段模型也不存在了 */} +
    +``` + +## 组件的显示模式 + +用于字段组件,有三种显示模式: + +- `'x-pattern': 'editable'` 可编辑 +- `'x-pattern': 'disabled'` 不可编辑 +- `'x-pattern': 'readPretty'` 友好阅读 + +如单行文本 `` 组件,编辑和不可编辑模式为 ``,友好阅读模式为 `
    ` + +### `'x-pattern': 'editable'` + +```ts +const schema = { + name: 'test', + type: 'void', + 'x-component': 'div', + 'x-component-props': { className: 'form-item' }, + properties: { + title: { + type: 'string', + default: 'Hello', + 'x-component': 'SingleText', + 'x-pattern': 'editable' + }, + }, +}; +``` + +JSX 等价于 + +```tsx | pure +
    + +
    +``` + +### `'x-pattern': 'disabled'` + +```ts +const schema = { + name: 'test', + type: 'void', + 'x-component': 'div', + 'x-component-props': { className: 'form-item' }, + properties: { + title: { + type: 'string', + default: 'Hello', + 'x-component': 'SingleText', + 'x-pattern': 'disabled' + }, + }, +}; +``` + +JSX 等价于 + +```tsx | pure +
    + +
    +``` + +### `'x-pattern': 'readPretty'` + +```ts +const schema = { + name: 'test', + type: 'void', + 'x-component': 'div', + 'x-component-props': { className: 'form-item' }, + properties: { + title: { + type: 'string', + default: 'Hello', + 'x-component': 'SingleText', + 'x-pattern': 'readPretty', + }, + }, +}; +``` + +JSX 等价于 + +```tsx | pure +
    +
    Hello
    +
    +``` diff --git a/docs/zh-CN/development/index.md b/docs/zh-CN/development/index.md new file mode 100644 index 000000000..a7e2e46eb --- /dev/null +++ b/docs/zh-CN/development/index.md @@ -0,0 +1,42 @@ +# 概述 + +## 基本概念 + +NocoBase 的核心是一个基于微内核、插件化设计的开发框架。在此基础上天热的支持任意的扩展开发。 + +## 特性 + +## 扩展能力 + +基于 NocoBase 的微内核设计,在很多模块都考虑相应合理的可扩展性,并向外部暴露了一些扩展点。例如: + +* 数据库字段类型 +* 已有数据库表的字段 +* 通用操作和对特定的资源的操作 +* 针对资源和操作的预处理和后处理 +* 字段的前端展示组件 +* 页面的区块类型 +* 用户插件的登入认证方法 +* 工作流插件的节点类型和触发类型 +* …… + +在具体业务中可以根据需求基于以上扩展点进行相应的扩展。 + +## 插件生命周期 + +### 下载 + +### 注册 + +### 安装 + +### 启用 + +### 加载 + +### 停用 + +### 卸载 + +## 学习路线 + diff --git a/docs/zh-CN/development/plugin-development/client/overview.md b/docs/zh-CN/development/plugin-development/client/overview.md deleted file mode 100644 index 4bba659eb..000000000 --- a/docs/zh-CN/development/plugin-development/client/overview.md +++ /dev/null @@ -1 +0,0 @@ -# Overview \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/client/providers/antd.md b/docs/zh-CN/development/plugin-development/client/providers/antd.md deleted file mode 100644 index a80a47303..000000000 --- a/docs/zh-CN/development/plugin-development/client/providers/antd.md +++ /dev/null @@ -1 +0,0 @@ -# Ant Design \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/client/providers/api-client.md b/docs/zh-CN/development/plugin-development/client/providers/api-client.md deleted file mode 100644 index 235b800a3..000000000 --- a/docs/zh-CN/development/plugin-development/client/providers/api-client.md +++ /dev/null @@ -1 +0,0 @@ -# APIClient diff --git a/docs/zh-CN/development/plugin-development/client/providers/china-region.md b/docs/zh-CN/development/plugin-development/client/providers/china-region.md deleted file mode 100644 index 3706bbe44..000000000 --- a/docs/zh-CN/development/plugin-development/client/providers/china-region.md +++ /dev/null @@ -1 +0,0 @@ -# ChianRegion \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/client/providers/route-switch.md b/docs/zh-CN/development/plugin-development/client/providers/route-switch.md deleted file mode 100644 index 3bfc5a330..000000000 --- a/docs/zh-CN/development/plugin-development/client/providers/route-switch.md +++ /dev/null @@ -1 +0,0 @@ -# RouteSwitch \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/client/providers/schema-component.md b/docs/zh-CN/development/plugin-development/client/providers/schema-component.md deleted file mode 100644 index 90d3aa4d8..000000000 --- a/docs/zh-CN/development/plugin-development/client/providers/schema-component.md +++ /dev/null @@ -1 +0,0 @@ -# SchemaComponent diff --git a/docs/zh-CN/development/plugin-development/client/providers/schema-initializer.md b/docs/zh-CN/development/plugin-development/client/providers/schema-initializer.md deleted file mode 100644 index bd2e33b59..000000000 --- a/docs/zh-CN/development/plugin-development/client/providers/schema-initializer.md +++ /dev/null @@ -1 +0,0 @@ -# SchemaInitializer diff --git a/docs/zh-CN/development/plugin-development/index.md b/docs/zh-CN/development/plugin-development/index.md deleted file mode 100644 index b8be99be8..000000000 --- a/docs/zh-CN/development/plugin-development/index.md +++ /dev/null @@ -1 +0,0 @@ -# 快速入门 diff --git a/docs/zh-CN/development/plugin-development/server/cli.md b/docs/zh-CN/development/plugin-development/server/cli.md deleted file mode 100644 index db3cc6737..000000000 --- a/docs/zh-CN/development/plugin-development/server/cli.md +++ /dev/null @@ -1 +0,0 @@ -# CLI \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/server/database.md b/docs/zh-CN/development/plugin-development/server/database.md deleted file mode 100644 index 4a79ce0cd..000000000 --- a/docs/zh-CN/development/plugin-development/server/database.md +++ /dev/null @@ -1 +0,0 @@ -# Database \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/server/events.md b/docs/zh-CN/development/plugin-development/server/events.md deleted file mode 100644 index b649f948c..000000000 --- a/docs/zh-CN/development/plugin-development/server/events.md +++ /dev/null @@ -1 +0,0 @@ -# Event \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/server/middleware.md b/docs/zh-CN/development/plugin-development/server/middleware.md deleted file mode 100644 index c5033ed0e..000000000 --- a/docs/zh-CN/development/plugin-development/server/middleware.md +++ /dev/null @@ -1 +0,0 @@ -# Middleware \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/server/overview.md b/docs/zh-CN/development/plugin-development/server/overview.md deleted file mode 100644 index 4bba659eb..000000000 --- a/docs/zh-CN/development/plugin-development/server/overview.md +++ /dev/null @@ -1 +0,0 @@ -# Overview \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/server/plugin-manager.md b/docs/zh-CN/development/plugin-development/server/plugin-manager.md deleted file mode 100644 index b98d016d5..000000000 --- a/docs/zh-CN/development/plugin-development/server/plugin-manager.md +++ /dev/null @@ -1 +0,0 @@ -# PluginManager \ No newline at end of file diff --git a/docs/zh-CN/development/plugin-development/server/resourcer.md b/docs/zh-CN/development/plugin-development/server/resourcer.md deleted file mode 100644 index 5c0d22865..000000000 --- a/docs/zh-CN/development/plugin-development/server/resourcer.md +++ /dev/null @@ -1 +0,0 @@ -# Resource & Action \ No newline at end of file diff --git a/docs/zh-CN/development/pre-release/build.md b/docs/zh-CN/development/pre-release/build.md new file mode 100644 index 000000000..1294b9a65 --- /dev/null +++ b/docs/zh-CN/development/pre-release/build.md @@ -0,0 +1 @@ +# Building \ No newline at end of file diff --git a/docs/zh-CN/development/pre-release/test.md b/docs/zh-CN/development/pre-release/test.md new file mode 100644 index 000000000..94cfd7d77 --- /dev/null +++ b/docs/zh-CN/development/pre-release/test.md @@ -0,0 +1 @@ +# Testing \ No newline at end of file diff --git a/docs/zh-CN/translations.md b/docs/zh-CN/development/translations.md similarity index 99% rename from docs/zh-CN/translations.md rename to docs/zh-CN/development/translations.md index d86c39a93..bfed7c89d 100644 --- a/docs/zh-CN/translations.md +++ b/docs/zh-CN/development/translations.md @@ -15,7 +15,7 @@ https://github.com/nocobase/nocobase/tree/main/packages/core/client/src/locale 请复制 en_US.ts,命名为想要新增的语言的名字,然后对其中的字符串进行翻译。翻译完成之后,请通过 pull request 提交给 NocoBase,我们将会把它加入语言列表。之后你将在系统配置中看到新增的语言,在这里你可以配置需要显示哪些语言供用户选择。 - + 下面的表格中列出了 Language Culture Name, Locale File Name, Display Name. @@ -156,4 +156,4 @@ https://github.com/nocobase/nocobase/tree/main/packages/core/client/src/locale | ur-PK | ur_PK.ts | Urdu - Pakistan | | Cy-uz-UZ | Cy_uz_UZ.ts | Uzbek (Cyrillic) - Uzbekistan | | Lt-uz-UZ | Lt_uz_UZ.ts | Uzbek (Latin) - Uzbekistan | -| vi-VN | vi_VN.ts | Vietnamese - Vietnam | \ No newline at end of file +| vi-VN | vi_VN.ts | Vietnamese - Vietnam | diff --git a/docs/zh-CN/development/your-fisrt-plugin.md b/docs/zh-CN/development/your-fisrt-plugin.md new file mode 100644 index 000000000..e5f70f515 --- /dev/null +++ b/docs/zh-CN/development/your-fisrt-plugin.md @@ -0,0 +1,96 @@ +# 编写第一个插件 + +在此之前,需要先安装好 NocoBase: + +- create-nocobase-app 安装 +- Git 源码安装 + +相关安装、启动命令如下: + +```bash +cd my-nocobase-app +yarn install +yarn nocobase install +yarn dev +``` + +插件开发和调试,需要在开发环境并通过 `yarn dev` 启动。做好准备之后,我们就可以开始 NocoBase 的插件开发之旅了。 + +## 创建插件 + +首先,你可以通过 CLI 快速的创建一个初始化的插件,命令如下: + +```bash +yarn pm create hello +``` + +新建的插件,会放置在 `packages/plugins/hello` 目录下。 + +## 插件目录结构 + +```ts +|- /hello + |- /src + |- /client + |- /server + |- client.d.ts + |- client.js + |- package.json + |- server.d.ts + |- server.js +``` + +## 编写插件 + +插件的主体文件在 `packages/plugins/hello/src/server/plugin.ts`,修改为: + +```ts +import { InstallOptions, Plugin } from '@nocobase/server'; + +export class Hello extends Plugin { + initialize() { + // TODO + } + + beforeLoad() { + // TODO + } + + async load() { + // TODO + // Visit: http://localhost:13000/api/hello:get + this.app.resource({ + name: 'hello', + actions: { + async get(ctx, next) { + ctx.body = `Hello plugin1!`; + next(); + }, + }, + }); + this.app.acl.allow('hello', 'get'); + } + + async install(options: InstallOptions) { + // TODO + } +} + +export default Hello; +``` + +## 注册插件 + +```bash +yarn pm add hello +``` + +## 激活插件 + +```bash +yarn pm enable hello +``` + +## 体验插件功能 + +访问地址 http://localhost:13000/api/hello:get diff --git a/docs/zh-CN/faq.md b/docs/zh-CN/faq.md deleted file mode 100644 index 80cba6c74..000000000 --- a/docs/zh-CN/faq.md +++ /dev/null @@ -1,2 +0,0 @@ -# 常见问题 - diff --git a/docs/zh-CN/getting-started/deployment.md b/docs/zh-CN/getting-started/deployment.md new file mode 100644 index 000000000..7ae584f53 --- /dev/null +++ b/docs/zh-CN/getting-started/deployment.md @@ -0,0 +1,2 @@ +# 部署 + diff --git a/docs/zh-CN/getting-started/installation/docker-compose.md b/docs/zh-CN/getting-started/installation/docker-compose.md index 7caf32113..8cc6ceb4f 100644 --- a/docs/zh-CN/getting-started/installation/docker-compose.md +++ b/docs/zh-CN/getting-started/installation/docker-compose.md @@ -1,4 +1,11 @@ -# Docker 安装 (👍 推荐) +--- +group: + path: /getting-started/installation/docker-compose + title: Docker 安装 (👍 推荐) + order: 1 +--- + +# Docker 安装 ## 0. 先决条件 diff --git a/docs/zh-CN/getting-started/installation/overview.md b/docs/zh-CN/getting-started/installation/index.md similarity index 76% rename from docs/zh-CN/getting-started/installation/overview.md rename to docs/zh-CN/getting-started/installation/index.md index 6940b17b5..1a5e732a2 100644 --- a/docs/zh-CN/getting-started/installation/overview.md +++ b/docs/zh-CN/getting-started/installation/index.md @@ -4,9 +4,9 @@ NocoBase 支持三种安装方式: -- [Docker 安装(推荐)](./docker-compose.md) -- [create-nocobase-app 安装](./create-nocobase-app.md) -- [Git 源码安装](./git-clone.md) +- [Docker 安装(推荐)](./installation/docker-compose.md) +- [create-nocobase-app 安装](./installation/create-nocobase-app.md) +- [Git 源码安装](./installation/git-clone.md) ## 如何选择 diff --git a/docs/zh-CN/why.md b/docs/zh-CN/introduction/features.md similarity index 86% rename from docs/zh-CN/why.md rename to docs/zh-CN/introduction/features.md index f0e31b0e0..9c7b194ae 100644 --- a/docs/zh-CN/why.md +++ b/docs/zh-CN/introduction/features.md @@ -1,4 +1,4 @@ -# 与众不同之处 +# 功能特色 ## 1. “数据结构”与“使用界面”分离 @@ -6,12 +6,12 @@ NocoBase 采用数据结构与使用界面分离的设计思路,可以为数据表创建任意数量、任意形态的区块(数据视图),每个区块里可以定义不同的样式、文案、操作。这样既兼顾了无代码的简单操作,又具备了原生开发的灵活性。 -![2.collection-block.png](./user-manual/introduction/important-features/2.collection-block.png) +![2.collection-block.png](./features/2.collection-block.png) ## 2. “配置”与“使用”融为一体 NocoBase 可以开发复杂和有特色的业务系统,但这并意味着需要复杂和专业的操作。只需一次点击,就可以在使用界面上显示出配置选项,这意味着具备系统配置权限的管理员可以用所见即所得的操作方式,直接配置用户的使用界面。 -![2.user-root.gif](./user-manual/introduction/important-features/2.user-root.gif) +![2.user-root.gif](./features/2.user-root.gif) ## 3. 功能即插件 diff --git a/docs/zh-CN/user-manual/introduction/important-features/2.collection-block.png b/docs/zh-CN/introduction/features/2.collection-block.png similarity index 100% rename from docs/zh-CN/user-manual/introduction/important-features/2.collection-block.png rename to docs/zh-CN/introduction/features/2.collection-block.png diff --git a/docs/zh-CN/user-manual/introduction/important-features/2.user-root.gif b/docs/zh-CN/introduction/features/2.user-root.gif similarity index 100% rename from docs/zh-CN/user-manual/introduction/important-features/2.user-root.gif rename to docs/zh-CN/introduction/features/2.user-root.gif diff --git a/docs/zh-CN/index.md b/docs/zh-CN/introduction/index.md similarity index 99% rename from docs/zh-CN/index.md rename to docs/zh-CN/introduction/index.md index 1bcd92e73..73a017609 100644 --- a/docs/zh-CN/index.md +++ b/docs/zh-CN/introduction/index.md @@ -1,4 +1,4 @@ -# 介绍 +# 概述 ![](https://www.nocobase.com/images/demo/11.png) diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started.md b/docs/zh-CN/introduction/quickstart.md similarity index 82% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started.md rename to docs/zh-CN/introduction/quickstart.md index b49157e82..559eaff19 100644 --- a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started.md +++ b/docs/zh-CN/introduction/quickstart.md @@ -31,27 +31,27 @@ 接下来,点击“数据表配置”按钮,进入数据表配置界面,创建第一个 Collection `Customers`。 -![1.customers.gif](./5-minutes-to-get-started/1.customers.gif) +![1.customers.gif](./quickstart/1.customers.gif) 然后点击“字段配置”,为`Customers` 添加 name 字段,它是单行文本类型。 -![2.field.gif](./5-minutes-to-get-started/2.field.gif) +![2.field.gif](./quickstart/2.field.gif) 用同样的方法,为`Customers` 添加 Birthday、Gender、Phone,它们分别是日期类型、单项选择类型、手机号码类型。 -![1.fields.jpg](./5-minutes-to-get-started/1.fields.jpg) +![1.fields.jpg](./quickstart/1.fields.jpg) 用同样的方法,创建 Collection `Products`、`Orders`、`Order List` 以及它们的字段。 -![1.collections.jpg](./5-minutes-to-get-started/1.collections.jpg) +![1.collections.jpg](./quickstart/1.collections.jpg) 其中,对于关系字段,我们要选择正确的类型,从而建立数据表之间的关联。我们以`Orders`为例,创建 Customer 字段,选择 **多对一** 关系,关联到`Customers`。 -![1.relation.jpg](./5-minutes-to-get-started/1.relation.jpg) +![1.relation.jpg](./quickstart/1.relation.jpg) 创建关系字段后,我们可以在被关联的 Collection 里看到自动生成的反向关联字段。比如在`Customers`中看到自动生成的 Orders 字段,这样我们在`Customers`的区块里可以调用`Orders`的数据。 -![1.auto.relation.jpg](./5-minutes-to-get-started/1.auto.relation.jpg) +![1.auto.relation.jpg](./quickstart/1.auto.relation.jpg) 将数据表和字段创建完成后,我们开始制作界面。 @@ -61,11 +61,11 @@ 点击界面配置按钮,进入界面配置模式。在界面配置模式下,我们可以添加菜单项,添加页面,在页面内布置区块。 -![1.editor.gif](./5-minutes-to-get-started/1.editor.gif) +![1.editor.gif](./quickstart/1.editor.gif) 点击添加菜单项,添加菜单分组 “Customers” 和 “Orders & Products” ,然后添加子菜单页面 “All Orders” 和 “Products”。 -![1.menu.gif](./5-minutes-to-get-started/1.menu.gif) +![1.menu.gif](./quickstart/1.menu.gif) 添加完菜单和页面之后,我们可以在页面内添加和配置区块了。 @@ -75,16 +75,16 @@ NocoBase 目前支持表格、看板、日历、表单、详情等类型的区 我们在“所有订单”页面,添加一个表格区块,数据源选择 Collection `Orders` ,并为这个表格区块配置需要显示的列。 -![1.block.gif](./5-minutes-to-get-started/1.block.gif) +![1.block.gif](./quickstart/1.block.gif) 给这个表格区块配置操作,包括筛选、添加、删除、查看、编辑。 -![1.action.gif](./5-minutes-to-get-started/1.action.gif) +![1.action.gif](./quickstart/1.action.gif) 为新增、编辑、查看等操作配置表单和详情区块。 -![1.action-block.gif](./5-minutes-to-get-started/1.action-block.gif) +![1.action-block.gif](./quickstart/1.action-block.gif) 然后,用同样的方法,在 Products 和 Customers 页面布置表格区块。完成后,退出界面配置模式,进入使用模式,一个简单的订单管理系统就完成了。 -![1.finished.gif](./5-minutes-to-get-started/1.finished.gif) +![1.finished.gif](./quickstart/1.finished.gif) diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.action-block.gif b/docs/zh-CN/introduction/quickstart/1.action-block.gif similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.action-block.gif rename to docs/zh-CN/introduction/quickstart/1.action-block.gif diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.action.gif b/docs/zh-CN/introduction/quickstart/1.action.gif similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.action.gif rename to docs/zh-CN/introduction/quickstart/1.action.gif diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.auto.relation.jpg b/docs/zh-CN/introduction/quickstart/1.auto.relation.jpg similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.auto.relation.jpg rename to docs/zh-CN/introduction/quickstart/1.auto.relation.jpg diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.block.gif b/docs/zh-CN/introduction/quickstart/1.block.gif similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.block.gif rename to docs/zh-CN/introduction/quickstart/1.block.gif diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.collections.jpg b/docs/zh-CN/introduction/quickstart/1.collections.jpg similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.collections.jpg rename to docs/zh-CN/introduction/quickstart/1.collections.jpg diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.customers.gif b/docs/zh-CN/introduction/quickstart/1.customers.gif similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.customers.gif rename to docs/zh-CN/introduction/quickstart/1.customers.gif diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.customers.gif.gif b/docs/zh-CN/introduction/quickstart/1.customers.gif.gif similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.customers.gif.gif rename to docs/zh-CN/introduction/quickstart/1.customers.gif.gif diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.editor.gif b/docs/zh-CN/introduction/quickstart/1.editor.gif similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.editor.gif rename to docs/zh-CN/introduction/quickstart/1.editor.gif diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.fields.jpg b/docs/zh-CN/introduction/quickstart/1.fields.jpg similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.fields.jpg rename to docs/zh-CN/introduction/quickstart/1.fields.jpg diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.finished.gif b/docs/zh-CN/introduction/quickstart/1.finished.gif similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.finished.gif rename to docs/zh-CN/introduction/quickstart/1.finished.gif diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.menu.gif b/docs/zh-CN/introduction/quickstart/1.menu.gif similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.menu.gif rename to docs/zh-CN/introduction/quickstart/1.menu.gif diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.relation.jpg b/docs/zh-CN/introduction/quickstart/1.relation.jpg similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/1.relation.jpg rename to docs/zh-CN/introduction/quickstart/1.relation.jpg diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/2.field.gif b/docs/zh-CN/introduction/quickstart/2.field.gif similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/2.field.gif rename to docs/zh-CN/introduction/quickstart/2.field.gif diff --git a/docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/2.field.gif.gif b/docs/zh-CN/introduction/quickstart/2.field.gif.gif similarity index 100% rename from docs/zh-CN/user-manual/introduction/5-minutes-to-get-started/2.field.gif.gif rename to docs/zh-CN/introduction/quickstart/2.field.gif.gif diff --git a/docs/zh-CN/roadmap.md b/docs/zh-CN/introduction/roadmap.md similarity index 100% rename from docs/zh-CN/roadmap.md rename to docs/zh-CN/introduction/roadmap.md diff --git a/docs/zh-CN/thanks.md b/docs/zh-CN/introduction/thanks.md similarity index 100% rename from docs/zh-CN/thanks.md rename to docs/zh-CN/introduction/thanks.md diff --git a/docs/zh-CN/user-manual/introduction/why-nocobase.md b/docs/zh-CN/introduction/when.md similarity index 100% rename from docs/zh-CN/user-manual/introduction/why-nocobase.md rename to docs/zh-CN/introduction/when.md diff --git a/docs/zh-CN/user-manual/advanced-guide/actions.md b/docs/zh-CN/manual/actions.md similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/actions.md rename to docs/zh-CN/manual/actions.md diff --git a/docs/zh-CN/user-manual/advanced-guide/blocks.md b/docs/zh-CN/manual/blocks.md similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/blocks.md rename to docs/zh-CN/manual/blocks.md diff --git a/docs/zh-CN/user-manual/advanced-guide/blocks/6.block-add.jpg b/docs/zh-CN/manual/blocks/6.block-add.jpg similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/blocks/6.block-add.jpg rename to docs/zh-CN/manual/blocks/6.block-add.jpg diff --git a/docs/zh-CN/user-manual/advanced-guide/blocks/6.block-content 1.gif b/docs/zh-CN/manual/blocks/6.block-content 1.gif similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/blocks/6.block-content 1.gif rename to docs/zh-CN/manual/blocks/6.block-content 1.gif diff --git a/docs/zh-CN/user-manual/advanced-guide/blocks/6.block-content.gif b/docs/zh-CN/manual/blocks/6.block-content.gif similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/blocks/6.block-content.gif rename to docs/zh-CN/manual/blocks/6.block-content.gif diff --git a/docs/zh-CN/user-manual/advanced-guide/blocks/6.block.jpg b/docs/zh-CN/manual/blocks/6.block.jpg similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/blocks/6.block.jpg rename to docs/zh-CN/manual/blocks/6.block.jpg diff --git a/docs/zh-CN/user-manual/advanced-guide/blocks/6.collection-setting.gif b/docs/zh-CN/manual/blocks/6.collection-setting.gif similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/blocks/6.collection-setting.gif rename to docs/zh-CN/manual/blocks/6.collection-setting.gif diff --git a/docs/zh-CN/user-manual/advanced-guide/collections.md b/docs/zh-CN/manual/collections.md similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/collections.md rename to docs/zh-CN/manual/collections.md diff --git a/docs/zh-CN/user-manual/advanced-guide/collections/4.collections.gif b/docs/zh-CN/manual/collections/4.collections.gif similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/collections/4.collections.gif rename to docs/zh-CN/manual/collections/4.collections.gif diff --git a/docs/zh-CN/user-manual/advanced-guide/file-storages.md b/docs/zh-CN/manual/file-storages.md similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/file-storages.md rename to docs/zh-CN/manual/file-storages.md diff --git a/docs/zh-CN/user-manual/advanced-guide/file-storages/8.storage.gif b/docs/zh-CN/manual/file-storages/8.storage.gif similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/file-storages/8.storage.gif rename to docs/zh-CN/manual/file-storages/8.storage.gif diff --git a/docs/zh-CN/user-manual/advanced-guide/functional-zoning.md b/docs/zh-CN/manual/functional-zoning.md similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/functional-zoning.md rename to docs/zh-CN/manual/functional-zoning.md diff --git a/docs/zh-CN/user-manual/advanced-guide/functional-zoning/3.zone.jpg b/docs/zh-CN/manual/functional-zoning/3.zone.jpg similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/functional-zoning/3.zone.jpg rename to docs/zh-CN/manual/functional-zoning/3.zone.jpg diff --git a/docs/zh-CN/user-manual/advanced-guide/language-settings.md b/docs/zh-CN/manual/language-settings.md similarity index 82% rename from docs/zh-CN/user-manual/advanced-guide/language-settings.md rename to docs/zh-CN/manual/language-settings.md index 555b26cb3..b895be85d 100644 --- a/docs/zh-CN/user-manual/advanced-guide/language-settings.md +++ b/docs/zh-CN/manual/language-settings.md @@ -14,8 +14,8 @@ yarn nocobase install --lang=zh-CN 安装之后,可以在 System settings 里修改 Enabled languages。 -![](../../images/language-settings-1.jpg) +![](../images/language-settings-1.jpg) 如果启用了多个语言,用户可以在个人中心设置自己的语言环境。 -![](../../images/language-settings-2.jpg) +![](../images/language-settings-2.jpg) diff --git a/docs/zh-CN/user-manual/advanced-guide/menus.md b/docs/zh-CN/manual/menus.md similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/menus.md rename to docs/zh-CN/manual/menus.md diff --git a/docs/zh-CN/user-manual/advanced-guide/menus/5.menu-add.jpg b/docs/zh-CN/manual/menus/5.menu-add.jpg similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/menus/5.menu-add.jpg rename to docs/zh-CN/manual/menus/5.menu-add.jpg diff --git a/docs/zh-CN/user-manual/advanced-guide/menus/5.menu-edit.jpg b/docs/zh-CN/manual/menus/5.menu-edit.jpg similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/menus/5.menu-edit.jpg rename to docs/zh-CN/manual/menus/5.menu-edit.jpg diff --git a/docs/zh-CN/user-manual/advanced-guide/plugins.md b/docs/zh-CN/manual/plugins.md similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/plugins.md rename to docs/zh-CN/manual/plugins.md diff --git a/docs/zh-CN/user-manual/advanced-guide/plugins/Workflow 7229c53cffc8429dbf7acb58cac90a76.md b/docs/zh-CN/manual/plugins/Workflow 7229c53cffc8429dbf7acb58cac90a76.md similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/plugins/Workflow 7229c53cffc8429dbf7acb58cac90a76.md rename to docs/zh-CN/manual/plugins/Workflow 7229c53cffc8429dbf7acb58cac90a76.md diff --git a/docs/zh-CN/user-manual/advanced-guide/roles-permissions.md b/docs/zh-CN/manual/roles-permissions.md similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/roles-permissions.md rename to docs/zh-CN/manual/roles-permissions.md diff --git a/docs/zh-CN/user-manual/advanced-guide/system-settings.md b/docs/zh-CN/manual/system-settings.md similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/system-settings.md rename to docs/zh-CN/manual/system-settings.md diff --git a/docs/zh-CN/user-manual/advanced-guide/system-settings/9.system.gif b/docs/zh-CN/manual/system-settings/9.system.gif similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/system-settings/9.system.gif rename to docs/zh-CN/manual/system-settings/9.system.gif diff --git a/docs/zh-CN/user-manual/advanced-guide/tabs.md b/docs/zh-CN/manual/tabs.md similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/tabs.md rename to docs/zh-CN/manual/tabs.md diff --git a/docs/zh-CN/user-manual/advanced-guide/tabs/7.tabs-2.gif b/docs/zh-CN/manual/tabs/7.tabs-2.gif similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/tabs/7.tabs-2.gif rename to docs/zh-CN/manual/tabs/7.tabs-2.gif diff --git a/docs/zh-CN/user-manual/advanced-guide/tabs/7.tabs.gif b/docs/zh-CN/manual/tabs/7.tabs.gif similarity index 100% rename from docs/zh-CN/user-manual/advanced-guide/tabs/7.tabs.gif rename to docs/zh-CN/manual/tabs/7.tabs.gif diff --git a/docs/zh-CN/release-notes.md b/docs/zh-CN/release-notes.md deleted file mode 100644 index 23deb8ce2..000000000 --- a/docs/zh-CN/release-notes.md +++ /dev/null @@ -1,382 +0,0 @@ -# 更新日志 - -## 2022/08/15 ~ v0.7.4-alpha.7 - -### Details - -- fix(collection-manager): update collection without fields - -## 2022/08/12 ~ v0.7.4-alpha.4 - -### New features - -- Field default value - -### Details - -- fix(database): error getting db version number -- fix: record provider required for read pretty -- fix: sync table sort to export (#723) -- feat: full version of the NocoBase dockerfile (#719) -- feat: add examples -- chore: update node ci -- fix(plugin-workflow): fix extend collection (#708) -- fix: DB_TABLE_PREFIX doesn't get applied (#710) -- feat: default value (#679) -- fix: required field delete submit error (#688) (#694) - -## 2022/07/28 ~ v0.7.4-alpha.1 - -### Details - -- fix: append roles to current user (#695) -- fix(client): required for the sub-table field -- fix: date format (#686) -- test(plugin-workflow): skip prompt tests (#692) -- fix: accuracy of percent (#685) -- fix: the database only supports MySQL 8.0.17 and above, SQLite 3.x and PostgreSQL 10+ -- fix(plugin-workflow): adjust await sleep time for test cases (#691) -- feat(plugin-workflow): add assignees config for prompt instruction (#690) -- fix: role export button display (#616) (#666) -- fix: uid validate (#681) -- feat(client): tab icon -- fix(plugin-error-handler): no error message -- fix(client): fieldNames of RecordPicker -- fix: hide password -- refactor: replace react-drag-listview with @dnd-kit/sortable (#660) -- refactor(plugin-users): improve extendibility of middlewares (#677) -- feat: o2m delete not refresh (#646) -- feat: kanban add description (#659) -- fix: field loss enum (#667) -- feat: add ui editor hot key Ctrl+Shift+U (#675) -- fix: calendar change field error (#626) (#671) -- chore: fix eslint not work (#670) -- feat: number precision (#661) -- feat: nginx config (#664) -- feat: form item designer form switch issue (#656) -- fix: wrong operator - -## 2022/07/20 ~ v0.7.3-alpha.1 - -### New features - -- Form validation -- Actions: Print, Refresh - -### Details - -- fix(client): hide modal header -- feat: customizable jwt expiration date -- feat: print action (#652) -- feat: restore action-hooks (#655) -- feat: collections & fields pagination issue (#653) -- fix(core): change proxied agent methods to native (#654) -- feat: remove table field details actions (#638) -- fix: link to default value (#641) -- fix(client): build error -- fix: localStorage is not defined -- feat: support for displaying relational table fields in details or form blocks (#635) -- fix: record picker cannot select from different pages (#623) -- feat(client): plugin toolbar icons and translations -- fix: dragging an element to the left, right, or bottom would cause the element to disappear (#620) -- feat: table action add reload button (#630) -- feat: improve language settings (#627) -- feat: field assignment for custom actions supports string variables (#597) -- fix(client): blocks are deleted when they are dragged below the current block -- fix: skip recursive remove on grid component (#621) -- feat: fix time and collection pagination (#618) -- feat: recordblockinitializers fields pick (#558) -- fix: incorrectly :active background (#607) -- fix: obo table selector (#613) -- feat: form validator (#569) -- fix: table selector (#612) - -## 2022/07/07 ~ v0.7.2-alpha.2 - -- fix(g2plot): import all plots -- fix: field permissions cannot be saved (#605) -- fix(plugin-workflow): fix revision bug (#603) -- fix(plugin-workflow): fix select value (#600) -- fix(plugin-workflow): fix CollectionFieldSelect component (#598) -- feat(plugin-workflow): add association select in calculation (#584) -- feat: function for chart data request -- fix(cli): remove process.env.NODE_OPTIONS - -## 2022/07/05 ~ v0.7.2-alpha.1 - -### New features - -- Fields: 整数字段 -- Blocks: 支持在区块里显示关系表的字段 -- Plugins: 筛选条件支持变量 - -### Breaking changes - -- 新版本关系默认不建立外键约束,旧版本升级后会删除掉所有已创建的外键约束 -- 之前使用 yarn create 安装的 NocoBase 应用,需要重新 yarn create,再执行 `yarn nocobase upgrade --raw` - -### Details - -- fix: drop all foreign keys (#576) -- fix(plugin-workflow): fix collection trigger config (#575) -- fix: improve filter item styling -- fix(collection-manager): missing collection manager context -- feat: filter with variable (#574) -- feat(cli): check database version before installation (#572) -- fix(client): comment out useless code -- fix(cli): app start before sync and upgrade -- feat(client): integer field -- fix(database): index invalid (#564) -- fix: export association table data (#561) -- fix(client): maximum call stack size exceeded (#554) -- refactor(plugin-workflow): move client files into plugin (#556) -- fix(database): constraints default to false (#550) -- fix(client): cannot read properties of undefined (reading 'split') -- fix(workflow): merge workflow providers -- fix(workflow): load workflow after application initialization -- fix(plugin-workflow): fix select width (#552) -- feat: compatible with old kanban (#553) -- fix(client): consider explicitly re-exporting to resolve the ambiguity -- feat: display association fields (#512) -- Fix(plugin workflow) (#549) -- fix: update mysql port (#548) -- fix: export of relation blocks (#546) -- fix(plugin-workflow): clear options when change collection (#547) -- feat(plugin-workflow): add race mode (#542) -- fix(client): change toArr to _.castArray in select component (#543) - -## 2022/06/26 ~ v0.7.1-alpha.7 - -### New features - -- Fields: 公式、表关系(o2o, o2m, m2o, m2m) -- Blocks: 图表(g2plot) -- Plugins: 操作记录, 导出, 工作流(定时任务) - -### Breaking changes - -- 百分比字段存储原始数值。 比如,旧版本将 1% 存储为 1,新版本将 1% 存储为 0.01 -- 去掉子表格字段,并使用一对多字段代替 -- 如果之前是使用 yarn create 安装的 NocoBase 应用,需要重新 yarn create,再执行 yarn nocobase upgrade - -### Details - -- fix(cli): upgrade from docker -- chore(create-nocobase-app): fix some bugs (#538) -- feat: relationship fields are loaded on demand -- fix: destroy collection fields (#536) -- feat(plugin-workflow): add delay node type (#532) -- refactor: client application (#533) -- fix: missing transaction (#531) -- fix: add ellipsis property to record picker (#527) -- fix: remove pattern without form item (#528) -- fix(client): update only fields in the form -- fix(client): remove z-index -- fix(plugin-workflow): set current when update (#526) -- fix(client): non-empty judgment -- fix: order nulls last (#519) -- fix(client): close the pop-up after request -- fix: action loading, refresh context, form submit and validate (#523) -- fix: field pattern (#520) -- fix(plugin-workflow): fix searchable select min-width (#524) -- fix: template with fields only (#517) -- fix(plugin-workflow): fix update workflow current property (#521) -- feat: improve chart component -- refactor(plugin-workflow): abstract to classes (#515) -- feat: column sortable and form item pattern (#518) -- feat(client): display option value -- feat(client): hide drawer header -- fix(audit-logs): operator does not exist: character varying = integer -- fix(custom-request): support string/json templates (#514) -- fix(cli): missing await -- feat: add block title (#513) -- fix: remove collections & fields from db (#511) -- fix(cli): upgrade error in node v14 -- feat: improve migrations (#510) -- fix(client): improve datepicker component, date with time zone, gmt support -- fix: datepicker with timezone -- fix(client): consolidate usage of date/time as UTC in transfering (#509) -- fix: formula bug -- fix: default exportable fields (#506) -- fix(audit-logs): sort by createdAt -- fix(plugin-export): allow to configure in acl -- fix: sign in/sign up with enter key -- fix(client): percent precision -- feat: association field block (#493) -- feat: plugin export (#479) -- fix: create or delete collection error (#501) -- feat: update collections & fields (#500) -- fix: rollback when field creation fails (#498) -- fix(client): set `dropdownMatchSelectWidth` to false globally (#497) -- fix(client): no-key warning in user menu items (#496) -- Feat(plugin workflow): cron field for schedule trigger configuration (#495) -- feat: audit logs (#494) -- fix(client): language settings -- feat(client): improve locale -- refactor(plugin-workflow): add revision column to execution (#491) -- fix(plugin-multi-app-manager): fix pg cannot create database block tests -- refactor(database): hook proxy (#402) -- feat: chart blocks (#484) -- refactor(plugin workflow): support number in repeat config for schedule -- chore(debug): add debug config (#475) -- fix: has one bug -- feat: relationships (#473) -- fix(plugin-workflow): fix collection trigger transaction (#474) -- fix(plugin-workflow): temporary solution for collection trigger conditions -- fix: markdown component (#469) -- fix: formula field and percent field (#467) -- fix(plugin-workflow): fix update workflow action (#464) -- fix(acl): skip when field does not exist -- fix: update formula field and percent field (#461) -- fix(client): export useSignin and useSignup -- fix(ci): node_version = 14 -- fix(cli): yarn install --production error -- fix(client): build error -- feat: add formula field type (#457) -- fix: the details of the associated data in the subtable are not displayed -- fix(plugin-workflow): fix languages (#451) -- fix: afterSync hook not triggered (#450) - -## 2022/06/01 ~ v0.7.0-alpha.83 - -- fix: default value of time zone -- fix(database): add timezone support -- docs(various): Improve readability (#447) -- fix(client): datetime with timezone -- feat(plugin-file-manager): record the creator of the attachment -- feat: custom request (#439) -- feat(plugin workflow): schedule trigger (#438) -- feat(database): db migrator (#432) -- fix(client): select component cannot be opened in sub-table block (#431) -- fix: error message "error:0308010C:digital envelope routines::unsupported -- docs(github): change to markdown format (#430) -- fix(cli): typo (#429) - -### New Features - -- Core: db migrator - -## 2022/05/26 ~ v0.7.0-alpha.82 - -- feat(client,sdk): improve api client - -### Breaking changes - -There are major changes to the `APIClient` API, see details [JavaScript SDK](./development/http-api/javascript-sdk.md) - -## 2022/05/25 ~ v0.7.0-alpha.81 - -- feat: add create-plugin command (#423) -- fix: "typescript": "4.5.5" -- docs: update documentation -- fix(client): filter menu item schema by permissions -- fix(database): cannot read properties of null (reading 'substring') -- fix(client): add description -- fix(client): clone schema before insert -- feat(client): add a description to the junction collection field -- fix(devtools): unexpected token '.' - -## 2022/05/24 ~ v0.7.0-alpha.78 - -- fix(client): add RemoteDocumentTitleProvider -- fix(client): incomplete calendar events -- fix(plugin-users): add translations (#416) - -## 2022/05/23 ~ v0.7.0-alpha.62 - -- feat(docs): add alert message -- fix(create-nocobase-app): storage path error -- fix(client): improve translation -- fix(cli): nocobase test command --db-clean option is invalid -- refactor(plugin-workflow): change column type of executed from boolean to integer (#411) - -## 2022/05/22 ~ v0.7.0-alpha.58 - -- fix: 204 no content response (#378) -- feat: destroy association field after target collection destroy (#376) -- fix(type): use sequelize native Transactionable instead of TransactionAble (#410) -- fix(plugin-workflow): remove previous listeners when collection changed in config (#409) -- fix(plugin-acl): missing pagination parameters (#394) -- feat(client): add custom action (#396) -- refactor(plugin-workflow): multiple instances and event management (fix #384) (#408) -- feat(cli): --db-sync options -- fix(client): pagination dropdown menu is blocked (#398) -- feat: display version number (#386) -- fix: missing isTruly/isFalsy filter operators (#390) -- fix(client): reset page number to first page (#399) - -## 2022/05/19 ~ v0.7.0-alpha.57 - -### 新功能 - -- 打包工具 `@nocobase/build` -- cli 工具 `@nocobase/cli` -- devtools 包 `@nocobase/devtools` -- JavaScript 版本的 SDK `@nocobase/sdk` -- 全新的文档(v0.7) - -### 问题修复和改进 - -- 将 NocoBase 无代码平台插件放到一起 `@nocobase/preset-nocobase` -- 改进 create 脚手架 `create-nocobase-app` -- 官网文档主题 `dumi-theme-nocobase` - -### Breaking changes - -📢 在此之前创建的项目需要重新创建。 - -## 2022/05/14 ~ v0.7.0-alpha.34 - -- feat: add plugins:getPinned action api -- Fix(plugin workflow): fix cannot get job result properties (#382) -- feat: exist on server start throw error (#374) -- chore: application options (#375) -- fix: not in operator with null value record (#377) - -## 2022/05/13 ~ v0.7.0-alpha.33 - -- fix: link-to field data scope error (#1337) -- feat(plugin workflow): revisions (#379) -- fix(database): fix option-parser include list index (#371) -- fix(plugin-workflow): fix duplicated description in fields values (#368) -- fix(database): fix type and transaction in repository (#366) -- fix(plugin workflow): fix transaction of execution (#364) - -## 2022/05/05 ~ v0.7.0-alpha.30 - -- fix(client): upgrade formily packages -- fix(client): setFormValueChanged must be defined - -## 2022/05/01 ~ v0.7.0-alpha.27 - -- fix: use wrapper when greater than one column -- fix: props for CreateFormBlockInitializers -- fix: add schema initializer icon -- fix: plugin workflow (#349) -- fix: db:sync not working (#348) -- fix(plugin-workflow): fix trigger bind logic to avoid duplication (#347) -- Fix(plugin workflow) (#346) -- fix: action open mode -- Fix: menu url style (#344) -- feat: action loading -- fix: compile the label field -- fix: invalid drag and drop sort - -## 2022/04/25 ~ v0.7.0-alpha.16 - -- fix: cannot find module mkdirp (#330) -- Fix(plugin workflow): UX issues (#329) -- fix(plugin-file-manager): test failed -- fix(app-server): dist options - -## 2022/04/25 ~ v0.7.0-alpha.0 - -- 内测版 - -## 2021/10/07 ~ v0.5.0 - -- 第二个预览版 - -## 2021/04/07 ~ v0.4.0 - -- 第一个预览版 diff --git a/docs/zh-CN/user-manual/introduction/important-features.md b/docs/zh-CN/user-manual/introduction/important-features.md deleted file mode 100644 index 77a203858..000000000 --- a/docs/zh-CN/user-manual/introduction/important-features.md +++ /dev/null @@ -1,19 +0,0 @@ -# NocoBase 特色 - -## 1. “数据结构”与“使用界面”分离 - -多数以表单、表格或者流程驱动的无代码产品都是在使用界面上直接创建数据结构,比如 Airtable 在表格里新增一列就是新增一个字段。这样的好处是使用简单,不足是功能和灵活性受限,难以满足较复杂场景的需求。 - -NocoBase 采用数据结构与使用界面分离的设计思路,可以为数据表创建任意数量、任意形态的区块(数据视图),每个区块里可以定义不同的样式、文案、操作。这样既兼顾了无代码的简单操作,又具备了原生开发的灵活性。 - -![2.collection-block.png](./important-features/2.collection-block.png) - -## 2. “系统配置”与“系统使用”分离 - -NocoBase 用来开发相对复杂的业务系统。在这些场景中,我们希望系统开发者与系统使用者是不同的角色。使用者看到的是一个成熟的、经过精心设计的系统,就像原生开发出来的产品一样,而不是僵化的、可以自由拖拽的、随时修改的系统;而开发者则可以采用所见即所得的方式快速开发系统。 - -![2.user-root.gif](./important-features/2.user-root.gif) - -## 3. 功能即插件 - -NocoBase 采用插件化架构,所有新功能都可以通过开发和安装插件来实现。未来我们将搭建插件市场,扩展功能就像在手机上安装 APP 一样简单。 \ No newline at end of file diff --git a/docs/zh-CN/who.md b/docs/zh-CN/who.md deleted file mode 100644 index 27b169efd..000000000 --- a/docs/zh-CN/who.md +++ /dev/null @@ -1,10 +0,0 @@ -# 适用场景 - -如果你有以下需求,NocoBase 就是为你设计的: - -- 开发组织内部管理系统 -- 通过无代码开发,满足大部分业务需求 -- 无代码开发在操作上足够简单,满足非开发人员;在功能上足够灵活,接近原生开发 -- 可以非常方便的进行扩展开发 -- 私有部署,掌控全部代码和数据 -- 可免费使用,也可以付费获得更多技术支持 diff --git a/packages/core/database/src/database.ts b/packages/core/database/src/database.ts index bccbdb53c..2d30d4b2d 100644 --- a/packages/core/database/src/database.ts +++ b/packages/core/database/src/database.ts @@ -1,4 +1,4 @@ -import { applyMixins, AsyncEmitter } from '@nocobase/utils'; +import { applyMixins, AsyncEmitter, requireModule } from '@nocobase/utils'; import merge from 'deepmerge'; import { EventEmitter } from 'events'; import glob from 'glob'; @@ -222,7 +222,7 @@ export class Database extends EventEmitter implements AsyncEmitter { filename = filename.substring(0, filename.lastIndexOf('.')) || filename; this.migrations.add({ name: namespace ? `${namespace}/${filename}` : filename, - migration: this.requireModule(file), + migration: requireModule(file), context, }); } @@ -232,16 +232,6 @@ export class Database extends EventEmitter implements AsyncEmitter { return dialect.includes(this.sequelize.getDialect()); } - private requireModule(module: any) { - if (typeof module === 'string') { - module = require(module); - } - if (typeof module !== 'object') { - return module; - } - return module.__esModule ? module.default : module; - } - /** * Add collection to database * @param options diff --git a/packages/core/dumi-theme-nocobase/src/components/SlugList.less b/packages/core/dumi-theme-nocobase/src/components/SlugList.less index 3bcebf847..159c4664b 100755 --- a/packages/core/dumi-theme-nocobase/src/components/SlugList.less +++ b/packages/core/dumi-theme-nocobase/src/components/SlugList.less @@ -12,7 +12,10 @@ ul[role='slug-list'] { } &[data-depth='3'] { - padding-left: 12px; + padding-left: 24px; + } + &[data-depth='4'] { + padding-left: 48px; } } } diff --git a/packages/core/dumi-theme-nocobase/src/components/SlugList.tsx b/packages/core/dumi-theme-nocobase/src/components/SlugList.tsx index 6323b1cf9..bc23c90fa 100755 --- a/packages/core/dumi-theme-nocobase/src/components/SlugList.tsx +++ b/packages/core/dumi-theme-nocobase/src/components/SlugList.tsx @@ -1,12 +1,12 @@ +import { AnchorLink } from 'dumi/theme'; import type { FC } from 'react'; import React from 'react'; -import { AnchorLink } from 'dumi/theme'; import './SlugList.less'; const SlugsList: FC<{ slugs: any; className?: string }> = ({ slugs, ...props }) => (
      {slugs - .filter(({ depth }) => depth > 1 && depth < 4) + .filter(({ depth }) => depth > 1 && depth < 5) .map(slug => (
    • diff --git a/packages/core/dumi-theme-nocobase/src/style/layout.less b/packages/core/dumi-theme-nocobase/src/style/layout.less index f145eecf2..e5ee57097 100755 --- a/packages/core/dumi-theme-nocobase/src/style/layout.less +++ b/packages/core/dumi-theme-nocobase/src/style/layout.less @@ -1,7 +1,7 @@ @import './markdown.less'; @import './variables.less'; -@s-toc-width: 136px; +@s-toc-width: 276px; body { margin: 0; diff --git a/packages/core/server/src/application.ts b/packages/core/server/src/application.ts index 5292b6018..d66adc7a7 100644 --- a/packages/core/server/src/application.ts +++ b/packages/core/server/src/application.ts @@ -19,7 +19,6 @@ import { InstallOptions, PluginManager } from './plugin-manager'; const packageJson = require('../package.json'); export type PluginConfiguration = string | [string, any]; -export type PluginsConfigurations = Array; export interface ResourcerOptions { prefix?: string; @@ -33,7 +32,7 @@ export interface ApplicationOptions { dataWrapping?: boolean; registerActions?: boolean; i18n?: i18n | InitOptions; - plugins?: PluginsConfigurations; + plugins?: PluginConfiguration[]; } export interface DefaultState { @@ -240,7 +239,7 @@ export class Application exten return this.pm.add(pluginClass, options); } - loadPluginConfig(pluginsConfigurations: PluginsConfigurations) { + loadPluginConfig(pluginsConfigurations: PluginConfiguration[]) { for (let pluginConfiguration of pluginsConfigurations) { if (typeof pluginConfiguration == 'string') { pluginConfiguration = [pluginConfiguration, {}];