2017-05-18 21:21:33 +03:00
|
|
|
import React from 'react';
|
|
|
|
import styled, { css } from 'styled-components';
|
|
|
|
import { A } from 'normalized-styled-components';
|
|
|
|
import is from 'styled-is';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { Link as BaseLink } from 'react-router-dom';
|
|
|
|
import Baseline from '../baseline';
|
|
|
|
|
|
|
|
const style = css`
|
|
|
|
color: ${props => props.theme.primary};
|
|
|
|
|
|
|
|
${is('secondary')`
|
|
|
|
color: ${props => props.theme.white};
|
|
|
|
text-decoration: none;
|
|
|
|
`}
|
|
|
|
`;
|
|
|
|
|
2017-05-25 17:59:58 +03:00
|
|
|
const StyledAnchor = A.extend`
|
2017-05-18 21:21:33 +03:00
|
|
|
${style}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const StyledLink = styled(BaseLink)`
|
|
|
|
${style}
|
|
|
|
`;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @example ./usage.md
|
|
|
|
*/
|
|
|
|
const Anchor = ({ children, ...rest }) => {
|
|
|
|
const { to = '' } = rest;
|
|
|
|
|
|
|
|
const Views = [() => (to ? StyledLink : null), () => StyledAnchor];
|
|
|
|
const View = Views.reduce((sel, view) => (sel ? sel : view()), null);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<View {...rest}>
|
|
|
|
{children}
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
Anchor.propTypes = {
|
|
|
|
/**
|
|
|
|
* The `<a>` text
|
|
|
|
*/
|
|
|
|
children: PropTypes.node,
|
|
|
|
secondary: PropTypes.bool
|
|
|
|
};
|
|
|
|
|
|
|
|
Anchor.defaultProps = {
|
|
|
|
secondary: false
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Baseline(Anchor);
|