2023-06-20 03:48:02 +00:00
|
|
|
import { getUmiConfig } from '@nocobase/devtools/umiConfig';
|
2023-11-06 03:50:13 +00:00
|
|
|
import { defineConfig } from 'dumi';
|
|
|
|
import { defineThemeConfig } from 'dumi-theme-nocobase';
|
2023-06-20 03:48:02 +00:00
|
|
|
|
|
|
|
const umiConfig = getUmiConfig();
|
2023-12-04 06:56:46 +00:00
|
|
|
process.env.DOC_LANG = process.env.DOC_LANG || 'zh-CN';
|
|
|
|
const lang = process.env.DOC_LANG;
|
|
|
|
|
|
|
|
console.log('process.env.DOC_LANG', lang);
|
2023-06-20 03:48:02 +00:00
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
hash: true,
|
|
|
|
alias: {
|
|
|
|
...umiConfig.alias,
|
|
|
|
},
|
2023-12-04 06:56:46 +00:00
|
|
|
// ssr: {},
|
|
|
|
// exportStatic: {
|
|
|
|
// ignorePreRenderError: true
|
|
|
|
// },
|
|
|
|
cacheDirectoryPath: `node_modules/.docs-client-${lang}-cache`,
|
|
|
|
outputPath: `./dist/${lang}`,
|
2023-06-20 03:48:02 +00:00
|
|
|
resolve: {
|
2023-12-04 06:56:46 +00:00
|
|
|
docDirs: [`./docs/${lang}`]
|
2023-06-20 03:48:02 +00:00
|
|
|
},
|
2023-12-04 06:56:46 +00:00
|
|
|
locales: [
|
|
|
|
{ id: 'en-US', name: 'English' },
|
|
|
|
{ id: 'zh-CN', name: '中文' },
|
|
|
|
],
|
2023-06-20 03:48:02 +00:00
|
|
|
themeConfig: defineThemeConfig({
|
|
|
|
title: 'NocoBase',
|
|
|
|
logo: 'https://www.nocobase.com/images/logo.png',
|
|
|
|
github: 'https://github.com/nocobase/nocobase',
|
|
|
|
footer: 'nocobase | Copyright © 2022',
|
2023-11-06 03:50:13 +00:00
|
|
|
// sidebarGroupModePath: ['/components'],
|
2023-06-20 03:48:02 +00:00
|
|
|
nav: [
|
|
|
|
{
|
2023-11-06 03:50:13 +00:00
|
|
|
title: 'API',
|
2023-12-04 06:56:46 +00:00
|
|
|
link: '/core/application/application',
|
2023-06-20 03:48:02 +00:00
|
|
|
},
|
2023-12-04 06:56:46 +00:00
|
|
|
// {
|
|
|
|
// title: 'UI Schema',
|
|
|
|
// link: '/ui-schema',
|
|
|
|
// },
|
2023-11-06 03:50:13 +00:00
|
|
|
],
|
|
|
|
sidebarEnhance: {
|
2023-12-04 06:56:46 +00:00
|
|
|
'/core': [
|
2023-11-06 03:50:13 +00:00
|
|
|
{
|
2023-12-04 06:56:46 +00:00
|
|
|
title: 'Application',
|
2023-11-06 03:50:13 +00:00
|
|
|
type: 'group',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
title: 'Application',
|
2023-12-04 06:56:46 +00:00
|
|
|
link: '/core/application/application',
|
2023-11-06 03:50:13 +00:00
|
|
|
},
|
|
|
|
{
|
2023-12-04 06:56:46 +00:00
|
|
|
title: 'Plugin',
|
|
|
|
link: '/core/application/plugin',
|
2023-11-06 03:50:13 +00:00
|
|
|
},
|
|
|
|
{
|
2023-12-04 06:56:46 +00:00
|
|
|
title: 'PluginManager',
|
|
|
|
link: '/core/application/plugin-manager',
|
2023-11-06 03:50:13 +00:00
|
|
|
},
|
|
|
|
{
|
2023-12-04 06:56:46 +00:00
|
|
|
title: 'RouterManager',
|
|
|
|
link: '/core/application/router-manager',
|
2023-11-06 03:50:13 +00:00
|
|
|
},
|
|
|
|
{
|
2023-12-04 06:56:46 +00:00
|
|
|
title: 'PluginSettingsManager',
|
|
|
|
link: '/core/application/plugin-settings-manager',
|
2023-11-06 03:50:13 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2023-12-04 06:56:46 +00:00
|
|
|
title: 'UI Schema',
|
2023-11-06 03:50:13 +00:00
|
|
|
type: 'group',
|
|
|
|
children: [
|
|
|
|
{
|
2023-12-04 06:56:46 +00:00
|
|
|
title: 'SchemaComponent',
|
|
|
|
link: '/core/ui-schema/schema-component',
|
2023-11-06 03:50:13 +00:00
|
|
|
},
|
|
|
|
{
|
2023-12-04 06:56:46 +00:00
|
|
|
title: 'Designable',
|
|
|
|
link: '/core/ui-schema/designable',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'SchemaInitializer',
|
|
|
|
link: '/core/ui-schema/schema-initializer',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'SchemaInitializerManager',
|
|
|
|
link: '/core/ui-schema/schema-initializer-manager',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'SchemaSettings',
|
|
|
|
link: '/core/ui-schema/schema-settings',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'SchemaSettingsManager',
|
|
|
|
link: '/core/ui-schema/schema-settings-manager',
|
2023-11-06 03:50:13 +00:00
|
|
|
},
|
|
|
|
{
|
2023-12-04 06:56:46 +00:00
|
|
|
title: 'SchemaToolbar',
|
|
|
|
link: '/core/ui-schema/schema-toolbar',
|
2023-11-06 03:50:13 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
2023-12-04 06:56:46 +00:00
|
|
|
// '/ui-schema': [
|
|
|
|
// {
|
|
|
|
// title: 'Overview',
|
|
|
|
// link: '/ui-schema',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Globals',
|
|
|
|
// type: 'group',
|
|
|
|
// children: [
|
|
|
|
// {
|
|
|
|
// title: 'Menu',
|
|
|
|
// link: '/ui-schema/globals/menu',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Page',
|
|
|
|
// link: '/ui-schema/globals/page',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Tabs',
|
|
|
|
// link: '/ui-schema/globals/tabs',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Blocks',
|
|
|
|
// type: 'group',
|
|
|
|
// children: [
|
|
|
|
// {
|
|
|
|
// title: 'Overview',
|
|
|
|
// link: '/ui-schema/blocks',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Data blocks',
|
|
|
|
// children: [
|
|
|
|
// {
|
|
|
|
// title: 'Overview',
|
|
|
|
// link: '/ui-schema/blocks/data',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Table',
|
|
|
|
// link: '/ui-schema/blocks/data/table',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Form',
|
|
|
|
// link: '/ui-schema/blocks/data/form',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Form(Read pretty)',
|
|
|
|
// link: '/ui-schema/blocks/data/form-read-pretty',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Details',
|
|
|
|
// link: '/ui-schema/blocks/data/details',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'List',
|
|
|
|
// link: '/ui-schema/blocks/data/list',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Grid Card',
|
|
|
|
// link: '/ui-schema/blocks/data/grid-card',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Calendar',
|
|
|
|
// link: '/ui-schema/blocks/data/calendar',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Kanban',
|
|
|
|
// link: '/ui-schema/blocks/data/kanban',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Map',
|
|
|
|
// link: '/ui-schema/blocks/data/map',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Gantt',
|
|
|
|
// link: '/ui-schema/blocks/data/gantt',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Charts',
|
|
|
|
// link: '/ui-schema/blocks/data/charts',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Filter blocks',
|
|
|
|
// children: [
|
|
|
|
// {
|
|
|
|
// title: 'Collapse',
|
|
|
|
// link: '/ui-schema/blocks/filter/collapse',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Form',
|
|
|
|
// link: '/ui-schema/blocks/filter/form',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Other blocks',
|
|
|
|
// children: [
|
|
|
|
// {
|
|
|
|
// title: 'iframe',
|
|
|
|
// link: '/ui-schema/blocks/others/iframe',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Markdown',
|
|
|
|
// link: '/ui-schema/blocks/others/markdown',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Workflow todos',
|
|
|
|
// link: '/ui-schema/blocks/others/workflow-todo',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Fields',
|
|
|
|
// type: 'group',
|
|
|
|
// children: [
|
|
|
|
// {
|
|
|
|
// title: 'Overview',
|
|
|
|
// link: '/ui-schema/fields',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'FormItem',
|
|
|
|
// link: '/ui-schema/fields/form-item',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'TableColumn',
|
|
|
|
// link: '/ui-schema/fields/table-column',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Association',
|
|
|
|
// children: [
|
|
|
|
// {
|
|
|
|
// title: 'Title',
|
|
|
|
// link: '/ui-schema/fields/association-components/title',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Tag',
|
|
|
|
// link: '/ui-schema/fields/association-components/tag',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Select',
|
|
|
|
// link: '/ui-schema/fields/association-components/select',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'RecordPicker',
|
|
|
|
// link: '/ui-schema/fields/association-components/record-picker',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Cascader',
|
|
|
|
// link: '/ui-schema/fields/association-components/cascader-select',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Sub-form',
|
|
|
|
// link: '/ui-schema/fields/association-components/sub-form',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Sub-form(Popover)',
|
|
|
|
// link: '/ui-schema/fields/association-components/sub-form-popover',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Sub-details',
|
|
|
|
// link: '/ui-schema/fields/association-components/sub-details',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Sub-table',
|
|
|
|
// link: '/ui-schema/fields/association-components/cascader-select',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'File manager',
|
|
|
|
// link: '/ui-schema/fields/association-components/file-manager',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Actions',
|
|
|
|
// type: 'group',
|
|
|
|
// children: [
|
|
|
|
// {
|
|
|
|
// title: 'Overview',
|
|
|
|
// link: '/ui-schema/actions',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Add new',
|
|
|
|
// link: '/ui-schema/actions/add-new',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'View',
|
|
|
|
// link: '/ui-schema/actions/view',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Edit',
|
|
|
|
// link: '/ui-schema/actions/edit',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Delete',
|
|
|
|
// link: '/ui-schema/actions/delete',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Submit',
|
|
|
|
// link: '/ui-schema/actions/submit',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Filter',
|
|
|
|
// link: '/ui-schema/actions/filter',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Refresh',
|
|
|
|
// link: '/ui-schema/actions/refresh',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Print',
|
|
|
|
// link: '/ui-schema/actions/print',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Duplicate',
|
|
|
|
// link: '/ui-schema/actions/duplicate',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Export',
|
|
|
|
// link: '/ui-schema/actions/export',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Import',
|
|
|
|
// link: '/ui-schema/actions/import',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Bulk update',
|
|
|
|
// link: '/ui-schema/actions/bulk-update',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Bulk edit',
|
|
|
|
// link: '/ui-schema/actions/bulk-edit',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Add record(任意表)',
|
|
|
|
// link: '/ui-schema/actions/add-record',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Update record',
|
|
|
|
// link: '/ui-schema/actions/update-record',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Save record',
|
|
|
|
// link: '/ui-schema/actions/save-record',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Custom request',
|
|
|
|
// link: '/ui-schema/actions/custom-request',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// title: 'Submit to workflow',
|
|
|
|
// link: '/ui-schema/actions/submit-to-workflow',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// ],
|
2023-11-06 03:50:13 +00:00
|
|
|
},
|
|
|
|
}),
|
2023-06-20 03:48:02 +00:00
|
|
|
});
|