blob: cdef1c1ea3a889b7308f0a5a9036200d038b89a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
const Modal = ReactBootstrap.Modal;
export default class ConfirmModal extends React.Component {
constructor(props) {
super(props);
this.handleConfirm = this.handleConfirm.bind(this);
}
handleConfirm() {
this.props.onConfirm();
}
render() {
return (
<Modal
className='modal-confirm'
show={this.props.show}
onHide={this.props.onCancel}
>
<Modal.Header closeButton={false}>
<Modal.Title>{this.props.title}</Modal.Title>
</Modal.Header>
<Modal.Body>
{this.props.message}
</Modal.Body>
<Modal.Footer>
<button
type='button'
className='btn btn-default'
onClick={this.props.onCancel}
>
{'Cancel'}
</button>
<button
type='button'
className='btn btn-primary'
onClick={this.props.onConfirm}
>
{this.props.confirm_button}
</button>
</Modal.Footer>
</Modal>
);
}
}
ConfirmModal.defaultProps = {
title: '',
message: '',
confirm_button: ''
};
ConfirmModal.propTypes = {
show: React.PropTypes.bool.isRequired,
title: React.PropTypes.string,
message: React.PropTypes.string,
confirm_button: React.PropTypes.string,
onConfirm: React.PropTypes.func.isRequired,
onCancel: React.PropTypes.func.isRequired
};
|