2020-10-25 18:48:23 +00:00
|
|
|
import React from 'react';
|
|
|
|
import style from './SideBar.module.css';
|
2020-12-17 20:53:22 +00:00
|
|
|
import GlobalInfos from '../../utils/GlobalInfos';
|
2020-06-02 22:52:28 +02:00
|
|
|
|
2020-12-29 19:39:30 +00:00
|
|
|
interface SideBarProps {
|
|
|
|
hiddenFrame?: boolean;
|
|
|
|
width?: string;
|
|
|
|
}
|
|
|
|
|
2020-08-12 17:50:25 +00:00
|
|
|
/**
|
|
|
|
* component for sidebar-info
|
|
|
|
*/
|
2020-12-29 19:39:30 +00:00
|
|
|
class SideBar extends React.Component<SideBarProps> {
|
|
|
|
render(): JSX.Element {
|
2020-08-05 22:00:55 +02:00
|
|
|
const themeStyle = GlobalInfos.getThemeStyle();
|
2020-12-29 19:39:30 +00:00
|
|
|
const classnn = style.sideinfogeometry + ' ' + (this.props.hiddenFrame === undefined ? style.sideinfo + ' ' + themeStyle.secbackground : '');
|
|
|
|
|
|
|
|
return (<div className={classnn} style={{width: this.props.width}}>
|
2020-06-02 22:52:28 +02:00
|
|
|
{this.props.children}
|
|
|
|
</div>);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-12 17:50:25 +00:00
|
|
|
/**
|
|
|
|
* The title of the sidebar
|
|
|
|
*/
|
2020-07-08 00:14:08 +02:00
|
|
|
export class SideBarTitle extends React.Component {
|
2020-12-29 19:39:30 +00:00
|
|
|
render(): JSX.Element {
|
2020-08-05 22:00:55 +02:00
|
|
|
const themeStyle = GlobalInfos.getThemeStyle();
|
2020-07-08 00:14:08 +02:00
|
|
|
return (
|
2020-08-12 17:50:25 +00:00
|
|
|
<div className={style.sidebartitle + ' ' + themeStyle.subtextcolor}>{this.props.children}</div>
|
2020-07-08 00:14:08 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-12 17:50:25 +00:00
|
|
|
/**
|
|
|
|
* An item of the sidebar
|
|
|
|
*/
|
2020-07-08 00:14:08 +02:00
|
|
|
export class SideBarItem extends React.Component {
|
2020-12-29 19:39:30 +00:00
|
|
|
render(): JSX.Element {
|
2020-08-05 22:00:55 +02:00
|
|
|
const themeStyle = GlobalInfos.getThemeStyle();
|
2020-07-08 00:14:08 +02:00
|
|
|
return (
|
2020-10-09 14:00:51 +00:00
|
|
|
<div
|
|
|
|
className={style.sidebarinfo + ' ' + themeStyle.thirdbackground + ' ' + themeStyle.lighttextcolor}>{this.props.children}</div>
|
2020-07-08 00:14:08 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-02 22:52:28 +02:00
|
|
|
export default SideBar;
|