Merge pull request #237 from yldio/feature/styled-link

styled-link (fixes #226)
This commit is contained in:
Sérgio Ramos 2017-02-09 11:03:43 +00:00 committed by GitHub
commit 935ab4a749
1 changed files with 29 additions and 8 deletions

View File

@ -4,6 +4,7 @@ const isString = require('lodash.isstring');
const match = require('../../shared/match');
const React = require('react');
const Styled = require('styled-components');
const ReactRouter = require('react-router-dom');
const {
base,
@ -23,6 +24,10 @@ const {
css
} = Styled;
const {
Link
} = ReactRouter;
const background = match({
secondary: base.white,
disabled: inactive.default
@ -95,7 +100,7 @@ const style = css`
border: solid ${remcalc(1)} ${border};
box-shadow: ${boxes.bottomShaddow};
&:focus {
outline: 0;
text-decoration: none;
@ -128,9 +133,9 @@ const style = css`
const StyledButton = styled.button`
min-width: ${remcalc(120)};
${style}
// Need to use HTML element selector, as adjecent buttons may have
// different class names if they are primary/secondary/disabled
// different class names if they are primary/secondary/disabled
& + button {
margin-left: 20px;
}
@ -141,6 +146,10 @@ const StyledAnchor = styled.a`
${style}
`;
const StyledLink = styled(Link)`
display: inline-block !important;
${style}
`;
const Button = (props) => {
// support FormattedMessage
@ -152,15 +161,27 @@ const Button = (props) => {
);
}
return props.href ? (
<StyledAnchor {...props} />
) : (
<StyledButton {...props} />
const {
href = '',
rr = false
} = props;
const Views = [
() => !href ? StyledButton : null,
() => !rr ? StyledAnchor : null,
() => StyledLink
];
const View = Views.reduce((sel, view) => sel ? sel : view(), null);
return (
<View {...props} />
);
};
Button.propTypes = {
href: React.PropTypes.string
href: React.PropTypes.string,
rr: React.PropTypes.bool
};
module.exports = Button;