1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
import chalk from 'chalk';
import { readdirSync } from 'fs';
import { join } from 'path';
import proxy from './proxy';
const headPkgList = [];
const pkgList = ['base-components', 'extend-components']
.map((dir) => {
const list = readdirSync(join(__dirname, '../packages', dir)).map((item) => item + `!${dir}`);
return list.filter((pkg) => pkg.charAt(0) !== '.' && !headPkgList.includes(pkg));
})
.flat();
const alias = pkgList.reduce((pre, pkg) => {
const path = pkg.split('!');
pre[`@wisdom-components/pro-${path[0]}`] = join(
__dirname,
'../packages',
path[1],
path[0],
'src',
);
return {
...pre,
};
}, {});
console.log(`🌼 alias list \n${chalk.blue(Object.keys(alias).join('\n'))}`);
const tailPkgList = pkgList
.map((pkg) => {
const path = pkg.split('!');
return [
join('packages', path[1], path[0], 'src'),
join('packages', path[0], 'src', 'components'),
];
})
.reduce((acc, val) => acc.concat(val), []);
export default {
title: 'panda-components',
mode: 'site',
logo: 'https://panda-water.cn/web4/assets/images/logo/单独图案-蓝绿色.svg',
extraBabelPlugins: [
[
'import',
{
libraryName: 'antd',
libraryDirectory: 'es',
style: true,
},
],
],
alias,
resolve: { includes: [...tailPkgList, 'docs'] },
navs: [
null,
{
title: 'Gitlab',
path: 'https://g.civnet.cn:8443/test/winsdom-components',
},
],
hash: true,
ssr: {
devServerRender: false,
},
targets: {
chrome: 80,
firefox: false,
safari: false,
edge: false,
ios: false,
},
dynamicImport: {},
theme: {
'@s-site-menu-width': '258px',
},
links:
process.env.NODE_ENV === 'development'
? ['https://gw.alipayobjects.com/os/lib/antd/4.6.6/dist/antd.css']
: [],
scripts: [{ src: '/JessibucaVideo/jessibuca.js', defer: true }],
menus: {
'/components': [
{
title: '布局',
children: ['Empty'],
},
{
title: '通用',
children: [
'BasicChart',
'BasicTable',
'BasicTools',
'ImageSelect',
'QuotaSelect',
'TimeRangePicker',
'MqttView',
'ExportExcel',
'LoadBox',
'TipTool',
'RichText',
'DatePickerCustom',
'SelectCustom',
'TreeCustom',
'AlarmScrollAssembly',
'DataCarousel',
'VmsVideo',
'VideoSliderModal',
],
},
{
title: '数据录入',
children: ['ParseForm'],
},
{
title: '数据展示',
children: ['DeviceTree', 'RealTimeInfo', 'HistoryInfo'],
},
],
'/extend-components': [
{
title: '业务数据展示',
children: [
'EC_DeviceTree',
'EC_DeviceTreeGroup',
'EC_QuotaSelect',
'EC_HistoryInfo',
'EC_RealTimeInfo',
'EC_ConfigurationView',
'EC_HistoryView',
'EC_StatisticalHistoryView',
'EC_AlarmCurve',
],
},
],
},
proxy,
define: {
DUMI_TYPE: 'dumi',
},
};