1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-16 09:33:16 +02:00
onion/js/components/ascribe_modal/modal_wrapper.js

107 lines
2.8 KiB
JavaScript
Raw Normal View History

'use strict';
2015-06-01 18:59:47 +02:00
import React from 'react';
import Modal from 'react-bootstrap/lib/Modal';
let ModalWrapper = React.createClass({
propTypes: {
title: React.PropTypes.oneOfType([
React.PropTypes.arrayOf(React.PropTypes.element),
React.PropTypes.element,
React.PropTypes.string
]).isRequired,
handleCancel: React.PropTypes.func,
handleSuccess: React.PropTypes.func,
trigger: React.PropTypes.element,
children: React.PropTypes.oneOfType([
React.PropTypes.arrayOf(React.PropTypes.element),
React.PropTypes.element
2015-10-20 15:10:18 +02:00
])
},
2015-06-01 18:59:47 +02:00
getInitialState() {
return {
showModal: false
};
},
show() {
this.setState({
showModal: true
});
},
hide() {
this.setState({
showModal: false
});
},
2015-06-01 18:59:47 +02:00
handleCancel() {
if (typeof this.props.handleCancel === 'function') {
this.props.handleCancel();
}
this.hide();
},
handleSuccess(response) {
if (typeof this.props.handleSuccess === 'function') {
this.props.handleSuccess(response);
}
this.hide();
2015-06-02 11:38:18 +02:00
},
2015-06-01 18:59:47 +02:00
renderChildren() {
return React.Children.map(this.props.children, (child) => {
return React.cloneElement(child, {
handleSuccess: (response) => {
if (typeof child.props.handleSuccess === 'function') {
child.props.handleSuccess(response);
}
this.handleSuccess(response);
}
2015-06-01 18:59:47 +02:00
});
});
},
2015-06-01 18:59:47 +02:00
render() {
const { trigger, title } = this.props;
2015-10-20 15:10:18 +02:00
// If the trigger component exists, we add the ModalWrapper's show() to its onClick method.
// The trigger component should, in most cases, be a button.
const clonedTrigger = React.isValidElement(trigger) ?
React.cloneElement(trigger, {
onClick: (...params) => {
if (typeof trigger.props.onClick === 'function') {
trigger.props.onClick(...params);
}
this.show();
}
}) : null;
2015-06-01 18:59:47 +02:00
return (
<span>
{clonedTrigger}
<Modal show={this.state.showModal} onHide={this.handleCancel}>
2015-10-14 12:16:49 +02:00
<Modal.Header closeButton>
<Modal.Title>
{title}
</Modal.Title>
</Modal.Header>
2015-10-14 12:16:49 +02:00
<div className="modal-body" >
{this.renderChildren()}
</div>
</Modal>
</span>
);
2015-06-01 18:59:47 +02:00
}
});
export default ModalWrapper;