From 12896bd23eeba79884245c1c29fdc568cf21a7fa Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Mon, 14 Mar 2016 08:50:46 -0400 Subject: Converting to Webpack. Stage 1. --- webapp/components/confirm_modal.jsx | 69 +++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 webapp/components/confirm_modal.jsx (limited to 'webapp/components/confirm_modal.jsx') diff --git a/webapp/components/confirm_modal.jsx b/webapp/components/confirm_modal.jsx new file mode 100644 index 000000000..ef91b5ec0 --- /dev/null +++ b/webapp/components/confirm_modal.jsx @@ -0,0 +1,69 @@ +// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +import {FormattedMessage} from 'react-intl'; +import {Modal} from 'react-bootstrap'; + +import React from 'react'; + +export default class ConfirmModal extends React.Component { + constructor(props) { + super(props); + + this.handleConfirm = this.handleConfirm.bind(this); + } + + handleConfirm() { + this.props.onConfirm(); + } + + render() { + return ( + + + {this.props.title} + + + {this.props.message} + + + + + + + ); + } +} + +ConfirmModal.defaultProps = { + title: '', + message: '', + confirmButton: '' +}; +ConfirmModal.propTypes = { + show: React.PropTypes.bool.isRequired, + title: React.PropTypes.node, + message: React.PropTypes.node, + confirmButton: React.PropTypes.node, + onConfirm: React.PropTypes.func.isRequired, + onCancel: React.PropTypes.func.isRequired +}; -- cgit v1.2.3-1-g7c22