blob: b32961a724ae976758ec993bcf2ce255a7af0c40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
import React from 'react'
import './layout.less'
class HorizontalLayout extends React.Component {
static get defaultProps() {return{
equalWidths: false,
className: ''
}}
constructor(props) {
super(props)
}
render() {
let className = "horizontal-layout " + this.props.className
if (this.props.equalWidths) {
className = className + " equal" + this.props.children.length
}
return (
<div className={className}>
{this.props.children}
</div>
)
}
}
class Column extends React.Component {
static get defaultProps() {return{
className: ''
}}
constructor(props) {
super(props)
}
render() {
let className = "layout-column " + this.props.className
return (
<div className={className}>
{this.props.children}
</div>
)
}
}
class VerticalLayout extends React.Component {
static get defaultProps() {return{
equalWidths: false,
className: ''
}}
constructor(props) {
super(props)
}
render() {
let className = "vertical-layout " + this.props.className
if (this.props.equalWidths) {
className = className + " equal" + this.props.children.length
}
return (
<div className={className}>
{this.props.children}
</div>
)
}
}
class Row extends React.Component {
static get defaultProps() {return{
className: '',
size: 'expand',
gutter: ''
}}
constructor(props) {
super(props)
}
render() {
let style = {}
if (this.props.gutter) {
style = {marginBottom: this.props.gutter}
}
let className = ["layout-row", this.props.className, this.props.size].join(" ")
return (
<div style={style} className={className}>
{this.props.children}
</div>
)
}
}
export {HorizontalLayout, VerticalLayout, Column, Row}
|