| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import {
- Button, Modal, ModalHeader, ModalBody, ModalFooter,
- } from 'reactstrap';
- import { format } from 'date-fns';
- import UserPicture from '../User/UserPicture';
- import Username from '../User/Username';
- export default class DeleteCommentModal extends React.Component {
- /*
- * the threshold for omitting body
- */
- static get OMIT_BODY_THRES() { return 400 }
- componentWillMount() {
- }
- render() {
- if (this.props.comment === undefined) {
- return <div></div>;
- }
- const comment = this.props.comment;
- const commentDate = format(new Date(comment.createdAt), 'yyyy/MM/dd HH:mm');
- // generate body
- let commentBody = comment.comment;
- if (commentBody.length > DeleteCommentModal.OMIT_BODY_THRES) { // omit
- commentBody = `${commentBody.substr(0, DeleteCommentModal.OMIT_BODY_THRES)}...`;
- }
- commentBody = <span style={{ whiteSpace: 'pre-wrap' }}>{commentBody}</span>;
- return (
- <Modal isOpen={this.props.isShown} toggle={this.props.cancel} className="page-comment-delete-modal">
- <ModalHeader tag="h4" toggle={this.props.cancel} className="bg-danger">
- <span>
- <i className="icon-fw icon-fire"></i>
- Delete comment?
- </span>
- </ModalHeader>
- <ModalBody>
- <UserPicture user={comment.creator} size="xs" /> <strong><Username user={comment.creator}></Username></strong> wrote on {commentDate}:
- <p className="card well comment-body mt-2 p-2">{commentBody}</p>
- </ModalBody>
- <ModalFooter>
- <span className="text-danger">{this.props.errorMessage}</span>
- <Button onClick={this.props.cancel}>Cancel</Button>
- <Button color="danger" onClick={this.props.confirmedToDelete}>
- <i className="icon icon-fire"></i>
- Delete
- </Button>
- </ModalFooter>
- </Modal>
- );
- }
- }
- DeleteCommentModal.propTypes = {
- isShown: PropTypes.bool.isRequired,
- comment: PropTypes.object,
- errorMessage: PropTypes.string,
- cancel: PropTypes.func.isRequired, // for cancel evnet handling
- confirmedToDelete: PropTypes.func.isRequired, // for confirmed event handling
- };
|