Compare commits

..

2 commits

Author SHA1 Message Date
893b525d45 Implement add on selected container 2022-08-01 11:02:44 +02:00
092b156cc0 Implement selected container 2022-08-01 10:50:58 +02:00
3 changed files with 66 additions and 31 deletions

View file

@ -14,7 +14,8 @@ interface IAppState {
isSidebarOpen: boolean, isSidebarOpen: boolean,
isSVGSidebarOpen: boolean, isSVGSidebarOpen: boolean,
configuration: Configuration, configuration: Configuration,
MainContainer: Container | null MainContainer: Container | null,
SelectedContainer: Container | null
} }
class App extends React.Component<IAppProps> { class App extends React.Component<IAppProps> {
@ -30,29 +31,33 @@ class App extends React.Component<IAppProps> {
AvailableSymbols: [], AvailableSymbols: [],
MainContainer: {} as AvailableContainer MainContainer: {} as AvailableContainer
}, },
MainContainer: null MainContainer: null,
SelectedContainer: null
}; };
} }
componentDidMount() { componentDidMount() {
fetchConfiguration().then((configuration: Configuration) => { fetchConfiguration().then((configuration: Configuration) => {
const MainContainer = new Container(
{
parent: null,
id: 'main',
x: 0,
y: 0,
width: configuration.MainContainer.Width,
height: configuration.MainContainer.Height,
children: [],
style: {
fillOpacity: 0,
stroke: 'black'
} as React.CSSProperties
}
);
this.setState(prevState => ({ this.setState(prevState => ({
...prevState, ...prevState,
configuration, configuration,
MainContainer: new Container( MainContainer,
{ SelectedContainer: MainContainer
id: 'main',
x: 0,
y: 0,
width: configuration.MainContainer.Width,
height: configuration.MainContainer.Height,
children: [],
style: {
fillOpacity: 0,
stroke: 'black'
} as React.CSSProperties
}
)
})); }));
}); });
} }
@ -69,7 +74,18 @@ class App extends React.Component<IAppProps> {
} as IAppState); } as IAppState);
} }
public SelectContainer(container: Container) {
this.setState({
SelectedContainer: container
} as IAppProps);
}
public AddContainer(type: string): void { public AddContainer(type: string): void {
if (this.state.SelectedContainer === null ||
this.state.SelectedContainer === undefined) {
return;
}
if (this.state.MainContainer === null || if (this.state.MainContainer === null ||
this.state.MainContainer === undefined) { this.state.MainContainer === undefined) {
return; return;
@ -81,12 +97,16 @@ class App extends React.Component<IAppProps> {
throw new Error(`[AddContainer] Object type not found. Found: ${type}`); throw new Error(`[AddContainer] Object type not found. Found: ${type}`);
} }
const parent = this.state.SelectedContainer;
const depth: number = Container.getDepth(parent) + 1;
const container = new Container({ const container = new Container({
id: this.state.MainContainer.props.children.length.toString(), parent,
x: 0 + properties?.Width * this.state.MainContainer.props.children.length, id: `${depth}-${parent.props.children.length.toString()}`,
x: 0,
y: 0, y: 0,
width: properties?.Width, width: properties?.Width,
height: this.state.configuration.MainContainer.Height, height: parent.props.height,
children: [], children: [],
style: properties.Style, style: properties.Style,
userData: { userData: {
@ -94,15 +114,9 @@ class App extends React.Component<IAppProps> {
} }
}); });
const newMainContainer = new Container({ parent.props.children.push(container);
id: this.state.MainContainer.props.id,
x: this.state.MainContainer.props.x, const newMainContainer = new Container(Object.assign({}, this.state.MainContainer.props));
y: this.state.MainContainer.props.y,
width: this.state.MainContainer.props.width,
height: this.state.MainContainer.props.height,
style: this.state.MainContainer.props.style,
children: this.state.MainContainer.props.children.concat([container])
});
this.setState({ this.setState({
MainContainer: newMainContainer MainContainer: newMainContainer
@ -119,7 +133,12 @@ class App extends React.Component<IAppProps> {
buttonOnClick={(type: string) => this.AddContainer(type)} buttonOnClick={(type: string) => this.AddContainer(type)}
/> />
<button className='fixed z-10 top-4 left-4 text-lg bg-blue-200 hover:bg-blue-300 transition-all drop-shadow-md hover:drop-shadow-lg py-2 px-3 rounded-lg' onClick={() => this.ToggleSidebar()}>&#9776; Menu</button> <button className='fixed z-10 top-4 left-4 text-lg bg-blue-200 hover:bg-blue-300 transition-all drop-shadow-md hover:drop-shadow-lg py-2 px-3 rounded-lg' onClick={() => this.ToggleSidebar()}>&#9776; Menu</button>
<SVGSidebar MainContainer={this.state.MainContainer} isOpen={this.state.isSVGSidebarOpen} onClick={() => this.ToggleSVGSidebar()}/> <SVGSidebar
MainContainer={this.state.MainContainer}
isOpen={this.state.isSVGSidebarOpen}
onClick={() => this.ToggleSVGSidebar()}
selectContainer={(container: Container) => this.SelectContainer(container)}
/>
<button className='fixed z-10 top-4 right-12 text-lg bg-slate-200 hover:bg-slate-300 transition-all drop-shadow-md hover:drop-shadow-lg py-2 px-3 rounded-lg' onClick={() => this.ToggleSVGSidebar()}>&#9776; Menu</button> <button className='fixed z-10 top-4 right-12 text-lg bg-slate-200 hover:bg-slate-300 transition-all drop-shadow-md hover:drop-shadow-lg py-2 px-3 rounded-lg' onClick={() => this.ToggleSVGSidebar()}>&#9776; Menu</button>
<SVG> <SVG>
{ this.state.MainContainer } { this.state.MainContainer }

View file

@ -1,6 +1,8 @@
import * as React from 'react'; import * as React from 'react';
interface IContainerProps { interface IContainerProps {
// eslint-disable-next-line no-use-before-define
parent: Container | null,
id: string, id: string,
// eslint-disable-next-line no-use-before-define // eslint-disable-next-line no-use-before-define
children: Container[], children: Container[],
@ -33,4 +35,16 @@ export class Container extends React.Component<IContainerProps> {
</g> </g>
); );
} }
public static getDepth(container: Container): number {
let depth = 0;
let current: Container | null = container.props.parent;
while (current != null) {
depth++;
current = current.props.parent;
}
return depth;
}
} }

View file

@ -4,11 +4,13 @@ import { Container } from '../SVG/Elements/Container';
interface ISVGSidebarProps { interface ISVGSidebarProps {
MainContainer: Container | null, MainContainer: Container | null,
isOpen: boolean, isOpen: boolean,
onClick: () => void onClick: () => void,
selectContainer: (container: Container) => void
} }
export class SVGSidebar extends React.Component<ISVGSidebarProps> { export class SVGSidebar extends React.Component<ISVGSidebarProps> {
public iterateChilds(handleContainer: (container: Container, depth: number) => void): React.ReactNode { public iterateChilds(handleContainer: (container: Container, depth: number) => void): React.ReactNode {
// TODO: fix this by using dfs or sort
const root = this.props.MainContainer; const root = this.props.MainContainer;
if (!root) { if (!root) {
return null; return null;
@ -45,7 +47,7 @@ export class SVGSidebar extends React.Component<ISVGSidebarProps> {
const key = container.props.id.toString(); const key = container.props.id.toString();
const text = '\t\t'.repeat(depth) + key; const text = '\t\t'.repeat(depth) + key;
containerRows.push( containerRows.push(
<button className='sidebar-row whitespace-pre text-left hover:bg-slate-600 transition-all' key={key}> <button className='sidebar-row whitespace-pre text-left hover:bg-slate-600 transition-all' key={key} onClick={() => this.props.selectContainer(container)}>
{ text } { text }
</button> </button>
); );