blob: 54a1d6604f4386c27c0e28ee60ef315e4cf0b137 (
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
64
65
66
67
68
69
70
71
72
|
import PropTypes from 'prop-types';
import React from 'react';
import ConfirmModal from './confirm_modal.jsx';
import Constants from 'utils/constants.jsx';
export default class DeleteModalTrigger extends React.Component {
constructor(props) {
super(props);
if (this.constructor === DeleteModalTrigger) {
throw new TypeError('Can not construct abstract class.');
}
this.handleConfirm = this.handleConfirm.bind(this);
this.handleCancel = this.handleCancel.bind(this);
this.handleOpenModal = this.handleOpenModal.bind(this);
this.handleKeyDown = this.handleKeyDown.bind(this);
this.state = {
showDeleteModal: false
};
}
handleOpenModal(e) {
e.preventDefault();
this.setState({
showDeleteModal: true
});
}
handleConfirm() {
this.props.onDelete();
}
handleCancel() {
this.setState({
showDeleteModal: false
});
}
handleKeyDown(e) {
if (e.keyCode === Constants.KeyCodes.ENTER) {
this.handleConfirm(e);
}
}
render() {
return (
<span>
<a
href='#'
onClick={this.handleOpenModal}
>
{ this.triggerTitle }
</a>
<ConfirmModal
show={this.state.showDeleteModal}
title={this.modalTitle}
message={this.modalMessage}
confirmButtonText={this.modalConfirmButton}
onConfirm={this.handleConfirm}
onCancel={this.handleCancel}
onKeyDown={this.handleKeyDown}
/>
</span>
);
}
}
DeleteModalTrigger.propTypes = {
onDelete: PropTypes.func.isRequired
};
|