react-conventions
Version:
An open source set of React components that implement Ambassador's Design and UX patterns.
50 lines (42 loc) • 1.17 kB
JavaScript
import React from 'react'
import Modal from 'react-conventions/lib/Modal'
import Button from 'react-conventions/lib/Button'
class ExampleModalActions extends React.Component {
constructor(props) {
super(props);
this.state = {
open: false,
};
}
handleOpen = () => {
this.setState({open: true});
}
handleClose = () => {
this.setState({open: false});
}
handleSubmit = () => {
this.setState({open: false});
}
render() {
const actions = [
<Button onClick={this.handleClose} optClass="inverted">Cancel</Button>,
<Button onClick={this.handleSubmit}>Submit</Button>
];
return (
<div>
<Button onClick={this.handleOpen}>Open Modal</Button>
<Modal
title="Modal With Actions"
open={this.state.open}
onRequestClose={this.handleClose}
actions={actions}
closeOnAction={true}
>
<p>The actions in this window were passed in as an array of React objects.</p>
<p>This modal can only be closed by selecting one of the actions.</p>
</Modal>
</div>
);
}
}
export default ExampleModalActions