Vulcan/packages/nova-core/lib/components/ModalTrigger.jsx
Comus Leong 464e20a96c eslint & clean up code, also fixed some bugs (#1515)
* [eslint] update eslint rules & add .eslintignore to ignore non-ready nova packages

* [clean-up] nova-voting

* [clean-up] [bug] nova-users: missing user parameter

* [clean-up] nova-users

* [clean-up] nova-subscribe

* [clean-up] nova-settings

* [clean-up] nova-rss

* [clean-up] [bug] nova-posts: correct UsersRemoveDeletePosts

* [clean-up] nova-posts

* [clean-up] nova-notifications

* [clean-up] [bug] nova-newsletter: no error.message on throw error

* [clean-up] nova-newsletter

* [clean-up] nova-lib

* [clean-up] nova-kadira

* [clean-up] nova-inject-data

* [clean-up] nova-getting-started

* [clean-up] nova-forms

* [clean-up] nova-events

* [clean-up] [bug] nova-embedly: no FlowRouter

* [clean-up] nova-embedly

* [clean-up] nova-email-templates

* [clean-up] nova-email

* [clean-up] nova-debug

* [clean-up] nova-core

* [clean-up] [bug] nova-comments: correct UsersRemoveDeleteComments

* [clean-up] nova-comments

* [clean-up] [bug] nova-cloudinary: use Telescope.settings.collection instand

* [clean-up] nova-cloudinary

* [clean-up] nova-categories

* [clean-up] nova-base-components

* [clean-up] nova-api

* [eslint] extends react recommended

* [clean-up] for jsx files

* [eslint] extends meteor recommended

* i forgot this one little change
2016-11-25 13:46:55 -05:00

89 lines
2.1 KiB
JavaScript

import React, { PropTypes, Component } from 'react';
import ContextPasser from './ContextPasser.jsx'
import { Modal } from 'react-bootstrap';
// import Modal from 'react-modal';
class ModalTrigger extends Component {
constructor() {
super();
this.openModal = this.openModal.bind(this);
this.closeModal = this.closeModal.bind(this);
this.state = {
modalIsOpen: false
};
}
openModal() {
this.setState({modalIsOpen: true});
}
closeModal() {
this.setState({modalIsOpen: false});
}
// getChildContext() {
// const component = this;
// return {
// closeCallback: component.closeModal,
// currentUser: this.context.currentUser // pass on currentUser
// };
// }
renderHeader() {
return (
<Modal.Header closeButton>
<Modal.Title>{this.props.title}</Modal.Title>
</Modal.Header>
)
}
render() {
const triggerComponent = React.cloneElement(this.props.component, { onClick: this.openModal });
return (
<div className="modal-trigger">
{triggerComponent}
<Modal bsSize={this.props.size} show={this.state.modalIsOpen} onHide={this.closeModal}>
{this.props.title ? this.renderHeader() : null}
<Modal.Body>
<ContextPasser
currentUser={this.context.currentUser}
actions={this.context.actions}
events={this.context.events}
messages={this.context.messages}
closeCallback={this.closeModal}
>
{this.props.children}
</ContextPasser>
</Modal.Body>
</Modal>
</div>
)
}
}
ModalTrigger.propTypes = {
component: React.PropTypes.object.isRequired,
size: React.PropTypes.string
}
ModalTrigger.defaultProps = {
size: "large"
}
ModalTrigger.contextTypes = {
currentUser: React.PropTypes.object,
actions: React.PropTypes.object,
events: React.PropTypes.object,
messages: React.PropTypes.object
};
// ModalTrigger.childContextTypes = {
// closeCallback: React.PropTypes.func,
// currentUser: React.PropTypes.object
// }
module.exports = ModalTrigger;
export default ModalTrigger;