mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
64 lines
2.3 KiB
JavaScript
64 lines
2.3 KiB
JavaScript
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
var UserStore = require('../stores/user_store.jsx');
|
|
|
|
export default class PostDeletedModal extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {};
|
|
}
|
|
render() {
|
|
var currentUser = UserStore.getCurrentUser();
|
|
|
|
if (currentUser != null) {
|
|
return (
|
|
<div
|
|
className='modal fade'
|
|
ref='modal'
|
|
id='post_deleted'
|
|
tabIndex='-1'
|
|
role='dialog'
|
|
aria-hidden='true'
|
|
>
|
|
<div className='modal-dialog'>
|
|
<div className='modal-content'>
|
|
<div className='modal-header'>
|
|
<button
|
|
type='button'
|
|
className='close'
|
|
data-dismiss='modal'
|
|
aria-label='Close'
|
|
>
|
|
<span aria-hidden='true'>×</span>
|
|
</button>
|
|
<h4
|
|
className='modal-title'
|
|
id='myModalLabel'
|
|
>
|
|
Comment could not be posted
|
|
</h4>
|
|
</div>
|
|
<div className='modal-body'>
|
|
<p>Someone deleted the message on which you tried to post a comment.</p>
|
|
</div>
|
|
<div className='modal-footer'>
|
|
<button
|
|
type='button'
|
|
className='btn btn-primary'
|
|
data-dismiss='modal'
|
|
>
|
|
Okay
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return <div/>;
|
|
}
|
|
}
|