-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpath-utils.ts
More file actions
250 lines (214 loc) · 6.4 KB
/
path-utils.ts
File metadata and controls
250 lines (214 loc) · 6.4 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
// @warn/cli/create-dms-page
import { existsSync } from 'fs';
import path from 'path';
import { IComponentType } from '../create-dms-page';
export class PathUtils {
static CLI_ROOT_CWD = path.resolve(__dirname, '..', '..');
static DMS_ROOT_CWD = path.join(this.CLI_ROOT_CWD, '..', '..', '..');
static SQLE_ROOT_CWD = path.join(this.DMS_ROOT_CWD, 'packages', 'sqle');
static BASE_ROOT_CWD = path.join(this.DMS_ROOT_CWD, 'packages', 'base');
static SHARED_ROOT_CWD = path.join(this.DMS_ROOT_CWD, 'packages', 'shared');
// icon path
static ICON_ROOT_CWD = path.join(this.DMS_ROOT_CWD, 'packages', 'icons');
static getIconDirectoryAtPath(style: string, type?: string): string {
const iconPath = type
? path.join(PathUtils.ICON_ROOT_CWD, 'svg', style, type)
: path.join(PathUtils.ICON_ROOT_CWD, 'svg', style);
if (!existsSync(iconPath)) {
throw new Error(
`${iconPath} does not exist. Please check the icon package path under the packages directory!`
);
}
return iconPath;
}
// local path
static getLocaleDirectoryAtPath(type: IComponentType) {
const localeDirAtPath = path.join(
PathUtils.getRootCWDWithType(type),
'src',
'locale',
'zh-CN'
);
if (!existsSync(localeDirAtPath)) {
throw new Error(
`${localeDirAtPath} does not exist. Please check the path under the packages directory!`
);
}
return localeDirAtPath;
}
static getLocaleIndexFileAtPath(type: IComponentType) {
const localeDirAtPath = this.getLocaleDirectoryAtPath(type);
const indexFileAtPath = path.join(localeDirAtPath, 'index.ts');
if (!existsSync(indexFileAtPath)) {
throw new Error(
`${indexFileAtPath} does not exist. Please check the path under the packages directory!`
);
}
return indexFileAtPath;
}
static getLocaleModuleFileAtPath(type: IComponentType, moduleName: string) {
const localeModuleFileAtPath = path.join(
this.getLocaleDirectoryAtPath(type),
`${moduleName}.ts`
);
if (existsSync(localeModuleFileAtPath)) {
throw new Error(
`${localeModuleFileAtPath} does exist. Please check the path under the packages directory!`
);
}
return localeModuleFileAtPath;
}
static getMenu18nLocaleFileAtPath() {
const menuI18nFileAtPath = path.join(
PathUtils.getRootCWDWithType('base'),
'src',
'locale',
'zh-CN',
'dmsMenu.ts'
);
if (!existsSync(menuI18nFileAtPath)) {
throw new Error(
`${menuI18nFileAtPath} does not exist. Please check the path under the packages directory!`
);
}
return menuI18nFileAtPath;
}
// component path
static getComponentDirectoryAtPath(type: IComponentType) {
const componentDirAtPath = path.join(
PathUtils.getRootCWDWithType(type),
'src',
'page'
);
if (!existsSync(componentDirAtPath)) {
throw new Error(
`${componentDirAtPath} does not exist. Please check the path under the packages directory!`
);
}
return componentDirAtPath;
}
static getComponentIndexFileAtPath(
type: IComponentType,
componentName: string
) {
const componentDirAtPath = this.getComponentDirectoryAtPath(type);
return path.join(componentDirAtPath, componentName, 'index.tsx');
}
// router path
static getRouteConfigAtPath(type: IComponentType) {
let configAtPath = '';
if (type === 'base') {
configAtPath = path.join(
PathUtils.getRootCWDWithType('base'),
'src',
'router',
'router.base.tsx'
);
}
if (type === 'sqle') {
configAtPath = path.join(
PathUtils.getRootCWDWithType('sqle'),
'src',
'router',
'config.tsx'
);
}
if (type === 'provision') {
configAtPath = path.join(
PathUtils.getRootCWDWithType('provision'),
'src',
'router',
'router.tsx'
);
}
if (!configAtPath) {
throw new Error(
`No routing configuration file corresponding to ${type} was found`
);
}
if (!existsSync(configAtPath)) {
throw new Error(
`${configAtPath} does not exist. Please check the path under the packages directory!`
);
}
return configAtPath;
}
static getRouteDataAtPath() {
const routeDataAtPath = path.join(
PathUtils.SHARED_ROOT_CWD,
'lib',
'data',
'routePaths.ts'
);
if (!existsSync(routeDataAtPath)) {
throw new Error(
`${routeDataAtPath} does not exist. Please check the path under the packages directory!`
);
}
return routeDataAtPath;
}
// menu path
static getMenuDataAtPath(type: IComponentType) {
const menuDataAtPath = path.join(
PathUtils.getRootCWDWithType('base'),
'src',
'page',
'Nav',
'SideMenu',
'MenuList',
'menus',
`${type}.tsx`
);
if (!existsSync(menuDataAtPath)) {
throw new Error(
`${menuDataAtPath} does not exist. Please check the path under the packages directory!`
);
}
return menuDataAtPath;
}
static getMenuDataTypeAnnotationAtPath() {
const menuStructTreeKeyTypeAnnotationAtPath = path.join(
PathUtils.getRootCWDWithType('base'),
'src',
'page',
'Nav',
'SideMenu',
'MenuList',
'menus',
`index.type.ts`
);
if (!existsSync(menuStructTreeKeyTypeAnnotationAtPath)) {
throw new Error(
`${menuStructTreeKeyTypeAnnotationAtPath} does not exist. Please check the path under the packages directory!`
);
}
return menuStructTreeKeyTypeAnnotationAtPath;
}
static getRootCWDWithType(
type: 'sqle' | 'base' | 'shared' | 'icons' | 'provision'
) {
return path.join(this.DMS_ROOT_CWD, 'packages', type);
}
static getRelativePath(from: string, to: string, isFile?: boolean): string {
const normalize = (str: string) => {
return str.replace(/[\\/]+$/, '').split(/[\\/]+/);
};
const fromParts = normalize(from);
const toParts = normalize(to);
if (isFile) {
fromParts.pop();
toParts.pop();
}
let i = 0;
while (
i < fromParts.length &&
i < toParts.length &&
fromParts[i] === toParts[i]
) {
i++;
}
const upCount = fromParts.length - i;
const relativeParts = [...Array(upCount).fill('..'), ...toParts.slice(i)];
return relativeParts.length === 0 ? '.' : relativeParts.join('/');
}
}