blob: 4ef7c892fdcc3a10f6afc53abaf8b3be228aed49 [file] [log] [blame]
Jeremy Mordkoffe29efc32016-09-07 18:59:17 -04001/*
Laurence Maultsbydfe972f2016-09-12 12:14:43 -04002 *
Jeremy Mordkoffe29efc32016-09-07 18:59:17 -04003 * Copyright 2016 RIFT.IO Inc
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18import React, {Component} from 'react';
19import 'style/core.css';
20import './panel.scss';
21export class Panel extends Component {
22 constructor(props) {
23 super(props)
24 }
25 render() {
26 let self = this;
27 let {children, className, title, ...props} = self.props;
Laurence Maultsbydfe972f2016-09-12 12:14:43 -040028 let classRoot = className ? ' ' + className : ' ';
29 let hasCorners = this.props['no-corners'];
Jeremy Mordkoffe29efc32016-09-07 18:59:17 -040030 let titleTag = title ? <header className="skyquakePanel-title">{title}</header> : '';
31 return (
32 <section className={'skyquakePanel' + classRoot} style={props.style}>
Laurence Maultsbydfe972f2016-09-12 12:14:43 -040033 { !hasCorners ? <i className="corner-accent top left"></i> : null }
34 { !hasCorners ? <i className="corner-accent top right"></i> : null }
Jeremy Mordkoffe29efc32016-09-07 18:59:17 -040035 {titleTag}
36 <div className="skyquakePanel-wrapper">
37 <div className={(classRoot ? 'skyquakePanel-body ' + decorateClassNames(classRoot, '-body') : 'skyquakePanel-body')}>
38 {children}
39 </div>
40 </div>
Laurence Maultsbydfe972f2016-09-12 12:14:43 -040041 { !hasCorners ? <i className="corner-accent bottom left"></i> : null }
42 { !hasCorners ? <i className="corner-accent bottom right"></i> : null }
Jeremy Mordkoffe29efc32016-09-07 18:59:17 -040043 </section>
44 )
45 }
46}
47
48Panel.defaultProps = {
49
50}
51
52export class PanelWrapper extends Component {
53 render() {
Laurence Maultsbydfe972f2016-09-12 12:14:43 -040054 return (
55 <div className={'skyquakePanelWrapper ' + this.props.className} style={this.props.style}>
Jeremy Mordkoffe29efc32016-09-07 18:59:17 -040056 {this.props.children}
57 </div>)
58 }
59}
60
61export default Panel;
62
63
64function decorateClassNames(className, addendum) {
Laurence Maultsbydfe972f2016-09-12 12:14:43 -040065 return className.trim().split(' ').map(function(c) {
Jeremy Mordkoffe29efc32016-09-07 18:59:17 -040066 return c + addendum
67 }).join(' ');
68}