// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import $ from 'jquery'; import ReactDOM from 'react-dom'; import Client from 'client/web_client.jsx'; import PostStore from 'stores/post_store.jsx'; import ModalStore from 'stores/modal_store.jsx'; import {Modal} from 'react-bootstrap'; import * as AsyncClient from 'utils/async_client.jsx'; import AppDispatcher from '../dispatcher/app_dispatcher.jsx'; import Constants from 'utils/constants.jsx'; import {FormattedMessage} from 'react-intl'; var ActionTypes = Constants.ActionTypes; import React from 'react'; export default class DeletePostModal extends React.Component { constructor(props) { super(props); this.handleDelete = this.handleDelete.bind(this); this.handleToggle = this.handleToggle.bind(this); this.handleHide = this.handleHide.bind(this); this.state = { show: false, post: null, commentCount: 0, error: '' }; } componentDidMount() { ModalStore.addModalListener(ActionTypes.TOGGLE_DELETE_POST_MODAL, this.handleToggle); } componentWillUnmount() { ModalStore.removeModalListener(ActionTypes.TOGGLE_DELETE_POST_MODAL, this.handleToggle); } componentDidUpdate(prevProps, prevState) { if (this.state.show && !prevState.show) { setTimeout(() => { $(ReactDOM.findDOMNode(this.refs.deletePostBtn)).focus(); }, 0); } } handleDelete() { Client.deletePost( this.state.post.channel_id, this.state.post.id, () => { PostStore.deletePost(this.state.post); if (this.state.post.id === PostStore.getSelectedPostId()) { AppDispatcher.handleServerAction({ type: ActionTypes.RECEIVED_POST_SELECTED, postId: null }); } }, (err) => { AsyncClient.dispatchError(err, 'deletePost'); } ); this.handleHide(); } handleToggle(value, args) { this.setState({ show: value, post: args.post, commentCount: args.commentCount, error: '' }); } handleHide() { this.setState({show: false}); } render() { if (!this.state.post) { return null; } var error = null; if (this.state.error) { error =
; } var commentWarning = ''; if (this.state.commentCount > 0) { commentWarning = ( ); } const postTerm = this.state.post.root_id ? ( ) : ( ); return (

{commentWarning} {error}
); } }