2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-12-27 10:59:37 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity 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 General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2016-12-30 12:28:12 +01:00
|
|
|
import ReactPortal from 'react-portal';
|
2016-12-27 10:59:37 +01:00
|
|
|
import keycode from 'keycode';
|
|
|
|
|
|
|
|
import { CloseIcon } from '~/ui/Icons';
|
|
|
|
import ParityBackground from '~/ui/ParityBackground';
|
|
|
|
|
|
|
|
import styles from './portal.css';
|
|
|
|
|
2016-12-30 12:28:12 +01:00
|
|
|
export default class Portal extends Component {
|
2016-12-27 10:59:37 +01:00
|
|
|
static propTypes = {
|
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
open: PropTypes.bool.isRequired,
|
|
|
|
|
|
|
|
children: PropTypes.node,
|
|
|
|
className: PropTypes.string,
|
|
|
|
onKeyDown: PropTypes.func
|
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
expanded: false
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
if (this.props.open !== nextProps.open) {
|
|
|
|
const opening = nextProps.open;
|
|
|
|
const closing = !opening;
|
|
|
|
|
|
|
|
if (opening) {
|
|
|
|
return this.setState({ expanded: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
if (closing) {
|
|
|
|
return this.setState({ expanded: false });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { expanded } = this.state;
|
|
|
|
const { children, className } = this.props;
|
|
|
|
|
|
|
|
const classes = [ styles.overlay, className ];
|
2016-12-31 14:28:16 +01:00
|
|
|
const backClasses = [ styles.backOverlay ];
|
2016-12-27 10:59:37 +01:00
|
|
|
|
|
|
|
if (expanded) {
|
|
|
|
classes.push(styles.expanded);
|
2016-12-31 14:28:16 +01:00
|
|
|
backClasses.push(styles.expanded);
|
2016-12-27 10:59:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2016-12-30 12:28:12 +01:00
|
|
|
<ReactPortal isOpened onClose={ this.handleClose }>
|
2016-12-31 14:28:16 +01:00
|
|
|
<div className={ backClasses.join(' ') } onClick={ this.handleClose }>
|
|
|
|
<div
|
|
|
|
className={ classes.join(' ') }
|
|
|
|
onClick={ this.stopEvent }
|
|
|
|
onKeyDown={ this.handleKeyDown }
|
|
|
|
>
|
|
|
|
<ParityBackground className={ styles.parityBackground } />
|
|
|
|
|
|
|
|
{ this.renderCloseIcon() }
|
|
|
|
{ children }
|
|
|
|
</div>
|
2016-12-27 10:59:37 +01:00
|
|
|
</div>
|
2016-12-30 12:28:12 +01:00
|
|
|
</ReactPortal>
|
2016-12-27 10:59:37 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderCloseIcon () {
|
|
|
|
const { expanded } = this.state;
|
|
|
|
|
|
|
|
if (!expanded) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={ styles.closeIcon } onClick={ this.handleClose }>
|
|
|
|
<CloseIcon />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-12-31 14:28:16 +01:00
|
|
|
stopEvent = (event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|
|
|
|
|
2016-12-27 10:59:37 +01:00
|
|
|
handleClose = () => {
|
|
|
|
this.props.onClose();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleKeyDown = (event) => {
|
|
|
|
const codeName = keycode(event);
|
|
|
|
|
|
|
|
switch (codeName) {
|
|
|
|
case 'esc':
|
|
|
|
event.preventDefault();
|
|
|
|
return this.handleClose();
|
|
|
|
|
|
|
|
default:
|
|
|
|
event.persist();
|
|
|
|
return this.props.onKeyDown(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleDOMAction = (ref, method) => {
|
|
|
|
const refItem = typeof ref === 'string' ? this.refs[ref] : ref;
|
|
|
|
const element = ReactDOM.findDOMNode(refItem);
|
|
|
|
|
|
|
|
if (!element || typeof element[method] !== 'function') {
|
|
|
|
console.warn('could not find', ref, 'or method', method);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return element[method]();
|
|
|
|
}
|
|
|
|
}
|