mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Implemented initial changes for files table * Removed *_benchmark_test.go files * Re-implemented GetPublicFile and added support for old path * Localization for files table * Moved file system code into utils package * Finished server-side changes and added initial upgrade script * Added getPostFiles api * Re-add Extension and HasPreviewImage fields to FileInfo * Removed unused translation * Fixed merge conflicts left over after permissions changes * Forced FileInfo.extension to be lower case * Changed FileUploadResponse to contain the FileInfos instead of FileIds * Fixed permissions on getFile* calls * Fixed notifications for file uploads * Added initial version of client code for files changes * Permanently added FileIds field to Post object and removed Post.HasFiles * Updated PostStore.Update to be usable in more circumstances * Re-added Filenames field and switched file migration to be entirely lazy-loaded * Increased max listener count for FileStore * Removed unused fileInfoCache * Moved file system code back into api * Removed duplicate test case * Fixed unit test running on ports other than 8065 * Renamed HasPermissionToPostContext to HasPermissionToChannelByPostContext * Refactored handleImages to make it more easily understandable * Renamed getPostFiles to getFileInfosForPost * Re-added pre-FileIds posts to analytics * Changed files to be saved as their ids as opposed to id/filename.ext * Renamed FileInfo.UserId to FileInfo.CreatorId * Fixed detection of language in CodePreview * Fixed switching between threads in the RHS not loading new files * Add serverside protection against a rare bug where the client sends the same file twice for a single post * Refactored the important parts of uploadFile api call into a function that can be called without a web context
449 lines
16 KiB
JavaScript
449 lines
16 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import $ from 'jquery';
|
|
import ReactDOM from 'react-dom';
|
|
import AppDispatcher from '../dispatcher/app_dispatcher.jsx';
|
|
import Client from 'client/web_client.jsx';
|
|
import UserStore from 'stores/user_store.jsx';
|
|
import PostDeletedModal from './post_deleted_modal.jsx';
|
|
import PostStore from 'stores/post_store.jsx';
|
|
import PreferenceStore from 'stores/preference_store.jsx';
|
|
import MessageHistoryStore from 'stores/message_history_store.jsx';
|
|
import Textbox from './textbox.jsx';
|
|
import MsgTyping from './msg_typing.jsx';
|
|
import FileUpload from './file_upload.jsx';
|
|
import FilePreview from './file_preview.jsx';
|
|
import * as Utils from 'utils/utils.jsx';
|
|
import * as UserAgent from 'utils/user_agent.jsx';
|
|
import * as GlobalActions from 'actions/global_actions.jsx';
|
|
|
|
import Constants from 'utils/constants.jsx';
|
|
|
|
import {FormattedMessage} from 'react-intl';
|
|
|
|
const ActionTypes = Constants.ActionTypes;
|
|
const KeyCodes = Constants.KeyCodes;
|
|
|
|
import React from 'react';
|
|
|
|
export default class CreateComment extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.lastTime = 0;
|
|
|
|
this.handleSubmit = this.handleSubmit.bind(this);
|
|
this.commentMsgKeyPress = this.commentMsgKeyPress.bind(this);
|
|
this.handleInput = this.handleInput.bind(this);
|
|
this.handleKeyDown = this.handleKeyDown.bind(this);
|
|
this.handleUploadClick = this.handleUploadClick.bind(this);
|
|
this.handleUploadStart = this.handleUploadStart.bind(this);
|
|
this.handleFileUploadComplete = this.handleFileUploadComplete.bind(this);
|
|
this.handleUploadError = this.handleUploadError.bind(this);
|
|
this.removePreview = this.removePreview.bind(this);
|
|
this.getFileCount = this.getFileCount.bind(this);
|
|
this.onPreferenceChange = this.onPreferenceChange.bind(this);
|
|
this.focusTextbox = this.focusTextbox.bind(this);
|
|
this.showPostDeletedModal = this.showPostDeletedModal.bind(this);
|
|
this.hidePostDeletedModal = this.hidePostDeletedModal.bind(this);
|
|
|
|
PostStore.clearCommentDraftUploads();
|
|
MessageHistoryStore.resetHistoryIndex('comment');
|
|
|
|
const draft = PostStore.getCommentDraft(this.props.rootId);
|
|
this.state = {
|
|
messageText: draft.message,
|
|
uploadsInProgress: draft.uploadsInProgress,
|
|
fileInfos: draft.fileInfos,
|
|
submitting: false,
|
|
ctrlSend: PreferenceStore.getBool(Constants.Preferences.CATEGORY_ADVANCED_SETTINGS, 'send_on_ctrl_enter'),
|
|
showPostDeletedModal: false
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
PreferenceStore.addChangeListener(this.onPreferenceChange);
|
|
this.focusTextbox();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
PreferenceStore.removeChangeListener(this.onPreferenceChange);
|
|
}
|
|
|
|
onPreferenceChange() {
|
|
this.setState({
|
|
ctrlSend: PreferenceStore.getBool(Constants.Preferences.CATEGORY_ADVANCED_SETTINGS, 'send_on_ctrl_enter')
|
|
});
|
|
}
|
|
|
|
componentDidUpdate(prevProps, prevState) {
|
|
if (prevState.uploadsInProgress < this.state.uploadsInProgress) {
|
|
$('.post-right__scroll').scrollTop($('.post-right__scroll')[0].scrollHeight);
|
|
}
|
|
|
|
if (prevProps.rootId !== this.props.rootId) {
|
|
this.focusTextbox();
|
|
}
|
|
}
|
|
|
|
handleSubmit(e) {
|
|
e.preventDefault();
|
|
|
|
if (this.state.uploadsInProgress.length > 0) {
|
|
return;
|
|
}
|
|
|
|
if (this.state.submitting) {
|
|
return;
|
|
}
|
|
|
|
const post = {};
|
|
post.file_ids = [];
|
|
post.message = this.state.messageText;
|
|
|
|
if (post.message.trim().length === 0 && this.state.fileInfos.length === 0) {
|
|
return;
|
|
}
|
|
|
|
if (post.message.length > Constants.CHARACTER_LIMIT) {
|
|
this.setState({
|
|
postError: (
|
|
<FormattedMessage
|
|
id='create_comment.commentLength'
|
|
defaultMessage='Comment length must be less than {max} characters.'
|
|
values={{max: Constants.CHARACTER_LIMIT}}
|
|
/>
|
|
)
|
|
});
|
|
return;
|
|
}
|
|
|
|
MessageHistoryStore.storeMessageInHistory(this.state.messageText);
|
|
|
|
const userId = UserStore.getCurrentId();
|
|
|
|
post.channel_id = this.props.channelId;
|
|
post.root_id = this.props.rootId;
|
|
post.parent_id = this.props.rootId;
|
|
post.file_ids = this.state.fileInfos.map((info) => info.id);
|
|
const time = Utils.getTimestamp();
|
|
post.pending_post_id = `${userId}:${time}`;
|
|
post.user_id = userId;
|
|
post.create_at = time;
|
|
|
|
GlobalActions.emitUserCommentedEvent(post);
|
|
Client.createPost(
|
|
post,
|
|
(data) => {
|
|
PostStore.removePendingPost(post.channel_id, post.pending_post_id);
|
|
|
|
AppDispatcher.handleServerAction({
|
|
type: ActionTypes.RECEIVED_POST,
|
|
post: data
|
|
});
|
|
},
|
|
(err) => {
|
|
if (err.id === 'api.post.create_post.root_id.app_error') {
|
|
this.showPostDeletedModal();
|
|
|
|
PostStore.removePendingPost(post.channel_id, post.pending_post_id);
|
|
} else {
|
|
post.state = Constants.POST_FAILED;
|
|
PostStore.updatePendingPost(post);
|
|
}
|
|
|
|
this.setState({
|
|
submitting: false
|
|
});
|
|
}
|
|
);
|
|
|
|
this.setState({
|
|
messageText: '',
|
|
submitting: false,
|
|
postError: null,
|
|
fileInfos: [],
|
|
serverError: null
|
|
});
|
|
}
|
|
|
|
commentMsgKeyPress(e) {
|
|
if (!UserAgent.isMobileApp() && ((this.state.ctrlSend && e.ctrlKey) || !this.state.ctrlSend)) {
|
|
if (e.which === KeyCodes.ENTER && !e.shiftKey && !e.altKey) {
|
|
e.preventDefault();
|
|
ReactDOM.findDOMNode(this.refs.textbox).blur();
|
|
this.handleSubmit(e);
|
|
}
|
|
}
|
|
|
|
GlobalActions.emitLocalUserTypingEvent(this.props.channelId, this.props.rootId);
|
|
}
|
|
|
|
handleInput(e) {
|
|
const messageText = e.target.value;
|
|
|
|
const draft = PostStore.getCommentDraft(this.props.rootId);
|
|
draft.message = messageText;
|
|
PostStore.storeCommentDraft(this.props.rootId, draft);
|
|
|
|
$('.post-right__scroll').parent().scrollTop($('.post-right__scroll')[0].scrollHeight);
|
|
|
|
this.setState({messageText});
|
|
}
|
|
|
|
handleKeyDown(e) {
|
|
if (this.state.ctrlSend && e.keyCode === KeyCodes.ENTER && e.ctrlKey === true) {
|
|
this.commentMsgKeyPress(e);
|
|
return;
|
|
}
|
|
|
|
if (!e.ctrlKey && !e.metaKey && !e.altKey && !e.shiftKey && e.keyCode === KeyCodes.UP && this.state.messageText === '') {
|
|
e.preventDefault();
|
|
|
|
const lastPost = PostStore.getCurrentUsersLatestPost(this.props.channelId, this.props.rootId);
|
|
if (!lastPost) {
|
|
return;
|
|
}
|
|
|
|
AppDispatcher.handleViewAction({
|
|
type: ActionTypes.RECEIVED_EDIT_POST,
|
|
refocusId: '#reply_textbox',
|
|
title: Utils.localizeMessage('create_comment.commentTitle', 'Comment'),
|
|
message: lastPost.message,
|
|
postId: lastPost.id,
|
|
channelId: lastPost.channel_id,
|
|
comments: PostStore.getCommentCount(lastPost)
|
|
});
|
|
}
|
|
|
|
if ((e.ctrlKey || e.metaKey) && !e.altKey && !e.shiftKey && (e.keyCode === Constants.KeyCodes.UP || e.keyCode === Constants.KeyCodes.DOWN)) {
|
|
const lastMessage = MessageHistoryStore.nextMessageInHistory(e.keyCode, this.state.messageText, 'comment');
|
|
if (lastMessage !== null) {
|
|
e.preventDefault();
|
|
this.setState({
|
|
messageText: lastMessage
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
handleUploadClick() {
|
|
this.focusTextbox();
|
|
}
|
|
|
|
handleUploadStart(clientIds) {
|
|
const draft = PostStore.getCommentDraft(this.props.rootId);
|
|
|
|
draft.uploadsInProgress = draft.uploadsInProgress.concat(clientIds);
|
|
PostStore.storeCommentDraft(this.props.rootId, draft);
|
|
|
|
this.setState({uploadsInProgress: draft.uploadsInProgress});
|
|
|
|
// this is a bit redundant with the code that sets focus when the file input is clicked,
|
|
// but this also resets the focus after a drag and drop
|
|
this.focusTextbox();
|
|
}
|
|
|
|
handleFileUploadComplete(fileInfos, clientIds) {
|
|
const draft = PostStore.getCommentDraft(this.props.rootId);
|
|
|
|
// remove each finished file from uploads
|
|
for (let i = 0; i < clientIds.length; i++) {
|
|
const index = draft.uploadsInProgress.indexOf(clientIds[i]);
|
|
|
|
if (index !== -1) {
|
|
draft.uploadsInProgress.splice(index, 1);
|
|
}
|
|
}
|
|
|
|
draft.fileInfos = draft.fileInfos.concat(fileInfos);
|
|
PostStore.storeCommentDraft(this.props.rootId, draft);
|
|
|
|
this.setState({uploadsInProgress: draft.uploadsInProgress, fileInfos: draft.fileInfos});
|
|
}
|
|
|
|
handleUploadError(err, clientId) {
|
|
if (clientId === -1) {
|
|
this.setState({serverError: err});
|
|
} else {
|
|
const draft = PostStore.getCommentDraft(this.props.rootId);
|
|
|
|
const index = draft.uploadsInProgress.indexOf(clientId);
|
|
if (index !== -1) {
|
|
draft.uploadsInProgress.splice(index, 1);
|
|
}
|
|
|
|
PostStore.storeCommentDraft(this.props.rootId, draft);
|
|
|
|
this.setState({uploadsInProgress: draft.uploadsInProgress, serverError: err});
|
|
}
|
|
}
|
|
|
|
removePreview(id) {
|
|
const fileInfos = this.state.fileInfos;
|
|
const uploadsInProgress = this.state.uploadsInProgress;
|
|
|
|
// id can either be the id of an uploaded file or the client id of an in progress upload
|
|
let index = fileInfos.findIndex((info) => info.id === id);
|
|
if (index === -1) {
|
|
index = uploadsInProgress.indexOf(id);
|
|
|
|
if (index !== -1) {
|
|
uploadsInProgress.splice(index, 1);
|
|
this.refs.fileUpload.getWrappedInstance().cancelUpload(id);
|
|
}
|
|
} else {
|
|
fileInfos.splice(index, 1);
|
|
}
|
|
|
|
const draft = PostStore.getCommentDraft(this.props.rootId);
|
|
draft.fileInfos = fileInfos;
|
|
draft.uploadsInProgress = uploadsInProgress;
|
|
PostStore.storeCommentDraft(this.props.rootId, draft);
|
|
|
|
this.setState({fileInfos, uploadsInProgress});
|
|
}
|
|
|
|
componentWillReceiveProps(newProps) {
|
|
if (newProps.rootId !== this.props.rootId) {
|
|
const draft = PostStore.getCommentDraft(newProps.rootId);
|
|
this.setState({messageText: draft.message, uploadsInProgress: draft.uploadsInProgress, fileInfos: draft.fileInfos});
|
|
}
|
|
}
|
|
|
|
getFileCount() {
|
|
return this.state.fileInfos.length + this.state.uploadsInProgress.length;
|
|
}
|
|
|
|
focusTextbox() {
|
|
if (!Utils.isMobile()) {
|
|
this.refs.textbox.focus();
|
|
}
|
|
}
|
|
|
|
showPostDeletedModal() {
|
|
this.setState({
|
|
showPostDeletedModal: true
|
|
});
|
|
}
|
|
|
|
hidePostDeletedModal() {
|
|
this.setState({
|
|
showPostDeletedModal: false
|
|
});
|
|
}
|
|
|
|
render() {
|
|
let serverError = null;
|
|
if (this.state.serverError) {
|
|
serverError = (
|
|
<div className='form-group has-error'>
|
|
<label className='control-label'>{this.state.serverError}</label>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
let postError = null;
|
|
if (this.state.postError) {
|
|
postError = <label className='control-label'>{this.state.postError}</label>;
|
|
}
|
|
|
|
let preview = null;
|
|
if (this.state.fileInfos.length > 0 || this.state.uploadsInProgress.length > 0) {
|
|
preview = (
|
|
<FilePreview
|
|
fileInfos={this.state.fileInfos}
|
|
onRemove={this.removePreview}
|
|
uploadsInProgress={this.state.uploadsInProgress}
|
|
/>
|
|
);
|
|
}
|
|
|
|
let postFooterClassName = 'post-create-footer';
|
|
if (postError) {
|
|
postFooterClassName += ' has-error';
|
|
}
|
|
|
|
let uploadsInProgressText = null;
|
|
if (this.state.uploadsInProgress.length > 0) {
|
|
uploadsInProgressText = (
|
|
<span className='pull-right post-right-comments-upload-in-progress'>
|
|
{this.state.uploadsInProgress.length === 1 ? (
|
|
<FormattedMessage
|
|
id='create_comment.file'
|
|
defaultMessage='File uploading'
|
|
/>
|
|
) : (
|
|
<FormattedMessage
|
|
id='create_comment.files'
|
|
defaultMessage='Files uploading'
|
|
/>
|
|
)}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<form onSubmit={this.handleSubmit}>
|
|
<div className='post-create'>
|
|
<div
|
|
id={this.props.rootId}
|
|
className='post-create-body comment-create-body'
|
|
>
|
|
<div className='post-body__cell'>
|
|
<Textbox
|
|
onInput={this.handleInput}
|
|
onKeyPress={this.commentMsgKeyPress}
|
|
onKeyDown={this.handleKeyDown}
|
|
messageText={this.state.messageText}
|
|
createMessage={Utils.localizeMessage('create_comment.addComment', 'Add a comment...')}
|
|
initialText=''
|
|
supportsCommands={false}
|
|
channelId={this.props.channelId}
|
|
id='reply_textbox'
|
|
ref='textbox'
|
|
/>
|
|
<FileUpload
|
|
ref='fileUpload'
|
|
getFileCount={this.getFileCount}
|
|
onClick={this.handleUploadClick}
|
|
onUploadStart={this.handleUploadStart}
|
|
onFileUpload={this.handleFileUploadComplete}
|
|
onUploadError={this.handleUploadError}
|
|
postType='comment'
|
|
channelId={this.props.channelId}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<MsgTyping
|
|
channelId={this.props.channelId}
|
|
parentId={this.props.rootId}
|
|
/>
|
|
<div className={postFooterClassName}>
|
|
<input
|
|
type='button'
|
|
className='btn btn-primary comment-btn pull-right'
|
|
value={Utils.localizeMessage('create_comment.comment', 'Add Comment')}
|
|
onClick={this.handleSubmit}
|
|
/>
|
|
{uploadsInProgressText}
|
|
{preview}
|
|
{postError}
|
|
{serverError}
|
|
</div>
|
|
</div>
|
|
<PostDeletedModal
|
|
show={this.state.showPostDeletedModal}
|
|
onHide={this.hidePostDeletedModal}
|
|
/>
|
|
</form>
|
|
);
|
|
}
|
|
}
|
|
|
|
CreateComment.propTypes = {
|
|
channelId: React.PropTypes.string.isRequired,
|
|
rootId: React.PropTypes.string.isRequired
|
|
};
|