Skip to content

Commit e53642a

Browse files
committed
[fix] Fix Rating return NaN when using user event
1 parent 4c6248a commit e53642a

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

packages/mui-material/src/Rating/Rating.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,17 @@ const Rating = React.forwardRef(function Rating(inProps, ref) {
393393
onMouseMove(event);
394394
}
395395

396+
setFocusVisible(false);
397+
396398
const rootNode = rootRef.current;
397399
const { right, left, width: containerWidth } = rootNode.getBoundingClientRect();
398400

401+
if (!containerWidth) {
402+
// Workaround for test scenario using userEvent since jsdom defaults getBoundingClientRect to 0
403+
// Fix https://github.com/mui/material-ui/issues/38828
404+
return;
405+
}
406+
399407
let percent;
400408

401409
if (isRtl) {
@@ -416,8 +424,6 @@ const Rating = React.forwardRef(function Rating(inProps, ref) {
416424
},
417425
);
418426

419-
setFocusVisible(false);
420-
421427
if (onChangeActive && hover !== newHover) {
422428
onChangeActive(event, newHover);
423429
}

packages/mui-material/src/Rating/Rating.test.js

+20
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { stub, spy } from 'sinon';
44
import { act, createRenderer, fireEvent, screen } from '@mui/internal-test-utils';
55
import Rating, { ratingClasses as classes } from '@mui/material/Rating';
66
import { createTheme, ThemeProvider } from '@mui/material/styles';
7+
import userEvent from '@testing-library/user-event';
78
import describeConformance from '../../test/describeConformance';
89

910
describe('<Rating />', () => {
@@ -121,6 +122,25 @@ describe('<Rating />', () => {
121122
expect(checked.value).to.equal('2');
122123
});
123124

125+
it('should select the rating with user clicks using user-event', async () => {
126+
if (!/jsdom/.test(window.navigator.userAgent)) {
127+
this.skip();
128+
}
129+
130+
const user = userEvent.setup();
131+
const handleChange = spy();
132+
133+
const { container } = render(<Rating name="rating-test" onChange={handleChange} />);
134+
135+
await user.click(screen.getByLabelText('3 Stars'));
136+
137+
expect(handleChange.callCount).to.equal(1);
138+
expect(handleChange.args[0][1]).to.deep.equal(3);
139+
140+
const checked = container.querySelector('input[name="rating-test"]:checked');
141+
expect(checked.value).to.equal('3');
142+
});
143+
124144
it('should change the value to null', () => {
125145
const handleChange = spy();
126146
render(<Rating name="rating-test" onChange={handleChange} value={2} />);

0 commit comments

Comments
 (0)