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

MDC button trailing icon support #622

Merged
merged 7 commits into from
Jan 22, 2019
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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
},
"devDependencies": {
"@google-cloud/storage": "^1.6.0",
"@material/button": "^0.41.0",
"@material/button": "^0.43.0",
"@material/card": "^0.41.0",
"@material/checkbox": "^0.41.0",
"@material/chips": "^0.41.0",
Expand Down
1 change: 1 addition & 0 deletions packages/button/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ unelevated | Boolean | Enables unelevated variant.
outlined | Boolean | Enables outlined variant.
dense | Boolean | Enables dense variant.
icon | Element | Icon to render within root element.
trailingIcon | Element | Icon to render on the right side of the element
children | String | Text to be displayed within root element.
disabled | Boolean | Disables button if true.
href | String | Sets a hyperlink & uses anchor tag instead of a button.
Expand Down
16 changes: 12 additions & 4 deletions packages/button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export interface ButtonProps<T extends ButtonTypes> extends Ripple.InjectedProps
className?: string;
icon?: React.ReactElement<React.HTMLProps<HTMLOrSVGElement>>;
href?: string;
trailingIcon?: React.ReactElement<React.HTMLProps<HTMLOrSVGElement>>;
}

export const Button = <T extends ButtonTypes>(
Expand All @@ -51,6 +52,7 @@ export const Button = <T extends ButtonTypes>(
href,
children,
initRipple,
trailingIcon,
// eslint disabled since we do not want to include
// this in ...otherProps.
// if unbounded is passed to the <button> element, it will throw
Expand All @@ -74,16 +76,22 @@ export const Button = <T extends ButtonTypes>(
if (href) {
return (
<a {...props as React.HTMLProps<HTMLAnchorElement>} href={href}>
{renderIcon(icon)}
{children}
{!trailingIcon ? renderIcon(icon) : null}
<span className='mdc-button__label'>
{children}
</span>
{trailingIcon ? renderIcon(trailingIcon) : null}
</a>
);
}

return (
<button {...props as React.HTMLProps<HTMLButtonElement>}>
{renderIcon(icon)}
{children}
{!trailingIcon ? renderIcon(icon) : null}
<span className='mdc-button__label'>
{children}
</span>
{trailingIcon ? renderIcon(trailingIcon) : null}
</button>
);
};
Expand Down
2 changes: 1 addition & 1 deletion packages/button/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"url": "https://github.com/material-components/material-components-web-react.git"
},
"dependencies": {
"@material/button": "^0.41.0",
"@material/button": "^0.43.0",
gugu marked this conversation as resolved.
Show resolved Hide resolved
"@material/react-ripple": "^0.8.0",
"classnames": "^2.2.5",
"react": "^16.4.2"
Expand Down
12 changes: 12 additions & 0 deletions test/screenshot/button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,18 @@ const ButtonScreenshotTest = () => {
Svg Icon
</Button>
</div>

<div className='button-container'>
<Button raised trailingIcon={<MaterialIcon icon='menu' />}>
Raised
</Button>
</div>

<div className='button-container'>
<Button raised trailingIcon={svgIcon}>
Svg Icon
</Button>
</div>
</div>
);
};
Expand Down
2 changes: 1 addition & 1 deletion test/screenshot/golden.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"button": "8941ec5719bb5c82418d335f37dd6e4d523bf8a1121b50a4df4c5a784ca41fbe",
"button": "57cb8769600669ec4d44dd23fcf2f6ded528ce8eec612d832c2b9e0271a640c3",
"card": "b2fd82763c383be438ff6578083bf9009711c7470333d07eb916ab690fc42d31",
"checkbox": "9c61177f0f927e178e7c6687d74cdfa08abc15ea8fc3c381f570b7c7d1f46d2a",
"chips": "e100a23df0b92c37920127c62d7d694ce3fe40c101c0ed05d535f5cafee62b27",
Expand Down
14 changes: 13 additions & 1 deletion test/unit/button/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test('classNames adds classes', () => {
assert.isTrue(wrapper.hasClass('mdc-button'));
});

test('does not render icon if props.icon is null', () => {
test('does not render icon if props.icon is null and props.trailingIcon is null', () => {
const wrapper = shallow(<Button />);
assert.equal(wrapper.find('.mdc-button__icon').length, 0);
});
Expand All @@ -24,6 +24,18 @@ test('renders an icon', () => {
assert.isTrue(wrapper.find('.test-icon').hasClass('mdc-button__icon'));
});

test('renders a trailing icon', () => {
gugu marked this conversation as resolved.
Show resolved Hide resolved
const icon = <i className='test-icon' />;
const wrapper = shallow(<Button trailingIcon={icon} />);
assert.isTrue(wrapper.find('.test-icon').hasClass('mdc-button__icon'));
});

test('renders a link with trailing icon', () => {
const icon = <i className='test-icon' />;
const wrapper = shallow(<Button href='/' trailingIcon={icon} />);
assert.isTrue(wrapper.find('.test-icon').hasClass('mdc-button__icon'));
});

test('renders a raised button', () => {
const wrapper = shallow(<Button raised />);
assert.isTrue(wrapper.hasClass('mdc-button--raised'));
Expand Down