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

85 lines
1.5 KiB
JavaScript
Raw Normal View History

2017-02-27 17:41:08 +02:00
import { Subscriber } from 'react-broadcast';
import styled from 'styled-components';
import { Baseline } from '../../shared/composers';
import { colors } from '../../shared/constants';
import { remcalc, is } from '../../shared/functions';
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};
2017-02-27 17:41:08 +02:00
box-sizing: border-box;
${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%;
2017-02-27 17:41:08 +02:00
min-width: auto;
height: ${remcalc(124)};
2017-02-27 17:41:08 +02:00
display: flex;
overflow-x: visible;
overflow-y: visible;
${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-02-27 17:41:08 +02:00
const Options = ({
children,
...props
2017-02-27 17:41:08 +02:00
}) => {
const render = ({
fromHeader = false,
collapsed = false
}) => (
<Nav fromHeader={fromHeader} name='list-item-options'>
<StyledButton
secondary={!fromHeader}
collapsed={collapsed}
rect
{...props}
>
{children}
</StyledButton>
</Nav>
);
return (
<Subscriber channel='list-item'>
{render}
</Subscriber>
);
};
2017-01-09 14:13:12 +02:00
Options.propTypes = {
2017-02-27 17:41:08 +02:00
children: React.PropTypes.node,
collapsed: React.PropTypes.bool,
fromHeader: React.PropTypes.bool
2017-01-09 14:13:12 +02:00
};
export default Baseline(
2017-02-15 03:19:26 +02:00
Options
);