| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /*
- Copyright (C) 2017 Cloudbase Solutions SRL
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- import React from 'react'
- import styled from 'styled-components'
- import PropTypes from 'prop-types'
- import Modal from 'react-modal'
- import Palette from '../../styleUtils/Palette'
- import StyleProps from '../../styleUtils/StyleProps'
- const Title = styled.div`
- height: 48px;
- font-size: 24px;
- font-weight: ${StyleProps.fontWeights.light};
- background: ${Palette.grayscale[1]};
- border-top-radius: ${StyleProps.borderRadius};
- text-align: center;
- line-height: 48px;
- `
- class NewModal extends React.Component {
- static defaultProps = {
- topBottomMargin: 8,
- }
- static propTypes = {
- children: PropTypes.node.isRequired,
- isOpen: PropTypes.bool.isRequired,
- contentLabel: PropTypes.string,
- onRequestClose: PropTypes.func,
- contentStyle: PropTypes.object,
- topBottomMargin: PropTypes.number,
- title: PropTypes.string,
- }
- constructor() {
- super()
- this.positionModal = this.positionModal.bind(this)
- }
- componentDidMount() {
- window.addEventListener('resize', this.positionModal, true)
- setTimeout(this.positionModal, 100)
- }
- componentWillReceiveProps(newProps) {
- if (this.props.isOpen === true && newProps.isOpen === false) {
- this.handleModalClose()
- }
- }
- componentWillUpdate() {
- setTimeout(this.positionModal, 100)
- }
- componentWillUnmount() {
- window.removeEventListener('resize', this.positionModal, true)
- }
- handleChildUpdate() {
- setTimeout(this.positionModal, 100)
- }
- handleModalOpen() {
- this.windowScrollY = window.scrollY
- document.body.style.top = `${-this.windowScrollY}px`
- document.body.style.position = 'fixed'
- document.body.style.width = '100%'
- document.body.style.height = '100%'
- }
- handleModalClose() {
- document.body.style.top = ''
- document.body.style.position = ''
- document.body.style.width = ''
- document.body.style.height = ''
- window.scroll(0, this.windowScrollY)
- }
- positionModal() {
- let pageNode = this.modalDiv && this.modalDiv.node.firstChild
- let contentNode = pageNode && pageNode.firstChild
- if (!contentNode) {
- return
- }
- let scrollTop = contentNode.scrollTop
- contentNode.style.height = 'auto'
- let left = (pageNode.offsetWidth / 2) - (contentNode.offsetWidth / 2)
- let top = (pageNode.offsetHeight / 2) - (contentNode.offsetHeight / 2)
- let height = 'auto'
- if (top < this.props.topBottomMargin) {
- top = this.props.topBottomMargin
- height = `${pageNode.offsetHeight - (this.props.topBottomMargin * 2)}px`
- }
- contentNode.style.left = `${left}px`
- contentNode.style.top = `${top}px`
- contentNode.style.height = height
- contentNode.style.opacity = 1
- contentNode.scrollTo(0, scrollTop)
- }
- renderTitle() {
- if (!this.props.title) {
- return null
- }
- return <Title>{this.props.title}</Title>
- }
- render() {
- let modalStyle = {
- overlay: {
- position: 'fixed',
- zIndex: 1000,
- top: 0,
- left: 0,
- right: 0,
- bottom: 0,
- backgroundColor: 'rgba(164, 170, 181, 0.69)',
- },
- content: {
- padding: 0,
- width: '576px',
- overflowX: 'hidden',
- borderRadius: '4px',
- border: 'none',
- bottom: 'auto',
- top: 'auto',
- left: 'auto',
- right: 'auto',
- transition: 'all 0.2s',
- opacity: 0,
- },
- }
- modalStyle.content = {
- ...modalStyle.content,
- ...this.props.contentStyle,
- }
- let children = React.Children.map(this.props.children,
- child => React.cloneElement(child, {
- onResizeUpdate: () => { this.handleChildUpdate() },
- })
- )
- return (
- <Modal
- ref={m => { this.modalDiv = m }}
- isOpen={this.props.isOpen}
- contentLabel={this.props.contentLabel || this.props.title}
- style={modalStyle}
- onRequestClose={this.props.onRequestClose}
- onAfterOpen={() => { this.handleModalOpen() }}
- >
- {this.renderTitle()}
- {children}
- </Modal>
- )
- }
- }
- export default NewModal
|