Split delete modal trigger for reuse (#5740)

Spllit delete modal trigger for reuse and make emoji delete
to use this modal trigger.
Этот коммит содержится в:
VeraLyu
2017-03-19 21:53:12 +08:00
коммит произвёл Joram Wilander
родитель efd6c86066
Коммит 9b10f3ef54
5 изменённых файлов: 133 добавлений и 65 удалений

62
webapp/components/delete_modal_trigger.jsx Обычный файл
Просмотреть файл

@@ -0,0 +1,62 @@
import React from 'react';
import ConfirmModal from './confirm_modal.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.state = {
showDeleteModal: false
};
}
handleOpenModal(e) {
e.preventDefault();
this.setState({
showDeleteModal: true
});
}
handleConfirm(e) {
this.props.onDelete(e);
}
handleCancel() {
this.setState({
showDeleteModal: false
});
}
render() {
return (
<span>
<a
href='#'
onClick={this.handleOpenModal}
>
{ this.triggerTitle }
</a>
<ConfirmModal
show={this.state.showDeleteModal}
title={this.modalTitle}
message={this.modalMessage}
confirmButton={this.modalConfirmButton}
onConfirm={this.handleConfirm}
onCancel={this.handleCancel}
/>
</span>
);
}
}
DeleteModalTrigger.propTypes = {
onDelete: React.PropTypes.func.isRequired
};