Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Stepper] Merge StepPositionIcon in StepIcon #12026

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/material-ui/src/StepIcon/StepIcon.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface StepIconProps
icon: React.ReactNode;
}

export type StepIconClasskey = 'root' | 'active' | 'completed' | 'error';
export type StepIconClasskey = 'root' | 'text' | 'active' | 'completed' | 'error';

declare const StepIcon: React.ComponentType<StepIconProps>;

Expand Down
18 changes: 14 additions & 4 deletions packages/material-ui/src/StepIcon/StepIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import classNames from 'classnames';
import CheckCircle from '../internal/svg-icons/CheckCircle';
import Warning from '../internal/svg-icons/Warning';
import withStyles from '../styles/withStyles';
import StepPositionIcon from './StepPositionIcon';
import SvgIcon from '../SvgIcon';

export const styles = theme => ({
root: {
display: 'block',
color: theme.palette.text.disabled,
'&$active': {
color: theme.palette.primary.main,
},
Expand All @@ -19,6 +20,11 @@ export const styles = theme => ({
color: theme.palette.error.main,
},
},
text: {
fill: theme.palette.primary.contrastText,
fontSize: theme.typography.caption.fontSize,
fontFamily: theme.typography.fontFamily,
},
active: {},
completed: {},
error: {},
Expand All @@ -35,12 +41,16 @@ function StepIcon(props) {
return <CheckCircle className={classNames(classes.root, classes.completed)} />;
}
return (
<StepPositionIcon
<SvgIcon
className={classNames(classes.root, {
[classes.active]: active,
})}
position={icon}
/>
>
<circle cx="12" cy="12" r="12" />
<text className={classes.text} x="12" y="16" textAnchor="middle">
{icon}
</text>
</SvgIcon>
);
}

Expand Down
17 changes: 9 additions & 8 deletions packages/material-ui/src/StepIcon/StepIcon.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { assert } from 'chai';
import CheckCircle from '../internal/svg-icons/CheckCircle';
import Warning from '../internal/svg-icons/Warning';
import { createShallow, createMount } from '../test-utils';
import StepPositionIcon from './StepPositionIcon';
import StepIcon from './StepIcon';
import SvgIcon from '../SvgIcon';

describe('<StepIcon />', () => {
let shallow;
Expand All @@ -31,13 +31,14 @@ describe('<StepIcon />', () => {
assert.strictEqual(warning.length, 1, 'should have an <Warning />');
});

it('renders <StepPositionIcon> when not completed', () => {
const wrapper = shallow(<StepIcon icon={1} active />);
const checkCircle = wrapper.find(StepPositionIcon);
assert.strictEqual(checkCircle.length, 1, 'should have an <StepPositionIcon />');
const props = checkCircle.props();
assert.strictEqual(props.position, 1, 'should set position');
assert.include(props.className, 'active');
it('renders a <SvgIcon>', () => {
const wrapper = shallow(<StepIcon icon={1} />);
assert.strictEqual(wrapper.find(SvgIcon).length, 1);
});

it('contains text "3" when position is "3"', () => {
const wrapper = shallow(<StepIcon icon={3} />);
assert.strictEqual(wrapper.find('text').text(), '3');
});

it('renders the custom icon', () => {
Expand Down
50 changes: 0 additions & 50 deletions packages/material-ui/src/StepIcon/StepPositionIcon.js

This file was deleted.

29 changes: 0 additions & 29 deletions packages/material-ui/src/StepIcon/StepPositionIcon.test.js

This file was deleted.

1 change: 1 addition & 0 deletions pages/api/step-icon.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Any other properties supplied will be spread to the root element (native element
You can override all the class names injected by Material-UI thanks to the `classes` property.
This property accepts the following keys:
- `root`
- `text`
- `active`
- `completed`
- `error`
Expand Down