mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* #4665 Added EmojiPicker Work primarily by @broernr-de and @harrison on pre-release.mattermost.com * Final fixes to handle custom emojis from internal review and single merge error * ESLint fixes * CSS changes and other code to support emoji picker in reply window * Fix for file upload and emoji picker icon positions on post and comment. RHS emoji picker appearing see-through at this time. * Fix for two ESLint issues. * covered most of feedback: RHS emoji picker looks correct color-wise RHS emoji picker dynamically positions against height of thread size (post + reply messages) escape closes emoji window search box focused on open ESLint fixes against other files oversized emoji preview fixes * Adding in 'outside click' eventing to dismiss the emoji window * Changing some formatting to fix mismatch between my local eslant rules and jenkins. * adding alternative import method due to downstream testing errors * yet another attempt to retain functionality and pass tests - skipping import of browser store * fix for feedback items 5 and 7: * move search to float on top with stylistic changes * whitespace in the header (+1 squashed commit) Squashed commits: [6a26d32] changes that address items 1, 2, 6, 8, and 9 of latest feedback * Fix for attachment preview location on mobile * Fix for latest rounds of feedback * fixing eslint issue * making emojipicker sprite based, fixing alignments * Fix for emoji quality, fixing some behavior (hover background and cursor settings) undoing config changes * Preview feature for emojis * Adjustments to config file, and changing layout/design of attachment and emoji icon. * manual revert from master branch for config.json * reverting paperclip and fixing alignments. Additionally fixing inadvertent display of picker on mobile. * CSS changes to try to fix the hover behavior - currently working for emoji picker (when enabled), but hover for attachment isn't working * Made suggested changes by jwilander except for jQuery removal * Adding hover for both icons * removal of some usages of jQuery * Fix for two layout issues on IE11/Edge * UI improvements for emoji picker * Fix for many minor display issues * fix for additional appearance items * fix to two minor UI items * A little extra padding for IE11 * fix for IE11 scroll issue, and removing align attribute on img tag which was throwing js error * fixes some display issues on firefox * fix for uneven sides of emojis * fix for eslint issues that I didn't introduce * fix for missing bottom edge of RHS emojipicker. also fixing text overlapping icons on text area (including RHS) * Update "emoji selector" to "emoji picker" * changes for code review - removal of ..getDOMNode - use sprite imagery for emoji preview - remove lastBlurAt from state as it wasn't used * fixes for: - fake custom emoji preview in picker - RHS scrollbar on preview * fix for minor alignment of preview emoji
694 lines
25 KiB
JavaScript
694 lines
25 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import ReactDOM from 'react-dom';
|
|
import MsgTyping from './msg_typing.jsx';
|
|
import Textbox from './textbox.jsx';
|
|
import FileUpload from './file_upload.jsx';
|
|
import FilePreview from './file_preview.jsx';
|
|
import PostDeletedModal from './post_deleted_modal.jsx';
|
|
import TutorialTip from './tutorial/tutorial_tip.jsx';
|
|
import EmojiPicker from './emoji_picker/emoji_picker.jsx';
|
|
|
|
import AppDispatcher from 'dispatcher/app_dispatcher.jsx';
|
|
import * as GlobalActions from 'actions/global_actions.jsx';
|
|
import * as Utils from 'utils/utils.jsx';
|
|
import * as UserAgent from 'utils/user_agent.jsx';
|
|
import * as ChannelActions from 'actions/channel_actions.jsx';
|
|
import * as PostActions from 'actions/post_actions.jsx';
|
|
|
|
import ChannelStore from 'stores/channel_store.jsx';
|
|
import EmojiStore from 'stores/emoji_store.jsx';
|
|
import PostStore from 'stores/post_store.jsx';
|
|
import MessageHistoryStore from 'stores/message_history_store.jsx';
|
|
import UserStore from 'stores/user_store.jsx';
|
|
import PreferenceStore from 'stores/preference_store.jsx';
|
|
|
|
import Constants from 'utils/constants.jsx';
|
|
|
|
import {FormattedHTMLMessage} from 'react-intl';
|
|
import {browserHistory} from 'react-router/es6';
|
|
|
|
const Preferences = Constants.Preferences;
|
|
const TutorialSteps = Constants.TutorialSteps;
|
|
const ActionTypes = Constants.ActionTypes;
|
|
const KeyCodes = Constants.KeyCodes;
|
|
|
|
import React from 'react';
|
|
|
|
export const REACTION_PATTERN = /^(\+|-):([^:\s]+):\s*$/;
|
|
export const EMOJI_PATTERN = /:[A-Za-z-_0-9]*:/g;
|
|
|
|
export default class CreatePost extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.lastTime = 0;
|
|
|
|
this.handleSubmit = this.handleSubmit.bind(this);
|
|
this.postMsgKeyPress = this.postMsgKeyPress.bind(this);
|
|
this.handleChange = this.handleChange.bind(this);
|
|
this.handleFileUploadChange = this.handleFileUploadChange.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.onChange = this.onChange.bind(this);
|
|
this.onPreferenceChange = this.onPreferenceChange.bind(this);
|
|
this.getFileCount = this.getFileCount.bind(this);
|
|
this.handleKeyDown = this.handleKeyDown.bind(this);
|
|
this.handleBlur = this.handleBlur.bind(this);
|
|
this.sendMessage = this.sendMessage.bind(this);
|
|
this.focusTextbox = this.focusTextbox.bind(this);
|
|
this.showPostDeletedModal = this.showPostDeletedModal.bind(this);
|
|
this.hidePostDeletedModal = this.hidePostDeletedModal.bind(this);
|
|
this.showShortcuts = this.showShortcuts.bind(this);
|
|
this.handleEmojiClick = this.handleEmojiClick.bind(this);
|
|
this.handleEmojiPickerClick = this.handleEmojiPickerClick.bind(this);
|
|
this.handlePostError = this.handlePostError.bind(this);
|
|
this.closeEmoji = this.closeEmoji.bind(this);
|
|
|
|
PostStore.clearDraftUploads();
|
|
|
|
const draft = PostStore.getCurrentDraft();
|
|
|
|
this.state = {
|
|
channelId: ChannelStore.getCurrentId(),
|
|
message: draft.message,
|
|
uploadsInProgress: draft.uploadsInProgress,
|
|
fileInfos: draft.fileInfos,
|
|
submitting: false,
|
|
ctrlSend: PreferenceStore.getBool(Constants.Preferences.CATEGORY_ADVANCED_SETTINGS, 'send_on_ctrl_enter'),
|
|
fullWidthTextBox: PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, Preferences.CHANNEL_DISPLAY_MODE, Preferences.CHANNEL_DISPLAY_MODE_DEFAULT) === Preferences.CHANNEL_DISPLAY_MODE_FULL_SCREEN,
|
|
showTutorialTip: false,
|
|
showPostDeletedModal: false,
|
|
enableSendButton: false,
|
|
showEmojiPicker: false,
|
|
emojiPickerEnabled: Utils.isFeatureEnabled(Constants.PRE_RELEASE_FEATURES.EMOJI_PICKER_PREVIEW)
|
|
};
|
|
|
|
this.lastBlurAt = 0;
|
|
}
|
|
|
|
handlePostError(postError) {
|
|
this.setState({postError});
|
|
}
|
|
|
|
closeEmoji(clickEvent) {
|
|
/*
|
|
if the user clicked something outside the component, except the main emojipicker icon
|
|
and the picker is open, then close it
|
|
*/
|
|
if (clickEvent && clickEvent.srcElement &&
|
|
clickEvent.srcElement.className.indexOf('emoji-main') === -1 &&
|
|
this.state.showEmojiPicker) {
|
|
this.setState({showEmojiPicker: !this.state.showEmojiPicker});
|
|
}
|
|
}
|
|
|
|
handleSubmit(e) {
|
|
e.preventDefault();
|
|
|
|
if (this.state.uploadsInProgress.length > 0 || this.state.submitting) {
|
|
return;
|
|
}
|
|
|
|
const post = {};
|
|
post.file_ids = [];
|
|
post.message = this.state.message;
|
|
|
|
if (post.message.trim().length === 0 && this.state.fileInfos.length === 0) {
|
|
return;
|
|
}
|
|
|
|
if (this.state.postError) {
|
|
this.setState({errorClass: 'animation--highlight'});
|
|
setTimeout(() => {
|
|
this.setState({errorClass: null});
|
|
}, Constants.ANIMATION_TIMEOUT);
|
|
return;
|
|
}
|
|
|
|
MessageHistoryStore.storeMessageInHistory(this.state.message);
|
|
|
|
this.setState({submitting: true, serverError: null});
|
|
|
|
const isReaction = REACTION_PATTERN.exec(post.message);
|
|
if (post.message.indexOf('/') === 0) {
|
|
PostStore.storeDraft(this.state.channelId, null);
|
|
this.setState({message: '', postError: null, fileInfos: [], enableSendButton: false});
|
|
|
|
const args = {};
|
|
args.channel_id = this.state.channelId;
|
|
ChannelActions.executeCommand(
|
|
post.message,
|
|
args,
|
|
(data) => {
|
|
this.setState({submitting: false});
|
|
|
|
if (post.message.trim() === '/logout') {
|
|
GlobalActions.clientLogout(data.goto_location);
|
|
return;
|
|
}
|
|
|
|
if (data.goto_location && data.goto_location.length > 0) {
|
|
if (data.goto_location.startsWith('/') || data.goto_location.includes(window.location.hostname)) {
|
|
browserHistory.push(data.goto_location);
|
|
} else {
|
|
window.open(data.goto_location);
|
|
}
|
|
}
|
|
},
|
|
(err) => {
|
|
if (err.sendMessage) {
|
|
this.sendMessage(post);
|
|
} else {
|
|
const state = {};
|
|
state.serverError = err.message;
|
|
state.submitting = false;
|
|
this.setState({state});
|
|
}
|
|
}
|
|
);
|
|
} else if (isReaction && EmojiStore.has(isReaction[2])) {
|
|
this.sendReaction(isReaction);
|
|
} else {
|
|
this.sendMessage(post);
|
|
}
|
|
|
|
this.setState({
|
|
message: '',
|
|
submitting: false,
|
|
postError: null,
|
|
fileInfos: [],
|
|
serverError: null,
|
|
enableSendButton: false
|
|
});
|
|
|
|
const fasterThanHumanWillClick = 150;
|
|
const forceFocus = (Date.now() - this.lastBlurAt < fasterThanHumanWillClick);
|
|
|
|
this.focusTextbox(forceFocus);
|
|
}
|
|
|
|
sendMessage(post) {
|
|
post.channel_id = this.state.channelId;
|
|
post.file_ids = this.state.fileInfos.map((info) => info.id);
|
|
|
|
const time = Utils.getTimestamp();
|
|
const userId = UserStore.getCurrentId();
|
|
post.pending_post_id = `${userId}:${time}`;
|
|
post.user_id = userId;
|
|
post.create_at = time;
|
|
post.parent_id = this.state.parentId;
|
|
|
|
GlobalActions.emitUserPostedEvent(post);
|
|
|
|
// parse message and emit emoji event
|
|
const emojiResult = post.message.match(EMOJI_PATTERN);
|
|
if (emojiResult) {
|
|
emojiResult.forEach((emoji) => {
|
|
PostActions.emitEmojiPosted(emoji);
|
|
});
|
|
}
|
|
|
|
PostActions.queuePost(post, false, null,
|
|
(err) => {
|
|
if (err.id === 'api.post.create_post.root_id.app_error') {
|
|
// this should never actually happen since you can't reply from this textbox
|
|
this.showPostDeletedModal();
|
|
} else {
|
|
this.forceUpdate();
|
|
}
|
|
|
|
this.setState({
|
|
submitting: false
|
|
});
|
|
}
|
|
);
|
|
}
|
|
|
|
sendReaction(isReaction) {
|
|
const action = isReaction[1];
|
|
|
|
const emojiName = isReaction[2];
|
|
const postId = PostStore.getLatestPost(this.state.channelId).id;
|
|
|
|
if (action === '+') {
|
|
PostActions.addReaction(this.state.channelId, postId, emojiName);
|
|
} else if (action === '-') {
|
|
PostActions.removeReaction(this.state.channelId, postId, emojiName);
|
|
}
|
|
|
|
PostStore.storeCurrentDraft(null);
|
|
}
|
|
|
|
focusTextbox(keepFocus = false) {
|
|
if (keepFocus || !Utils.isMobile()) {
|
|
this.refs.textbox.focus();
|
|
}
|
|
}
|
|
|
|
postMsgKeyPress(e) {
|
|
if (!UserAgent.isMobile() && ((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.state.channelId, '');
|
|
}
|
|
|
|
handleChange(e) {
|
|
const message = e.target.value;
|
|
const enableSendButton = this.handleEnableSendButton(message, this.state.fileInfos);
|
|
|
|
this.setState({
|
|
message,
|
|
enableSendButton
|
|
});
|
|
|
|
const draft = PostStore.getCurrentDraft();
|
|
draft.message = message;
|
|
PostStore.storeCurrentDraft(draft);
|
|
}
|
|
|
|
handleFileUploadChange() {
|
|
this.focusTextbox(true);
|
|
}
|
|
|
|
handleUploadStart(clientIds, channelId) {
|
|
const draft = PostStore.getDraft(channelId);
|
|
|
|
draft.uploadsInProgress = draft.uploadsInProgress.concat(clientIds);
|
|
PostStore.storeDraft(channelId, 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, channelId) {
|
|
const draft = PostStore.getDraft(channelId);
|
|
|
|
// 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.storeDraft(channelId, draft);
|
|
|
|
if (channelId === this.state.channelId) {
|
|
this.setState({
|
|
uploadsInProgress: draft.uploadsInProgress,
|
|
fileInfos: draft.fileInfos,
|
|
enableSendButton: true
|
|
});
|
|
}
|
|
}
|
|
|
|
handleUploadError(err, clientId, channelId) {
|
|
let message = err;
|
|
if (message && typeof message !== 'string') {
|
|
// err is an AppError from the server
|
|
message = err.message;
|
|
}
|
|
|
|
if (clientId !== -1) {
|
|
const draft = PostStore.getDraft(channelId);
|
|
|
|
const index = draft.uploadsInProgress.indexOf(clientId);
|
|
if (index !== -1) {
|
|
draft.uploadsInProgress.splice(index, 1);
|
|
}
|
|
|
|
PostStore.storeDraft(channelId, draft);
|
|
|
|
if (channelId === this.state.channelId) {
|
|
this.setState({uploadsInProgress: draft.uploadsInProgress});
|
|
}
|
|
}
|
|
|
|
this.setState({serverError: message});
|
|
}
|
|
|
|
removePreview(id) {
|
|
const fileInfos = Object.assign([], this.state.fileInfos);
|
|
const uploadsInProgress = this.state.uploadsInProgress;
|
|
|
|
// Clear previous errors
|
|
this.handleUploadError(null);
|
|
|
|
// 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.getCurrentDraft();
|
|
draft.fileInfos = fileInfos;
|
|
draft.uploadsInProgress = uploadsInProgress;
|
|
PostStore.storeCurrentDraft(draft);
|
|
const enableSendButton = this.handleEnableSendButton(this.state.message, fileInfos);
|
|
|
|
this.setState({fileInfos, uploadsInProgress, enableSendButton});
|
|
|
|
this.handleFileUploadChange();
|
|
}
|
|
|
|
componentWillMount() {
|
|
const tutorialStep = PreferenceStore.getInt(Preferences.TUTORIAL_STEP, UserStore.getCurrentId(), 999);
|
|
const enableSendButton = this.handleEnableSendButton(this.state.message, this.state.fileInfos);
|
|
|
|
// wait to load these since they may have changed since the component was constructed (particularly in the case of skipping the tutorial)
|
|
this.setState({
|
|
ctrlSend: PreferenceStore.getBool(Preferences.CATEGORY_ADVANCED_SETTINGS, 'send_on_ctrl_enter'),
|
|
fullWidthTextBox: PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, Preferences.CHANNEL_DISPLAY_MODE, Preferences.CHANNEL_DISPLAY_MODE_DEFAULT) === Preferences.CHANNEL_DISPLAY_MODE_FULL_SCREEN,
|
|
showTutorialTip: tutorialStep === TutorialSteps.POST_POPOVER,
|
|
enableSendButton
|
|
});
|
|
}
|
|
|
|
componentDidMount() {
|
|
ChannelStore.addChangeListener(this.onChange);
|
|
PreferenceStore.addChangeListener(this.onPreferenceChange);
|
|
|
|
this.focusTextbox();
|
|
document.addEventListener('keydown', this.showShortcuts);
|
|
}
|
|
|
|
componentDidUpdate(prevProps, prevState) {
|
|
if (prevState.channelId !== this.state.channelId) {
|
|
this.focusTextbox();
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
ChannelStore.removeChangeListener(this.onChange);
|
|
PreferenceStore.removeChangeListener(this.onPreferenceChange);
|
|
document.removeEventListener('keydown', this.showShortcuts);
|
|
}
|
|
|
|
showShortcuts(e) {
|
|
if (e.which === Constants.KeyCodes.ESCAPE && this.state.showEmojiPicker === true) {
|
|
this.setState({showEmojiPicker: !this.state.showEmojiPicker});
|
|
}
|
|
|
|
if ((e.ctrlKey || e.metaKey) && e.keyCode === Constants.KeyCodes.FORWARD_SLASH) {
|
|
e.preventDefault();
|
|
const args = {};
|
|
args.channel_id = this.state.channelId;
|
|
ChannelActions.executeCommand(
|
|
'/shortcuts',
|
|
args,
|
|
null,
|
|
(err) => {
|
|
this.setState({
|
|
serverError: err.message,
|
|
submitting: false
|
|
});
|
|
}
|
|
);
|
|
}
|
|
}
|
|
|
|
onChange() {
|
|
const channelId = ChannelStore.getCurrentId();
|
|
if (this.state.channelId !== channelId) {
|
|
const draft = PostStore.getCurrentDraft();
|
|
|
|
this.setState({channelId, message: draft.message, submitting: false, serverError: null, postError: null, fileInfos: draft.fileInfos, uploadsInProgress: draft.uploadsInProgress});
|
|
}
|
|
}
|
|
|
|
onPreferenceChange() {
|
|
const tutorialStep = PreferenceStore.getInt(Preferences.TUTORIAL_STEP, UserStore.getCurrentId(), 999);
|
|
this.setState({
|
|
showTutorialTip: tutorialStep === TutorialSteps.POST_POPOVER,
|
|
ctrlSend: PreferenceStore.getBool(Preferences.CATEGORY_ADVANCED_SETTINGS, 'send_on_ctrl_enter'),
|
|
fullWidthTextBox: PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, Preferences.CHANNEL_DISPLAY_MODE, Preferences.CHANNEL_DISPLAY_MODE_DEFAULT) === Preferences.CHANNEL_DISPLAY_MODE_FULL_SCREEN,
|
|
emojiPickerEnabled: Utils.isFeatureEnabled(Constants.PRE_RELEASE_FEATURES.EMOJI_PICKER_PREVIEW)
|
|
});
|
|
}
|
|
|
|
getFileCount(channelId) {
|
|
if (channelId === this.state.channelId) {
|
|
return this.state.fileInfos.length + this.state.uploadsInProgress.length;
|
|
}
|
|
|
|
const draft = PostStore.getDraft(channelId);
|
|
return draft.fileInfos.length + draft.uploadsInProgress.length;
|
|
}
|
|
|
|
handleKeyDown(e) {
|
|
if (this.state.ctrlSend && e.keyCode === KeyCodes.ENTER && e.ctrlKey === true) {
|
|
this.postMsgKeyPress(e);
|
|
return;
|
|
}
|
|
|
|
if (!e.ctrlKey && !e.metaKey && !e.altKey && !e.shiftKey && e.keyCode === KeyCodes.UP && this.state.message === '') {
|
|
e.preventDefault();
|
|
|
|
const channelId = ChannelStore.getCurrentId();
|
|
const lastPost = PostStore.getCurrentUsersLatestPost(channelId);
|
|
if (!lastPost) {
|
|
return;
|
|
}
|
|
|
|
let type;
|
|
if (lastPost.root_id && lastPost.root_id.length > 0) {
|
|
type = Utils.localizeMessage('create_post.comment', 'Comment');
|
|
} else {
|
|
type = Utils.localizeMessage('create_post.post', 'Post');
|
|
}
|
|
|
|
AppDispatcher.handleViewAction({
|
|
type: ActionTypes.RECEIVED_EDIT_POST,
|
|
refocusId: '#post_textbox',
|
|
title: type,
|
|
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.message, 'post');
|
|
if (lastMessage !== null) {
|
|
e.preventDefault();
|
|
this.setState({
|
|
message: lastMessage
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
handleBlur() {
|
|
this.lastBlurAt = Date.now();
|
|
}
|
|
|
|
showPostDeletedModal() {
|
|
this.setState({
|
|
showPostDeletedModal: true
|
|
});
|
|
}
|
|
|
|
hidePostDeletedModal() {
|
|
this.setState({
|
|
showPostDeletedModal: false
|
|
});
|
|
}
|
|
|
|
handleEmojiClick(emoji) {
|
|
const emojiAlias = emoji.name || emoji.aliases[0];
|
|
|
|
if (!emojiAlias) {
|
|
//Oops.. There went something wrong
|
|
return;
|
|
}
|
|
|
|
if (this.state.message === '') {
|
|
this.setState({message: ':' + emojiAlias + ': ', showEmojiPicker: false});
|
|
} else {
|
|
//check whether there is already a blank at the end of the current message
|
|
const newMessage = (/\s+$/.test(this.state.message)) ?
|
|
this.state.message + ':' + emojiAlias + ': ' : this.state.message + ' :' + emojiAlias + ': ';
|
|
|
|
this.setState({message: newMessage, showEmojiPicker: false});
|
|
}
|
|
|
|
this.focusTextbox();
|
|
}
|
|
|
|
handleEmojiPickerClick() {
|
|
this.setState({showEmojiPicker: !this.state.showEmojiPicker});
|
|
}
|
|
|
|
createTutorialTip() {
|
|
const screens = [];
|
|
|
|
screens.push(
|
|
<div>
|
|
<FormattedHTMLMessage
|
|
id='create_post.tutorialTip'
|
|
defaultMessage='<h4>Sending Messages</h4><p>Type here to write a message and press <strong>Enter</strong> to post it.</p><p>Click the <strong>Attachment</strong> button to upload an image or a file.</p>'
|
|
/>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<TutorialTip
|
|
placement='top'
|
|
screens={screens}
|
|
overlayClass='tip-overlay--chat'
|
|
diagnosticsTag='tutorial_tip_1_sending_messages'
|
|
/>
|
|
);
|
|
}
|
|
|
|
handleEnableSendButton(message, fileInfos) {
|
|
return message.trim().length !== 0 || fileInfos.length !== 0;
|
|
}
|
|
|
|
render() {
|
|
let serverError = null;
|
|
if (this.state.serverError) {
|
|
serverError = (
|
|
<div className='has-error'>
|
|
<label className='control-label'>{this.state.serverError}</label>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
let postError = null;
|
|
if (this.state.postError) {
|
|
const postErrorClass = 'post-error' + (this.state.errorClass ? (' ' + this.state.errorClass) : '');
|
|
postError = <label className={postErrorClass}>{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 tutorialTip = null;
|
|
if (this.state.showTutorialTip) {
|
|
tutorialTip = this.createTutorialTip();
|
|
}
|
|
|
|
let centerClass = '';
|
|
if (!this.state.fullWidthTextBox) {
|
|
centerClass = 'center';
|
|
}
|
|
|
|
let sendButtonClass = 'send-button theme';
|
|
if (!this.state.enableSendButton) {
|
|
sendButtonClass += ' disabled';
|
|
}
|
|
let emojiPicker = null;
|
|
if (this.state.showEmojiPicker) {
|
|
emojiPicker = (
|
|
<EmojiPicker
|
|
onEmojiClick={this.handleEmojiClick}
|
|
topOrBottom='top'
|
|
outsideClick={this.closeEmoji}
|
|
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<form
|
|
id='create_post'
|
|
ref='topDiv'
|
|
role='form'
|
|
className={centerClass}
|
|
onSubmit={this.handleSubmit}
|
|
>
|
|
<div className='post-create'>
|
|
<div className='post-create-body'>
|
|
<div className='post-body__cell'>
|
|
<Textbox
|
|
onChange={this.handleChange}
|
|
onKeyPress={this.postMsgKeyPress}
|
|
onKeyDown={this.handleKeyDown}
|
|
handlePostError={this.handlePostError}
|
|
value={this.state.message}
|
|
onBlur={this.handleBlur}
|
|
emojiEnabled={this.state.emojiPickerEnabled}
|
|
createMessage={Utils.localizeMessage('create_post.write', 'Write a message...')}
|
|
channelId={this.state.channelId}
|
|
id='post_textbox'
|
|
ref='textbox'
|
|
/>
|
|
<FileUpload
|
|
ref='fileUpload'
|
|
getFileCount={this.getFileCount}
|
|
onFileUploadChange={this.handleFileUploadChange}
|
|
onUploadStart={this.handleUploadStart}
|
|
onFileUpload={this.handleFileUploadComplete}
|
|
onUploadError={this.handleUploadError}
|
|
postType='post'
|
|
channelId=''
|
|
onEmojiClick={this.handleEmojiPickerClick}
|
|
emojiEnabled={this.state.emojiPickerEnabled}
|
|
navBarName='main'
|
|
/>
|
|
|
|
{emojiPicker}
|
|
</div>
|
|
<a
|
|
className={sendButtonClass}
|
|
onClick={this.handleSubmit}
|
|
>
|
|
<i className='fa fa-paper-plane'/>
|
|
</a>
|
|
{tutorialTip}
|
|
</div>
|
|
<div className={postFooterClassName}>
|
|
<MsgTyping
|
|
channelId={this.state.channelId}
|
|
parentId=''
|
|
/>
|
|
{postError}
|
|
{preview}
|
|
{serverError}
|
|
</div>
|
|
</div>
|
|
<PostDeletedModal
|
|
show={this.state.showPostDeletedModal}
|
|
onHide={this.hidePostDeletedModal}
|
|
/>
|
|
</form>
|
|
);
|
|
}
|
|
}
|