|
|
|
|
@ -21,6 +21,7 @@ const CompListComponent = () => <div style={{ height: '100%', width: '100%' }}>
|
|
|
|
|
const AppInstanceComponent = () => <div style={{ height: '100%', width: '100%' }}>应用实例</div>;
|
|
|
|
|
const EventComponent = () => <div style={{ height: '100%', width: '100%' }}>事件</div>;
|
|
|
|
|
const GlobalVarComponent = () => <div style={{ height: '100%', width: '100%' }}>全局变量</div>;
|
|
|
|
|
const AppCompComponent = () => <div style={{ height: '100%', width: '100%' }}>组件</div>;
|
|
|
|
|
const MyComponents = () => <div style={{ height: '100%', width: '100%' }}>我的组件</div>;
|
|
|
|
|
const MatchingComponents = () => <div style={{ height: '100%', width: '100%' }}>协同组件</div>;
|
|
|
|
|
const ComponentReview = () => <div style={{ height: '100%', width: '100%' }}>组件审核</div>;
|
|
|
|
|
@ -30,7 +31,7 @@ const ComponentTest = () => <div style={{ height: '100%', width: '100%' }}>组
|
|
|
|
|
|
|
|
|
|
// 所有可显示的组件路径列表
|
|
|
|
|
const ALL_PATHS = [
|
|
|
|
|
'compFlow', 'appFlow', 'compList', 'appInstance', 'event', 'globalVar',
|
|
|
|
|
'compFlow', 'appFlow', 'compList', 'appInstance', 'event', 'globalVar', 'appCompList',
|
|
|
|
|
'myComponents', 'matchingComponents', 'componentReview',
|
|
|
|
|
'componentCoding', 'componentDeployment', 'componentTest'
|
|
|
|
|
];
|
|
|
|
|
@ -118,6 +119,8 @@ function IDEContainer() {
|
|
|
|
|
return <EventComponent />;
|
|
|
|
|
case 'globalVar':
|
|
|
|
|
return <GlobalVarComponent />;
|
|
|
|
|
case 'appCompList':
|
|
|
|
|
return <AppCompComponent />;
|
|
|
|
|
case 'myComponents':
|
|
|
|
|
return <MyComponents />;
|
|
|
|
|
case 'matchingComponents':
|
|
|
|
|
|