-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathRating.js
156 lines (129 loc) · 3.94 KB
/
Rating.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
import cx from 'clsx'
import _ from 'lodash'
import PropTypes from 'prop-types'
import * as React from 'react'
import {
getComponentType,
getUnhandledProps,
SUI,
getKeyOnly,
useAutoControlledValue,
} from '../../lib'
import RatingIcon from './RatingIcon'
/**
* A rating indicates user interest in content.
*/
const Rating = React.forwardRef(function (props, ref) {
const { className, clearable = 'auto', disabled, icon, maxRating = 1, size } = props
const [rating, setRating] = useAutoControlledValue({
state: props.rating,
defaultState: props.defaultRating,
initialState: 0,
})
const [selectedIndex, setSelectedIndex] = React.useState(-1)
const [isSelecting, setIsSelecting] = React.useState(false)
const classes = cx(
'ui',
icon,
size,
getKeyOnly(disabled, 'disabled'),
getKeyOnly(isSelecting && !disabled && selectedIndex >= 0, 'selected'),
'rating',
className,
)
const rest = getUnhandledProps(Rating, props)
const ElementType = getComponentType(props)
const handleIconClick = (e, { index }) => {
if (disabled) {
return
}
// default newRating is the clicked icon
// allow toggling a binary rating
// allow clearing ratings
let newRating = index + 1
if (clearable === 'auto' && maxRating === 1) {
newRating = +!rating
} else if (clearable === true && newRating === rating) {
newRating = 0
}
// set rating
setRating(newRating)
setIsSelecting(false)
_.invoke(props, 'onRate', e, { ...props, rating: newRating })
}
const handleIconMouseEnter = (e, { index }) => {
if (disabled) {
return
}
setSelectedIndex(index)
setIsSelecting(true)
}
const handleMouseLeave = (...args) => {
_.invoke(props, 'onMouseLeave', ...args)
if (disabled) {
return
}
setSelectedIndex(-1)
setIsSelecting(false)
}
return (
<ElementType
role='radiogroup'
{...rest}
className={classes}
onMouseLeave={handleMouseLeave}
ref={ref}
tabIndex={disabled ? 0 : -1}
>
{_.times(maxRating, (i) => (
/* TODO: use .create() factory */
<RatingIcon
tabIndex={disabled ? -1 : 0}
active={rating >= i + 1}
aria-checked={rating === i + 1}
aria-posinset={i + 1}
aria-setsize={maxRating}
index={i}
key={i}
onClick={handleIconClick}
onMouseEnter={handleIconMouseEnter}
selected={selectedIndex >= i && isSelecting}
/>
))}
</ElementType>
)
})
Rating.displayName = 'Rating'
Rating.propTypes = {
/** An element type to render as (string or function). */
as: PropTypes.elementType,
/** Additional classes. */
className: PropTypes.string,
/**
* You can clear the rating by clicking on the current start rating.
* By default a rating will be only clearable if there is 1 icon.
* Setting to `true`/`false` will allow or disallow a user to clear their rating.
*/
clearable: PropTypes.oneOfType([PropTypes.bool, PropTypes.oneOf(['auto'])]),
/** The initial rating value. */
defaultRating: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
/** You can disable or enable interactive rating. Makes a read-only rating. */
disabled: PropTypes.bool,
/** A rating can use a set of star or heart icons. */
icon: PropTypes.oneOf(['star', 'heart']),
/** The total number of icons. */
maxRating: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
/**
* Called after user selects a new rating.
*
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {object} data - All props and proposed rating.
*/
onRate: PropTypes.func,
/** The current number of active icons. */
rating: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
/** A progress bar can vary in size. */
size: PropTypes.oneOf(_.without(SUI.SIZES, 'medium', 'big')),
}
Rating.Icon = RatingIcon
export default Rating