Files
mattermost/webapp/components/post_deleted_modal.jsx
Christopher Speller 2bbedd9def Updating client dependencies. Switching to yarn. (#6433)
* Updating client dependancies. Switching to using yarn.

* Updating React

* Moving pure components to using function syntax (performance gains with newer react version)

* Updating client dependancies.

* Ignore .yarninstall

* Enabling pre-lockfile because it's the entire point of using yarn.

* Removing old webpack config

* Moving to new prop-types

* Fixing ESLint Errors

* Updating jest snapshots.

* Cleaning up package.json
2017-05-18 09:28:18 -04:00

72 lines
2.0 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {FormattedMessage} from 'react-intl';
import {Modal} from 'react-bootstrap';
import PropTypes from 'prop-types';
import React from 'react';
export default class PostDeletedModal extends React.Component {
constructor(props) {
super(props);
this.handleHide = this.handleHide.bind(this);
}
shouldComponentUpdate(nextProps) {
return nextProps.show !== this.props.show;
}
handleHide(e) {
e.preventDefault();
this.props.onHide();
}
render() {
return (
<Modal
show={this.props.show}
onHide={this.handleHide}
>
<Modal.Header closeButton={true}>
<Modal.Title>
<FormattedMessage
id='post_delete.notPosted'
defaultMessage='Comment could not be posted'
/>
</Modal.Title>
</Modal.Header>
<Modal.Body>
<p>
<FormattedMessage
id='post_delete.someone'
defaultMessage='Someone deleted the message on which you tried to post a comment.'
/>
</p>
</Modal.Body>
<Modal.Footer>
<button
type='button'
className='btn btn-primary'
onClick={this.handleHide}
>
<FormattedMessage
id='post_delete.okay'
defaultMessage='Okay'
/>
</button>
</Modal.Footer>
</Modal>
);
}
}
PostDeletedModal.propTypes = {
show: PropTypes.bool.isRequired,
onHide: PropTypes.func.isRequired
};