forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild-components.ts
More file actions
186 lines (174 loc) · 5.34 KB
/
build-components.ts
File metadata and controls
186 lines (174 loc) · 5.34 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
import { ComponentType, forwardRef, createElement, FunctionComponent } from 'react';
import {
IPublicTypeNpmInfo,
IPublicTypeComponentSchema,
IPublicTypeProjectSchema,
} from '@felce/lowcode-types';
import { isESModule } from './is-es-module';
import { isReactComponent, acceptsRef, wrapReactClass } from './is-react';
import { isObject } from './is-object';
import { isLowcodeProjectSchema } from './check-types';
import { isComponentSchema } from './check-types/is-component-schema';
type Component = ComponentType<any> | object;
interface LibraryMap {
[key: string]: string;
}
export function accessLibrary(library: string | Record<string, unknown>) {
if (typeof library !== 'string') {
return library;
}
return (window as any)[library] || generateHtmlComp(library);
}
export function generateHtmlComp(library: string) {
if (['a', 'img', 'div', 'span', 'svg'].includes(library)) {
return forwardRef((props, ref) => {
return createElement(library, { ref, ...props }, props.children);
});
}
}
export function getSubComponent(library: any, paths: string[]) {
const l = paths.length;
if (l < 1 || !library) {
return library;
}
let i = 0;
let component: any;
while (i < l) {
const key = paths[i]!;
let ex: any;
try {
component = library[key] || component;
} catch (e) {
ex = e;
component = null;
}
if (i === 0 && component == null && key === 'default') {
if (ex) {
return l === 1 ? library : null;
}
component = library;
} else if (component == null) {
return null;
}
library = component;
i++;
}
return component;
}
function findComponent(libraryMap: LibraryMap, componentName: string, npm?: IPublicTypeNpmInfo) {
if (!npm) {
return accessLibrary(componentName);
}
// libraryName the key access to global
// export { exportName } from xxx exportName === global.libraryName.exportName
// export exportName from xxx exportName === global.libraryName.default || global.libraryName
// export { exportName as componentName } from package
// if exportName == null exportName === componentName;
// const componentName = exportName.subName, if exportName empty subName donot use
const exportName = npm.exportName || npm.componentName || componentName;
const libraryName = libraryMap[npm.package] || exportName;
const library = accessLibrary(libraryName);
const paths = npm.exportName && npm.subName ? npm.subName.split('.') : [];
if (npm.destructuring) {
paths.unshift(exportName);
} else if (isESModule(library)) {
paths.unshift('default');
}
return getSubComponent(library, paths);
}
/**
* 判断是否是一个混合组件,即 components 是一个对象,对象值是 React 组件
* 示例:
* {
* Button: ReactNode,
* Text: ReactNode,
* }
*/
function isMixinComponent(components: any) {
if (!isObject(components)) {
return false;
}
return Object.keys(components).some((componentName) =>
isReactComponent(components[componentName]),
);
}
export function buildComponents(
libraryMap: LibraryMap,
componentsMap: {
[componentName: string]: IPublicTypeNpmInfo | ComponentType<any> | IPublicTypeComponentSchema;
},
createComponent: (
schema: IPublicTypeProjectSchema<IPublicTypeComponentSchema>,
) => Component | null,
) {
const components: any = {};
Object.keys(componentsMap).forEach((componentName) => {
let component = componentsMap[componentName];
if (component && (isLowcodeProjectSchema(component) || isComponentSchema(component))) {
if (isComponentSchema(component)) {
components[componentName] = createComponent({
version: '',
componentsMap: [],
componentsTree: [component],
});
} else {
components[componentName] = createComponent(component);
}
} else if (isReactComponent(component)) {
if (!acceptsRef(component)) {
component = wrapReactClass(component as FunctionComponent);
}
components[componentName] = component;
} else if (isMixinComponent(component)) {
components[componentName] = component;
} else {
component = findComponent(libraryMap, componentName, component);
if (component) {
if (!acceptsRef(component) && isReactComponent(component)) {
component = wrapReactClass(component as FunctionComponent);
}
components[componentName] = component;
}
}
});
return components;
}
export interface UtilsMetadata {
name: string;
npm: {
package: string;
version?: string;
exportName: string;
subName?: string;
destructuring?: boolean;
main?: string;
};
}
interface LibrayMap {
[key: string]: string;
}
interface ProjectUtils {
[packageName: string]: any;
}
export function getProjectUtils(
librayMap: LibrayMap,
utilsMetadata: UtilsMetadata[],
): ProjectUtils {
const projectUtils: ProjectUtils = {};
if (utilsMetadata) {
utilsMetadata.forEach((meta) => {
if (librayMap[meta?.npm?.package]) {
const lib = accessLibrary(librayMap[meta?.npm.package]);
if (lib?.destructuring) {
Object.keys(lib).forEach((name) => {
if (name === 'destructuring') return;
projectUtils[name] = lib[name];
});
} else if (meta.name) {
projectUtils[meta.name] = lib;
}
}
});
}
return projectUtils;
}