-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathSegment.js
163 lines (133 loc) · 4.09 KB
/
Segment.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import cx from 'clsx'
import _ from 'lodash'
import PropTypes from 'prop-types'
import * as React from 'react'
import {
childrenUtils,
customPropTypes,
getComponentType,
getUnhandledProps,
SUI,
getKeyOnly,
getKeyOrValueAndKey,
getTextAlignProp,
getValueAndKey,
} from '../../lib'
import SegmentGroup from './SegmentGroup'
import SegmentInline from './SegmentInline'
/**
* A segment is used to create a grouping of related content.
*/
const Segment = React.forwardRef(function (props, ref) {
const {
attached,
basic,
children,
circular,
className,
clearing,
color,
compact,
content,
disabled,
floated,
inverted,
loading,
placeholder,
padded,
piled,
raised,
secondary,
size,
stacked,
tertiary,
textAlign,
vertical,
} = props
const classes = cx(
'ui',
color,
size,
getKeyOnly(basic, 'basic'),
getKeyOnly(circular, 'circular'),
getKeyOnly(clearing, 'clearing'),
getKeyOnly(compact, 'compact'),
getKeyOnly(disabled, 'disabled'),
getKeyOnly(inverted, 'inverted'),
getKeyOnly(loading, 'loading'),
getKeyOnly(placeholder, 'placeholder'),
getKeyOnly(piled, 'piled'),
getKeyOnly(raised, 'raised'),
getKeyOnly(secondary, 'secondary'),
getKeyOnly(stacked, 'stacked'),
getKeyOnly(tertiary, 'tertiary'),
getKeyOnly(vertical, 'vertical'),
getKeyOrValueAndKey(attached, 'attached'),
getKeyOrValueAndKey(padded, 'padded'),
getTextAlignProp(textAlign),
getValueAndKey(floated, 'floated'),
'segment',
className,
)
const rest = getUnhandledProps(Segment, props)
const ElementType = getComponentType(props)
return (
<ElementType {...rest} className={classes} ref={ref}>
{childrenUtils.isNil(children) ? content : children}
</ElementType>
)
})
Segment.Group = SegmentGroup
Segment.Inline = SegmentInline
Segment.displayName = 'Segment'
Segment.propTypes = {
/** An element type to render as (string or function). */
as: PropTypes.elementType,
/** Attach segment to other content, like a header. */
attached: PropTypes.oneOfType([PropTypes.bool, PropTypes.oneOf(['top', 'bottom'])]),
/** A basic segment has no special formatting. */
basic: PropTypes.bool,
/** Primary content. */
children: PropTypes.node,
/** A segment can be circular. */
circular: PropTypes.bool,
/** Additional classes. */
className: PropTypes.string,
/** A segment can clear floated content. */
clearing: PropTypes.bool,
/** Segment can be colored. */
color: PropTypes.oneOf(SUI.COLORS),
/** A segment may take up only as much space as is necessary. */
compact: PropTypes.bool,
/** Shorthand for primary content. */
content: customPropTypes.contentShorthand,
/** A segment may show its content is disabled. */
disabled: PropTypes.bool,
/** Segment content can be floated to the left or right. */
floated: PropTypes.oneOf(SUI.FLOATS),
/** A segment can have its colors inverted for contrast. */
inverted: PropTypes.bool,
/** A segment may show its content is being loaded. */
loading: PropTypes.bool,
/** A segment can increase its padding. */
padded: PropTypes.oneOfType([PropTypes.bool, PropTypes.oneOf(['very'])]),
/** A segment can be used to reserve space for conditionally displayed content. */
placeholder: PropTypes.bool,
/** Formatted to look like a pile of pages. */
piled: PropTypes.bool,
/** A segment may be formatted to raise above the page. */
raised: PropTypes.bool,
/** A segment can be formatted to appear less noticeable. */
secondary: PropTypes.bool,
/** A segment can have different sizes. */
size: PropTypes.oneOf(_.without(SUI.SIZES, 'medium')),
/** Formatted to show it contains multiple pages. */
stacked: PropTypes.bool,
/** A segment can be formatted to appear even less noticeable. */
tertiary: PropTypes.bool,
/** Formats content to be aligned as part of a vertical group. */
textAlign: PropTypes.oneOf(_.without(SUI.TEXT_ALIGNMENTS, 'justified')),
/** Formats content to be aligned vertically. */
vertical: PropTypes.bool,
}
export default Segment