joyent-portal/ui/src/components/list/options.js

73 lines
1.2 KiB
JavaScript
Raw Normal View History

import styled from 'styled-components';
import { Baseline } from '../../shared/composers';
import { colors } from '../../shared/constants';
import { remcalc, is } from '../../shared/functions';
import transferProps from '../../shared/transfer-props';
import Button from '../button';
import React from 'react';
2017-01-09 14:13:12 +02:00
const Nav = styled.nav`
flex: 0 0 ${remcalc(47)};
border-left: ${remcalc(1)} solid ${colors.base.grey};
${is('fromHeader')`
border-left-color: ${colors.base.primary};
`};
2017-01-09 14:13:12 +02:00
`;
const StyledButton = styled(Button)`
border-width: 0;
box-shadow: none;
width: 100%;
height: ${remcalc(124)};
${is('collapsed')`
height: ${remcalc(46)};
`};
2017-01-09 14:13:12 +02:00
&:focus {
border-width: 0;
}
&:hover {
border-width: 0;
}
&:active,
&:active:hover,
&:active:focus {
border-width: 0;
}
`;
2017-01-09 20:58:30 +02:00
const Options = transferProps([
'collapsed',
'headed',
'fromHeader'
], ({
children,
fromHeader,
...props
}) => (
2017-01-09 20:58:30 +02:00
<Nav
fromHeader={fromHeader}
2017-01-09 20:58:30 +02:00
name='list-item-options'
>
2017-01-09 14:13:12 +02:00
<StyledButton
rect
secondary={!fromHeader}
2017-01-09 14:13:12 +02:00
{...props}
>
{children}
2017-01-09 14:13:12 +02:00
</StyledButton>
</Nav>
2017-01-09 20:58:30 +02:00
));
2017-01-09 14:13:12 +02:00
Options.propTypes = {
children: React.PropTypes.node
};
export default Baseline(
2017-02-15 03:19:26 +02:00
Options
);