-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathGrid.js
136 lines (113 loc) · 3.66 KB
/
Grid.js
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import cx from 'clsx'
import PropTypes from 'prop-types'
import * as React from 'react'
import {
customPropTypes,
getComponentType,
getUnhandledProps,
SUI,
getKeyOnly,
getKeyOrValueAndKey,
getMultipleProp,
getTextAlignProp,
getVerticalAlignProp,
getWidthProp,
} from '../../lib'
import GridColumn from './GridColumn'
import GridRow from './GridRow'
/**
* A grid is used to harmonize negative space in a layout.
*/
const Grid = React.forwardRef(function (props, ref) {
const {
celled,
centered,
children,
className,
columns,
container,
divided,
doubling,
inverted,
padded,
relaxed,
reversed,
stackable,
stretched,
textAlign,
verticalAlign,
} = props
const classes = cx(
'ui',
getKeyOnly(centered, 'centered'),
getKeyOnly(container, 'container'),
getKeyOnly(doubling, 'doubling'),
getKeyOnly(inverted, 'inverted'),
getKeyOnly(stackable, 'stackable'),
getKeyOnly(stretched, 'stretched'),
getKeyOrValueAndKey(celled, 'celled'),
getKeyOrValueAndKey(divided, 'divided'),
getKeyOrValueAndKey(padded, 'padded'),
getKeyOrValueAndKey(relaxed, 'relaxed'),
getMultipleProp(reversed, 'reversed'),
getTextAlignProp(textAlign),
getVerticalAlignProp(verticalAlign),
getWidthProp(columns, 'column', true),
'grid',
className,
)
const rest = getUnhandledProps(Grid, props)
const ElementType = getComponentType(props)
return (
<ElementType {...rest} className={classes} ref={ref}>
{children}
</ElementType>
)
})
Grid.Column = GridColumn
Grid.Row = GridRow
Grid.displayName = 'Grid'
Grid.propTypes = {
/** An element type to render as (string or function). */
as: PropTypes.elementType,
/** A grid can have rows divided into cells. */
celled: PropTypes.oneOfType([PropTypes.bool, PropTypes.oneOf(['internally'])]),
/** A grid can have its columns centered. */
centered: PropTypes.bool,
/** Primary content. */
children: PropTypes.node,
/** Additional classes. */
className: PropTypes.string,
/** Represents column count per row in Grid. */
columns: PropTypes.oneOf([...SUI.WIDTHS, 'equal']),
/** A grid can be combined with a container to use the available layout and alignment. */
container: PropTypes.bool,
/** A grid can have dividers between its columns. */
divided: PropTypes.oneOfType([PropTypes.bool, PropTypes.oneOf(['vertically'])]),
/** A grid can double its column width on tablet and mobile sizes. */
doubling: PropTypes.bool,
/** A grid's colors can be inverted. */
inverted: PropTypes.bool,
/** A grid can preserve its vertical and horizontal gutters on first and last columns. */
padded: PropTypes.oneOfType([PropTypes.bool, PropTypes.oneOf(['horizontally', 'vertically'])]),
/** A grid can increase its gutters to allow for more negative space. */
relaxed: PropTypes.oneOfType([PropTypes.bool, PropTypes.oneOf(['very'])]),
/** A grid can specify that its columns should reverse order at different device sizes. */
reversed: customPropTypes.multipleProp([
'computer',
'computer vertically',
'mobile',
'mobile vertically',
'tablet',
'tablet vertically',
]),
/** A grid can have its columns stack on-top of each other after reaching mobile breakpoints. */
stackable: PropTypes.bool,
/** A grid can stretch its contents to take up the entire grid height. */
stretched: PropTypes.bool,
/** A grid can specify its text alignment. */
textAlign: PropTypes.oneOf(SUI.TEXT_ALIGNMENTS),
/** A grid can specify its vertical alignment to have all its columns vertically centered. */
verticalAlign: PropTypes.oneOf(SUI.VERTICAL_ALIGNMENTS),
}
export default Grid