mirror of
https://github.com/ascribe/onion.git
synced 2024-11-16 01:55:07 +01:00
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import Button from 'react-bootstrap/lib/Button';
|
|
import Modal from 'react-bootstrap/lib/Modal';
|
|
import OverlayMixin from 'react-bootstrap/lib/OverlayMixin';
|
|
import { getLangText } from '../utils/lang_utils.js';
|
|
|
|
let LoginModalHandler = React.createClass({
|
|
mixins: [OverlayMixin],
|
|
|
|
getInitialState() {
|
|
return {
|
|
isModalOpen: true
|
|
};
|
|
},
|
|
|
|
handleToggle() {
|
|
this.setState({
|
|
isModalOpen: !this.state.isModalOpen
|
|
});
|
|
},
|
|
|
|
render() {
|
|
if(!this.state.isModalOpen || !(this.props.query.login === '')) {
|
|
return <span/>;
|
|
}
|
|
|
|
return (
|
|
<Modal title='Modal heading' onRequestHide={this.handleToggle}>
|
|
<div className='modal-body'>
|
|
This modal is controlled by our custom trigger component.
|
|
</div>
|
|
<div className='modal-footer'>
|
|
<Button onClick={this.handleToggle}>{getLangText('Close')}</Button>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default LoginModalHandler; |