gab-social/app/javascript/gabsocial/components/popover/popover_layout.js

72 lines
1.7 KiB
JavaScript
Raw Normal View History

2020-02-28 15:20:47 +00:00
import Block from '../block'
import Button from '../button'
import Heading from '../heading'
import Text from '../text'
2020-02-28 15:20:47 +00:00
export default class PopoverLayout extends PureComponent {
2020-03-24 04:39:12 +00:00
static propTypes = {
children: PropTypes.node,
2020-04-07 02:53:23 +01:00
width: PropTypes.number,
isXS: PropTypes.bool,
title: PropTypes.string,
onClose: PropTypes.func,
2020-04-07 02:53:23 +01:00
}
static defaultProps = {
width: 250,
2020-03-24 04:39:12 +00:00
}
handleOnClose = () => {
this.props.onClose()
}
2020-02-19 23:57:07 +00:00
render() {
const {
children,
width,
isXS,
title,
} = this.props
if (isXS) {
return (
<div className={[_s.default, _s.modal, _s.px10, _s.pb10].join(' ')}>
<div className={[_s.default, _s.bgPrimary, _s.radiusSmall, _s.overflowHidden, _s.mb10].join(' ')}>
{
!!title &&
<div className={[_s.default, _s.flexRow, _s.alignItemsCenter, _s.justifyContentCenter, _s.borderBottom1PX, _s.borderColorSecondary, _s.height53PX, _s.px15].join(' ')}>
<Heading size='2'>
{title}
</Heading>
</div>
}
<div className={[_s.default, _s.heightMax80VH, _s.radiusSmall, _s.overflowYScroll].join(' ')}>
{children}
</div>
</div>
<Button
backgroundColor='primary'
color='primary'
onClick={this.handleOnClose}
radiusSmall
>
<Text color='inherit' size='large' align='center'>
Cancel
</Text>
</Button>
</div>
)
}
2020-02-28 15:20:47 +00:00
2020-02-19 23:57:07 +00:00
return (
<div style={{ width: `${width}px` }} className={_s.modal}>
2020-02-28 15:20:47 +00:00
<Block>
{children}
</Block>
2020-02-19 23:57:07 +00:00
</div>
)
}
2020-02-19 23:57:07 +00:00
}