69 lines
2.3 KiB
TypeScript
69 lines
2.3 KiB
TypeScript
import { ReactNode, Component, FunctionComponent } from "react";
|
|
import { Theme } from "@Component/Theme/Theme";
|
|
import { Message } from "@Component/Message/Message";
|
|
import { RenderView } from "./RenderView/RenderView";
|
|
import { ObjectList } from "./ObjectList/ObjectList";
|
|
import { ObjectCommand } from "./ObjectList/ObjectCommand";
|
|
import { RangeDetails } from "./RangeDetails/RangeDetails";
|
|
import { LabelList } from "./LabelList/LabelList";
|
|
import { LabelDetails } from "./LabelDetails/LabelDetails";
|
|
|
|
interface IPanelInfo {
|
|
nameKey: string;
|
|
introKay: string;
|
|
class: (new (...p: any) => Component) | FunctionComponent;
|
|
header?: (new (...p: any) => Component) | FunctionComponent;
|
|
hidePadding?: boolean;
|
|
hideScrollBar?: boolean;
|
|
isDeepDark?: boolean;
|
|
option?: Record<string, string>;
|
|
}
|
|
|
|
type PanelId = ""
|
|
| "RenderView" // 主渲染器
|
|
| "ObjectList" // 对象列表
|
|
| "RangeDetails" // 范围属性
|
|
| "LabelList" // 标签列表
|
|
| "LabelDetails" // 标签属性
|
|
;
|
|
|
|
const PanelInfoMap = new Map<PanelId, IPanelInfo>();
|
|
PanelInfoMap.set("RenderView", {
|
|
nameKey: "Panel.Title.Render.View", introKay: "Panel.Info.Render.View",
|
|
class: RenderView, hidePadding: true, hideScrollBar: true, isDeepDark: true
|
|
});
|
|
PanelInfoMap.set("ObjectList", {
|
|
nameKey: "Panel.Title.Object.List.View", introKay: "Panel.Info.Object.List.View",
|
|
class: ObjectList, header: ObjectCommand, hidePadding: true
|
|
})
|
|
PanelInfoMap.set("RangeDetails", {
|
|
nameKey: "Panel.Title.Range.Details.View", introKay: "Panel.Info.Range.Details.View",
|
|
class: RangeDetails
|
|
})
|
|
PanelInfoMap.set("LabelList", {
|
|
nameKey: "Panel.Title.Label.List.View", introKay: "Panel.Info.Label.List.View",
|
|
class: LabelList, hidePadding: true
|
|
})
|
|
PanelInfoMap.set("LabelDetails", {
|
|
nameKey: "Panel.Title.Label.Details.View", introKay: "Panel.Info.Label.Details.View",
|
|
class: LabelDetails
|
|
})
|
|
|
|
function getPanelById(panelId: PanelId): ReactNode {
|
|
switch (panelId) {
|
|
default:
|
|
let info = PanelInfoMap.get(panelId);
|
|
if (info) {
|
|
const C = info.class;
|
|
return <C></C>
|
|
} else return <Theme>
|
|
<Message i18nKey={"Panel.Info.Notfound"} options={{ id: panelId }}/>
|
|
</Theme>
|
|
}
|
|
}
|
|
|
|
function getPanelInfoById(panelId: PanelId): IPanelInfo | undefined {
|
|
return PanelInfoMap.get(panelId);
|
|
}
|
|
|
|
export { PanelId, getPanelById, getPanelInfoById} |