123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import * as React from "react";
- import { DataStorage } from 'babylonjs/Misc/dataStorage';
- const downArrow = require("./downArrow.svg");
- interface ILineContainerComponentProps {
- title: string;
- children: any[] | any;
- closed?: boolean;
- }
- export class LineContainerComponent extends React.Component<ILineContainerComponentProps, { isExpanded: boolean }> {
- constructor(props: ILineContainerComponentProps) {
- super(props);
- let initialState = DataStorage.ReadBoolean(this.props.title, !this.props.closed);
- this.state = { isExpanded: initialState };
- }
- switchExpandedState(): void {
- const newState = !this.state.isExpanded;
- DataStorage.WriteBoolean(this.props.title, newState);
- this.setState({ isExpanded: newState });
- }
- renderHeader() {
- const className = this.state.isExpanded ? "collapse" : "collapse closed";
- return (
- <div className="header" onClick={() => this.switchExpandedState()}>
- <div className="title">
- {this.props.title}
- </div>
- <div className={className}>
- <img className="img" title={this.props.title} src={downArrow}/>
- </div>
- </div>
- );
- }
- render() {
- if (!this.state.isExpanded) {
- return (
- <div className="paneContainer">
- <div className="paneContainer-content">
- {
- this.renderHeader()
- }
- </div>
- </div>
- );
- }
- return (
- <div className="paneContainer">
- <div className="paneContainer-content">
- {
- this.renderHeader()
- }
- <div className="paneList">
- {this.props.children}
- </div >
- </div>
- </div>
- );
- }
- }
|