Persist user's adjustments to the mosaic layout
This commit is contained in:
parent
79775ad56c
commit
a8d6756f5e
@ -13,6 +13,24 @@ const WindowTitles = {
|
|||||||
output: "Execution Output",
|
output: "Execution Output",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default layout of the mosaic. This must be defined outside of
|
||||||
|
* the React component to persist layout adjustments by the user.
|
||||||
|
*/
|
||||||
|
const INITIAL_LAYOUT: MosaicNode<WINDOW_ID> = {
|
||||||
|
direction: "row",
|
||||||
|
first: "editor",
|
||||||
|
second: {
|
||||||
|
direction: "column",
|
||||||
|
first: "renderer",
|
||||||
|
second: {
|
||||||
|
direction: "row",
|
||||||
|
first: "input",
|
||||||
|
second: "output",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
langId: string;
|
langId: string;
|
||||||
langName: string;
|
langName: string;
|
||||||
@ -34,20 +52,6 @@ export const MainLayout = (props: Props) => {
|
|||||||
output: props.renderOutput,
|
output: props.renderOutput,
|
||||||
};
|
};
|
||||||
|
|
||||||
const INITIAL_LAYOUT: MosaicNode<WINDOW_ID> = {
|
|
||||||
direction: "row",
|
|
||||||
first: "editor",
|
|
||||||
second: {
|
|
||||||
direction: "column",
|
|
||||||
first: "renderer",
|
|
||||||
second: {
|
|
||||||
direction: "row",
|
|
||||||
first: "input",
|
|
||||||
second: "output",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={{ height: "100%", display: "flex", flexDirection: "column" }}>
|
<div style={{ height: "100%", display: "flex", flexDirection: "column" }}>
|
||||||
<Header
|
<Header
|
||||||
|
Loading…
x
Reference in New Issue
Block a user