Add tab renderer panel

This commit is contained in:
2022-03-02 21:02:54 +08:00
parent 19d77dceb0
commit 6f8451ea9b
10 changed files with 95 additions and 11 deletions
+9
View File
@@ -0,0 +1,9 @@
div.render-view {
width: 100%;
height: 100%;
div.canvas {
width: 100%;
height: 100%;
}
}
+38
View File
@@ -0,0 +1,38 @@
import { Component, ReactNode, createRef } from "react";
import { useStatus, IMixinStatusProps } from "@Context/Status";
import { useSetting, IMixinSettingProps, Themes } from "@Context/Setting";
import { ClassicRenderer } from "@GLRender/ClassicRenderer";
import "./RenderView.scss";
@useSetting
@useStatus
class RenderView extends Component<IMixinStatusProps & IMixinSettingProps> {
private rootEle = createRef<HTMLDivElement>();
public render(): ReactNode {
const theme = this.props.setting?.themes ?? Themes.dark;
const classList: string[] = ["render-view", "background-lvl5"];
if (theme === Themes.light) classList.push("light");
if (theme === Themes.dark) classList.push("dark");
if (this.props.status) {
(this.props.status.renderer as ClassicRenderer).cleanColor =
(theme === Themes.dark) ?
[27 / 255, 26 / 255, 25 / 255, 1] :
[190 / 255, 187 / 255, 184 / 255, 1]
}
return <div ref={this.rootEle} className={classList.join(" ")}/>;
}
public componentDidMount() {
let div = this.rootEle.current;
console.log(div, div?.childNodes, this.props.status, this.props.status?.renderer.dom)
if (div && (!div.childNodes || div.childNodes.length <= 0) && this.props.status) {
div.appendChild(this.props.status.renderer.dom);
}
}
}
export { RenderView }