From 4728855b40d2d37da8e035c5081fab5819b07fd0 Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Thu, 1 Sep 2016 01:44:34 -0400 Subject: [refactor] move js to top-level folder --- www/app/components/main_panel/section_layout.js | 59 +++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 www/app/components/main_panel/section_layout.js (limited to 'www/app/components/main_panel/section_layout.js') diff --git a/www/app/components/main_panel/section_layout.js b/www/app/components/main_panel/section_layout.js new file mode 100644 index 00000000..e7c6f2ab --- /dev/null +++ b/www/app/components/main_panel/section_layout.js @@ -0,0 +1,59 @@ +// +// This is the layout for a service section in the main window. +// It does not do anything except for arrange items using css and html. +// + +import React from 'react' + +export default class SectionLayout extends React.Component { + + static get defaultProps() {return{ + icon: null, + buttons: null, + status: null, + className: "", + style: {} + }} + + constructor(props) { + super(props) + } + + render() { + let className = ["service-section", this.props.className].join(' ') + let status = null + let icon = null + let buttons = null + + if (this.props.status) { + status = ( +
+ +
+ ) + } + if (this.props.icon) { + icon = ( +
+ +
+ ) + } + if (this.props.buttons) + buttons = ( +
+ {this.props.buttons} +
+ ) + return( +
+ {icon} +
+ {this.props.children} +
+ {buttons} + {status} +
+ ) + } +} -- cgit v1.2.3