-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathProgress.js
237 lines (194 loc) · 5.77 KB
/
Progress.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import cx from 'clsx'
import _ from 'lodash'
import PropTypes from 'prop-types'
import * as React from 'react'
import {
childrenUtils,
createHTMLDivision,
customPropTypes,
getComponentType,
getUnhandledProps,
SUI,
getKeyOnly,
getValueAndKey,
} from '../../lib'
/**
* @param {Number|String} percent
* @param {Number|String} total
* @param {Number|String} value
*
* @return {Number|String}
*/
function calculatePercent(percent, total, value) {
if (!_.isUndefined(percent)) {
return percent
}
if (!_.isUndefined(total) && !_.isUndefined(value)) {
return (value / total) * 100
}
return 0
}
/**
* @param {Number|String} percent
* @param {Number|String} total
* @param {Number|String} value
* @param {Boolean|'percent'|'ratio'|'value'} progress
* @param {Number} precision
*
* @return {Number}
*/
function getPercent(percent, total, value, progress, precision) {
const clampedPercent = _.clamp(calculatePercent(percent, total, value), 0, 100)
if (!_.isUndefined(total) && !_.isUndefined(value) && progress === 'value') {
return (value / total) * 100
}
if (progress === 'value') {
return value
}
if (_.isUndefined(precision)) {
return clampedPercent
}
return _.round(clampedPercent, precision)
}
/**
* A progress bar shows the progression of a task.
*/
const Progress = React.forwardRef(function (props, ref) {
const {
active,
autoSuccess,
attached,
children,
className,
color,
content,
disabled,
error,
indicating,
inverted,
label,
percent,
precision,
progress,
total,
size,
success,
value,
warning,
} = props
const calculatedPercent = getPercent(percent, total, value, progress, precision) || 0
const isAutoSuccess = autoSuccess && (percent >= 100 || value >= total)
const computeValueText = () => {
if (progress === 'value') {
return value
}
if (progress === 'ratio') {
return `${value}/${total}`
}
return `${calculatedPercent}%`
}
const renderLabel = () => {
if (!childrenUtils.isNil(children)) {
return <div className='label'>{children}</div>
}
if (!childrenUtils.isNil(content)) {
return <div className='label'>{content}</div>
}
return createHTMLDivision(label, {
autoGenerateKey: false,
defaultProps: { className: 'label' },
})
}
const renderProgress = () => {
if (!progress && _.isUndefined(precision)) {
return
}
return <div className='progress'>{computeValueText()}</div>
}
const classes = cx(
'ui',
color,
size,
getKeyOnly(active || indicating, 'active'),
getKeyOnly(disabled, 'disabled'),
getKeyOnly(error, 'error'),
getKeyOnly(indicating, 'indicating'),
getKeyOnly(inverted, 'inverted'),
getKeyOnly(success || isAutoSuccess, 'success'),
getKeyOnly(warning, 'warning'),
getValueAndKey(attached, 'attached'),
'progress',
className,
)
const rest = getUnhandledProps(Progress, props)
const ElementType = getComponentType(props)
return (
<ElementType
{...rest}
className={classes}
data-percent={Math.floor(calculatedPercent)}
ref={ref}
>
<div className='bar' style={{ width: `${calculatedPercent}%` }}>
{renderProgress()}
</div>
{renderLabel()}
</ElementType>
)
})
Progress.displayName = 'Progress'
Progress.propTypes = {
/** An element type to render as (string or function). */
as: PropTypes.elementType,
/** A progress bar can show activity. */
active: PropTypes.bool,
/** A progress bar can attach to and show the progress of an element (i.e. Card or Segment). */
attached: PropTypes.oneOf(['top', 'bottom']),
/** Whether success state should automatically trigger when progress completes. */
autoSuccess: PropTypes.bool,
/** Primary content. */
children: PropTypes.node,
/** Additional classes. */
className: PropTypes.string,
/** A progress bar can have different colors. */
color: PropTypes.oneOf(SUI.COLORS),
/** Shorthand for primary content. */
content: customPropTypes.contentShorthand,
/** A progress bar be disabled. */
disabled: PropTypes.bool,
/** A progress bar can show a error state. */
error: PropTypes.bool,
/** An indicating progress bar visually indicates the current level of progress of a task. */
indicating: PropTypes.bool,
/** A progress bar can have its colors inverted. */
inverted: PropTypes.bool,
/** Can be set to either to display progress as percent or ratio. */
label: customPropTypes.itemShorthand,
/** Current percent complete. */
percent: customPropTypes.every([
customPropTypes.disallow(['total', 'value']),
PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
]),
/** Decimal point precision for calculated progress. */
precision: PropTypes.number,
/** A progress bar can contain a text value indicating current progress. */
progress: PropTypes.oneOfType([PropTypes.bool, PropTypes.oneOf(['percent', 'ratio', 'value'])]),
/** A progress bar can vary in size. */
size: PropTypes.oneOf(_.without(SUI.SIZES, 'mini', 'huge', 'massive')),
/** A progress bar can show a success state. */
success: PropTypes.bool,
/** For use with value. Together, these will calculate the percent. Mutually excludes percent. */
total: customPropTypes.every([
customPropTypes.demand(['value']),
customPropTypes.disallow(['percent']),
PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
]),
/** For use with total. Together, these will calculate the percent. Mutually excludes percent. */
value: customPropTypes.every([
customPropTypes.disallow(['percent']),
PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
]),
/** A progress bar can show a warning state. */
warning: PropTypes.bool,
}
export default Progress