/* Copyright 2015, 2016 OpenMarket Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React from 'react'; import type SyntheticKeyboardEvent from 'react/lib/SyntheticKeyboardEvent'; import {Editor, EditorState, RichUtils, CompositeDecorator, Modifier, getDefaultKeyBinding, KeyBindingUtil, ContentState, ContentBlock, SelectionState, Entity} from 'draft-js'; import classNames from 'classnames'; import escape from 'lodash/escape'; import Promise from 'bluebird'; import MatrixClientPeg from '../../../MatrixClientPeg'; import type {MatrixClient} from 'matrix-js-sdk/lib/matrix'; import {RoomMember} from 'matrix-js-sdk'; import SlashCommands from '../../../SlashCommands'; import KeyCode from '../../../KeyCode'; import Modal from '../../../Modal'; import sdk from '../../../index'; import { _t } from '../../../languageHandler'; import dis from '../../../dispatcher'; import UserSettingsStore from '../../../UserSettingsStore'; import * as RichText from '../../../RichText'; import * as HtmlUtils from '../../../HtmlUtils'; import Autocomplete from './Autocomplete'; import {Completion} from "../../../autocomplete/Autocompleter"; import Markdown from '../../../Markdown'; import ComposerHistoryManager from '../../../ComposerHistoryManager'; import MessageComposerStore from '../../../stores/MessageComposerStore'; import {MATRIXTO_URL_PATTERN} from '../../../linkify-matrix'; const REGEX_MATRIXTO = new RegExp(MATRIXTO_URL_PATTERN); import {asciiRegexp, shortnameToUnicode, emojioneList, asciiList, mapUnicodeToShort} from 'emojione'; const EMOJI_SHORTNAMES = Object.keys(emojioneList); const EMOJI_UNICODE_TO_SHORTNAME = mapUnicodeToShort(); const REGEX_EMOJI_WHITESPACE = new RegExp('(' + asciiRegexp + ')\\s$'); const TYPING_USER_TIMEOUT = 10000, TYPING_SERVER_TIMEOUT = 30000; const ZWS_CODE = 8203; const ZWS = String.fromCharCode(ZWS_CODE); // zero width space function stateToMarkdown(state) { return __stateToMarkdown(state) .replace( ZWS, // draft-js-export-markdown adds these ''); // this is *not* a zero width space, trust me :) } function onSendMessageFailed(err, room) { // XXX: temporary logging to try to diagnose // https://github.com/vector-im/riot-web/issues/3148 console.log('MessageComposer got send failure: ' + err.name + '('+err+')'); if (err.name === "UnknownDeviceError") { dis.dispatch({ action: 'unknown_device_error', err: err, room: room, }); } dis.dispatch({ action: 'message_send_failed', }); } /* * The textInput part of the MessageComposer */ export default class MessageComposerInput extends React.Component { static propTypes = { // a callback which is called when the height of the composer is // changed due to a change in content. onResize: React.PropTypes.func, // js-sdk Room object room: React.PropTypes.object.isRequired, // called with current plaintext content (as a string) whenever it changes onContentChanged: React.PropTypes.func, onInputStateChanged: React.PropTypes.func, }; static getKeyBinding(e: SyntheticKeyboardEvent): string { // C-m => Toggles between rich text and markdown modes if (e.keyCode === KeyCode.KEY_M && KeyBindingUtil.isCtrlKeyCommand(e)) { return 'toggle-mode'; } // Allow opening of dev tools. getDefaultKeyBinding would be 'italic' for KEY_I if (e.keyCode === KeyCode.KEY_I && e.shiftKey && e.ctrlKey) { // When null is returned, draft-js will NOT preventDefault, allowing dev tools // to be toggled when the editor is focussed return null; } return getDefaultKeyBinding(e); } static getBlockStyle(block: ContentBlock): ?string { if (block.getType() === 'strikethrough') { return 'mx_Markdown_STRIKETHROUGH'; } return null; } client: MatrixClient; autocomplete: Autocomplete; historyManager: ComposerHistoryManager; constructor(props, context) { super(props, context); this.onAction = this.onAction.bind(this); this.handleReturn = this.handleReturn.bind(this); this.handleKeyCommand = this.handleKeyCommand.bind(this); this.onEditorContentChanged = this.onEditorContentChanged.bind(this); this.onUpArrow = this.onUpArrow.bind(this); this.onDownArrow = this.onDownArrow.bind(this); this.onTab = this.onTab.bind(this); this.onEscape = this.onEscape.bind(this); this.setDisplayedCompletion = this.setDisplayedCompletion.bind(this); this.onMarkdownToggleClicked = this.onMarkdownToggleClicked.bind(this); this.onTextPasted = this.onTextPasted.bind(this); const isRichtextEnabled = UserSettingsStore.getSyncedSetting('MessageComposerInput.isRichTextEnabled', false); this.state = { // whether we're in rich text or markdown mode isRichtextEnabled, // the currently displayed editor state (note: this is always what is modified on input) editorState: this.createEditorState( isRichtextEnabled, MessageComposerStore.getContentState(this.props.room.roomId), ), // the original editor state, before we started tabbing through completions originalEditorState: null, // the virtual state "above" the history stack, the message currently being composed that // we want to persist whilst browsing history currentlyComposedEditorState: null, // whether there were any completions someCompletions: null, }; this.client = MatrixClientPeg.get(); } findLinkEntities(contentBlock, callback) { contentBlock.findEntityRanges( (character) => { const entityKey = character.getEntity(); return ( entityKey !== null && Entity.get(entityKey).getType() === 'LINK' ); }, callback, ); } /* * "Does the right thing" to create an EditorState, based on: * - whether we've got rich text mode enabled * - contentState was passed in */ createEditorState(richText: boolean, contentState: ?ContentState): EditorState { const decorators = richText ? RichText.getScopedRTDecorators(this.props) : RichText.getScopedMDDecorators(this.props); decorators.push({ strategy: this.findLinkEntities.bind(this), component: (props) => { const MemberAvatar = sdk.getComponent('avatars.MemberAvatar'); const RoomAvatar = sdk.getComponent('avatars.RoomAvatar'); const {url} = Entity.get(props.entityKey).getData(); // Default to the empty array if no match for simplicity // resource and prefix will be undefined instead of throwing const matrixToMatch = REGEX_MATRIXTO.exec(url) || []; const resource = matrixToMatch[1]; // The room/user ID const prefix = matrixToMatch[2]; // The first character of prefix const isUserPill = prefix === '@'; const isRoomPill = prefix === '#' || prefix === '!'; const classes = classNames({ "mx_UserPill": isUserPill, "mx_RoomPill": isRoomPill, }); let avatar = null; if (isUserPill) { // If this user is not a member of this room, default to the empty // member. This could be improved by doing an async profile lookup. const member = this.props.room.getMember(resource) || new RoomMember(null, resource); avatar = member ? : null; } else if (isRoomPill) { const room = prefix === '#' ? MatrixClientPeg.get().getRooms().find((r) => { return r.getCanonicalAlias() === resource; }) : MatrixClientPeg.get().getRoom(resource); avatar = room ? : null; } if (isUserPill || isRoomPill) { return ( {avatar} {props.children} ); } return ( {props.children} ); }, }); const compositeDecorator = new CompositeDecorator(decorators); let editorState = null; if (contentState) { editorState = EditorState.createWithContent(contentState, compositeDecorator); } else { editorState = EditorState.createEmpty(compositeDecorator); } return EditorState.moveFocusToEnd(editorState); } componentDidMount() { this.dispatcherRef = dis.register(this.onAction); this.historyManager = new ComposerHistoryManager(this.props.room.roomId); } componentWillUnmount() { dis.unregister(this.dispatcherRef); } componentWillUpdate(nextProps, nextState) { // this is dirty, but moving all this state to MessageComposer is dirtier if (this.props.onInputStateChanged && nextState !== this.state) { const state = this.getSelectionInfo(nextState.editorState); state.isRichtextEnabled = nextState.isRichtextEnabled; this.props.onInputStateChanged(state); } } onAction = (payload) => { const editor = this.refs.editor; let contentState = this.state.editorState.getCurrentContent(); switch (payload.action) { case 'focus_composer': editor.focus(); break; // TODO change this so we insert a complete user alias case 'insert_displayname': { contentState = Modifier.replaceText( contentState, this.state.editorState.getSelection(), `${payload.displayname}: `, ); let editorState = EditorState.push(this.state.editorState, contentState, 'insert-characters'); editorState = EditorState.forceSelection(editorState, contentState.getSelectionAfter()); this.onEditorContentChanged(editorState); editor.focus(); } break; case 'quote': { let {body, formatted_body} = payload.event.getContent(); formatted_body = formatted_body || escape(body); if (formatted_body) { let content = RichText.htmlToContentState(`
${formatted_body}
`); if (!this.state.isRichtextEnabled) { content = ContentState.createFromText(RichText.stateToMarkdown(content)); } const blockMap = content.getBlockMap(); let startSelection = SelectionState.createEmpty(contentState.getFirstBlock().getKey()); contentState = Modifier.splitBlock(contentState, startSelection); startSelection = SelectionState.createEmpty(contentState.getFirstBlock().getKey()); contentState = Modifier.replaceWithFragment(contentState, startSelection, blockMap); startSelection = SelectionState.createEmpty(contentState.getFirstBlock().getKey()); if (this.state.isRichtextEnabled) { contentState = Modifier.setBlockType(contentState, startSelection, 'blockquote'); } let editorState = EditorState.push(this.state.editorState, contentState, 'insert-characters'); editorState = EditorState.moveSelectionToEnd(editorState); this.onEditorContentChanged(editorState); editor.focus(); } } break; } }; onTypingActivity() { this.isTyping = true; if (!this.userTypingTimer) { this.sendTyping(true); } this.startUserTypingTimer(); this.startServerTypingTimer(); } onFinishedTyping() { this.isTyping = false; this.sendTyping(false); this.stopUserTypingTimer(); this.stopServerTypingTimer(); } startUserTypingTimer() { this.stopUserTypingTimer(); const self = this; this.userTypingTimer = setTimeout(function() { self.isTyping = false; self.sendTyping(self.isTyping); self.userTypingTimer = null; }, TYPING_USER_TIMEOUT); } stopUserTypingTimer() { if (this.userTypingTimer) { clearTimeout(this.userTypingTimer); this.userTypingTimer = null; } } startServerTypingTimer() { if (!this.serverTypingTimer) { const self = this; this.serverTypingTimer = setTimeout(function() { if (self.isTyping) { self.sendTyping(self.isTyping); self.startServerTypingTimer(); } }, TYPING_SERVER_TIMEOUT / 2); } } stopServerTypingTimer() { if (this.serverTypingTimer) { clearTimeout(this.servrTypingTimer); this.serverTypingTimer = null; } } sendTyping(isTyping) { if (UserSettingsStore.getSyncedSetting('dontSendTypingNotifications', false)) return; MatrixClientPeg.get().sendTyping( this.props.room.roomId, this.isTyping, TYPING_SERVER_TIMEOUT, ).done(); } refreshTyping() { if (this.typingTimeout) { clearTimeout(this.typingTimeout); this.typingTimeout = null; } } // Called by Draft to change editor contents onEditorContentChanged = (editorState: EditorState) => { editorState = RichText.attachImmutableEntitiesToEmoji(editorState); const currentBlock = editorState.getSelection().getStartKey(); const currentSelection = editorState.getSelection(); const currentStartOffset = editorState.getSelection().getStartOffset(); const block = editorState.getCurrentContent().getBlockForKey(currentBlock); const text = block.getText(); const entityBeforeCurrentOffset = block.getEntityAt(currentStartOffset - 1); const entityAtCurrentOffset = block.getEntityAt(currentStartOffset); // If the cursor is on the boundary between an entity and a non-entity and the // text before the cursor has whitespace at the end, set the entity state of the // character before the cursor (the whitespace) to null. This allows the user to // stop editing the link. if (entityBeforeCurrentOffset && !entityAtCurrentOffset && /\s$/.test(text.slice(0, currentStartOffset))) { editorState = RichUtils.toggleLink( editorState, currentSelection.merge({ anchorOffset: currentStartOffset - 1, focusOffset: currentStartOffset, }), null, ); // Reset selection editorState = EditorState.forceSelection(editorState, currentSelection); } // Automatic replacement of plaintext emoji to Unicode emoji if (UserSettingsStore.getSyncedSetting('MessageComposerInput.autoReplaceEmoji', false)) { // The first matched group includes just the matched plaintext emoji const emojiMatch = REGEX_EMOJI_WHITESPACE.exec(text.slice(0, currentStartOffset)); if(emojiMatch) { // plaintext -> hex unicode const emojiUc = asciiList[emojiMatch[1]]; // hex unicode -> shortname -> actual unicode const unicodeEmoji = shortnameToUnicode(EMOJI_UNICODE_TO_SHORTNAME[emojiUc]); const newContentState = Modifier.replaceText( editorState.getCurrentContent(), currentSelection.merge({ anchorOffset: currentStartOffset - emojiMatch[0].length, focusOffset: currentStartOffset, }), unicodeEmoji, ); editorState = EditorState.push( editorState, newContentState, 'insert-characters', ); editorState = EditorState.forceSelection(editorState, newContentState.getSelectionAfter()); } } /* Since a modification was made, set originalEditorState to null, since newState is now our original */ this.setState({ editorState, originalEditorState: null, }); }; /** * We're overriding setState here because it's the most convenient way to monitor changes to the editorState. * Doing it using a separate function that calls setState is a possibility (and was the old approach), but that * approach requires a callback and an extra setState whenever trying to set multiple state properties. * * @param state * @param callback */ setState(state, callback) { if (state.editorState != null) { state.editorState = RichText.attachImmutableEntitiesToEmoji( state.editorState); if (state.editorState.getCurrentContent().hasText()) { this.onTypingActivity(); } else { this.onFinishedTyping(); } // Record the editor state for this room so that it can be retrieved after // switching to another room and back dis.dispatch({ action: 'content_state', room_id: this.props.room.roomId, content_state: state.editorState.getCurrentContent(), }); if (!state.hasOwnProperty('originalEditorState')) { state.originalEditorState = null; } } super.setState(state, () => { if (callback != null) { callback(); } if (this.props.onContentChanged) { const textContent = this.state.editorState .getCurrentContent().getPlainText(); const selection = RichText.selectionStateToTextOffsets( this.state.editorState.getSelection(), this.state.editorState.getCurrentContent().getBlocksAsArray()); this.props.onContentChanged(textContent, selection); } }); } enableRichtext(enabled: boolean) { if (enabled === this.state.isRichtextEnabled) return; let contentState = null; if (enabled) { const md = new Markdown(this.state.editorState.getCurrentContent().getPlainText()); contentState = RichText.htmlToContentState(md.toHTML()); } else { let markdown = RichText.stateToMarkdown(this.state.editorState.getCurrentContent()); if (markdown[markdown.length - 1] === '\n') { markdown = markdown.substring(0, markdown.length - 1); // stateToMarkdown tacks on an extra newline (?!?) } contentState = ContentState.createFromText(markdown); } this.setState({ editorState: this.createEditorState(enabled, contentState), isRichtextEnabled: enabled, }); UserSettingsStore.setSyncedSetting('MessageComposerInput.isRichTextEnabled', enabled); } handleKeyCommand = (command: string): boolean => { if (command === 'toggle-mode') { this.enableRichtext(!this.state.isRichtextEnabled); return true; } let newState: ?EditorState = null; // Draft handles rich text mode commands by default but we need to do it ourselves for Markdown. if (this.state.isRichtextEnabled) { // These are block types, not handled by RichUtils by default. const blockCommands = ['code-block', 'blockquote', 'unordered-list-item', 'ordered-list-item']; const currentBlockType = RichUtils.getCurrentBlockType(this.state.editorState); if (blockCommands.includes(command)) { newState = RichUtils.toggleBlockType(this.state.editorState, command); } else if (command === 'strike') { // this is the only inline style not handled by Draft by default newState = RichUtils.toggleInlineStyle(this.state.editorState, 'STRIKETHROUGH'); } else if (command === 'backspace' && currentBlockType !== 'unstyled') { const currentStartOffset = this.state.editorState.getSelection().getStartOffset(); if (currentStartOffset === 0) { // Toggle current block type (setting it to 'unstyled') newState = RichUtils.toggleBlockType(this.state.editorState, currentBlockType); } } } else { const contentState = this.state.editorState.getCurrentContent(); const multipleLinesSelected = RichText.hasMultiLineSelection(this.state.editorState); const selectionState = this.state.editorState.getSelection(); const start = selectionState.getStartOffset(); const end = selectionState.getEndOffset(); // If multiple lines are selected or nothing is selected, insert a code block // instead of applying inline code formatting. This is an attempt to mimic what // happens in non-MD mode. const treatInlineCodeAsBlock = multipleLinesSelected || start === end; const textMdCodeBlock = (text) => `\`\`\`\n${text}\n\`\`\`\n`; const modifyFn = { 'bold': (text) => `**${text}**`, 'italic': (text) => `*${text}*`, 'underline': (text) => `${text}`, 'strike': (text) => `${text}`, // ("code" is triggered by ctrl+j by draft-js by default) 'code': (text) => treatInlineCodeAsBlock ? textMdCodeBlock(text) : `\`${text}\``, 'code-block': textMdCodeBlock, 'blockquote': (text) => text.split('\n').map((line) => `> ${line}\n`).join('') + '\n', 'unordered-list-item': (text) => text.split('\n').map((line) => `\n- ${line}`).join(''), 'ordered-list-item': (text) => text.split('\n').map((line, i) => `\n${i + 1}. ${line}`).join(''), }[command]; const selectionAfterOffset = { 'bold': -2, 'italic': -1, 'underline': -4, 'strike': -6, 'code': treatInlineCodeAsBlock ? -5 : -1, 'code-block': -5, 'blockquote': -2, }[command]; // Returns a function that collapses a selectionState to its end and moves it by offset const collapseAndOffsetSelection = (selectionState, offset) => { const key = selectionState.getEndKey(); return new SelectionState({ anchorKey: key, anchorOffset: offset, focusKey: key, focusOffset: offset, }); }; if (modifyFn) { const previousSelection = this.state.editorState.getSelection(); const newContentState = RichText.modifyText(contentState, previousSelection, modifyFn); newState = EditorState.push( this.state.editorState, newContentState, 'insert-characters', ); let newSelection = newContentState.getSelectionAfter(); // If the selection range is 0, move the cursor inside the formatted body if (previousSelection.getStartOffset() === previousSelection.getEndOffset() && previousSelection.getStartKey() === previousSelection.getEndKey() && selectionAfterOffset !== undefined ) { const selectedBlock = newContentState.getBlockForKey(previousSelection.getAnchorKey()); const blockLength = selectedBlock.getText().length; const newOffset = blockLength + selectionAfterOffset; newSelection = collapseAndOffsetSelection(newSelection, newOffset); } newState = EditorState.forceSelection(newState, newSelection); } } if (newState == null) { newState = RichUtils.handleKeyCommand(this.state.editorState, command); } if (newState != null) { this.setState({editorState: newState}); return true; } return false; } onTextPasted(text: string, html?: string) { const currentSelection = this.state.editorState.getSelection(); const currentContent = this.state.editorState.getCurrentContent(); let contentState = null; if (html && this.state.isRichtextEnabled) { contentState = Modifier.replaceWithFragment( currentContent, currentSelection, RichText.htmlToContentState(html).getBlockMap(), ); } else { contentState = Modifier.replaceText(currentContent, currentSelection, text); } let newEditorState = EditorState.push(this.state.editorState, contentState, 'insert-characters'); newEditorState = EditorState.forceSelection(newEditorState, contentState.getSelectionAfter()); this.onEditorContentChanged(newEditorState); return true; } handleReturn(ev) { if (ev.shiftKey) { this.onEditorContentChanged(RichUtils.insertSoftNewline(this.state.editorState)); return true; } const currentBlockType = RichUtils.getCurrentBlockType(this.state.editorState); if( ['code-block', 'blockquote', 'unordered-list-item', 'ordered-list-item'] .includes(currentBlockType) ) { // By returning false, we allow the default draft-js key binding to occur, // which in this case invokes "split-block". This creates a new block of the // same type, allowing the user to delete it with backspace. // See handleKeyCommand (when command === 'backspace') return false; } const contentState = this.state.editorState.getCurrentContent(); if (!contentState.hasText()) { return true; } let contentText = contentState.getPlainText(), contentHTML; const cmd = SlashCommands.processInput(this.props.room.roomId, contentText); if (cmd) { if (!cmd.error) { this.setState({ editorState: this.createEditorState(), }); } if (cmd.promise) { cmd.promise.then(function() { console.log("Command success."); }, function(err) { console.error("Command failure: %s", err); const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: _t("Server error"), description: ((err && err.message) ? err.message : _t("Server unavailable, overloaded, or something else went wrong.")), }); }); } else if (cmd.error) { console.error(cmd.error); const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: _t("Command error"), description: cmd.error, }); } return true; } if (this.state.isRichtextEnabled) { // We should only send HTML if any block is styled or contains inline style let shouldSendHTML = false; const blocks = contentState.getBlocksAsArray(); if (blocks.some((block) => block.getType() !== 'unstyled')) { shouldSendHTML = true; } else { const characterLists = blocks.map((block) => block.getCharacterList()); // For each block of characters, determine if any inline styles are applied // and if yes, send HTML characterLists.forEach((characters) => { const numberOfStylesForCharacters = characters.map( (character) => character.getStyle().toArray().length, ).toArray(); // If any character has more than 0 inline styles applied, send HTML if (numberOfStylesForCharacters.some((styles) => styles > 0)) { shouldSendHTML = true; } }); } if (!shouldSendHTML) { const hasLink = blocks.some((block) => { return block.getCharacterList().filter((c) => { const entityKey = c.getEntity(); return entityKey && Entity.get(entityKey).getType() === 'LINK'; }).size > 0; }); shouldSendHTML = hasLink; } if (shouldSendHTML) { contentHTML = HtmlUtils.processHtmlForSending( RichText.contentStateToHTML(contentState), ); } } else { const md = new Markdown(contentText); if (md.isPlainText()) { contentText = md.toPlaintext(); } else { contentHTML = md.toHTML(); } } let sendHtmlFn = this.client.sendHtmlMessage; let sendTextFn = this.client.sendTextMessage; if (this.state.isRichtextEnabled) { this.historyManager.addItem( contentHTML ? contentHTML : contentText, contentHTML ? 'html' : 'markdown', ); } else { // Always store MD input as input history this.historyManager.addItem(contentText, 'markdown'); } if (contentText.startsWith('/me')) { contentText = contentText.substring(4); // bit of a hack, but the alternative would be quite complicated if (contentHTML) contentHTML = contentHTML.replace(/\/me ?/, ''); sendHtmlFn = this.client.sendHtmlEmote; sendTextFn = this.client.sendEmoteMessage; } let sendMessagePromise; if (contentHTML) { sendMessagePromise = sendHtmlFn.call( this.client, this.props.room.roomId, contentText, contentHTML, ); } else { sendMessagePromise = sendTextFn.call(this.client, this.props.room.roomId, contentText); } sendMessagePromise.done((res) => { dis.dispatch({ action: 'message_sent', }); }, (e) => onSendMessageFailed(e, this.props.room)); this.setState({ editorState: this.createEditorState(), }); return true; } onUpArrow = (e) => { this.onVerticalArrow(e, true); }; onDownArrow = (e) => { this.onVerticalArrow(e, false); }; onVerticalArrow = (e, up) => { if (e.ctrlKey || e.shiftKey || e.altKey || e.metaKey) { return; } // Select history only if we are not currently auto-completing if (this.autocomplete.state.completionList.length === 0) { // Don't go back in history if we're in the middle of a multi-line message const selection = this.state.editorState.getSelection(); const blockKey = selection.getStartKey(); const firstBlock = this.state.editorState.getCurrentContent().getFirstBlock(); const lastBlock = this.state.editorState.getCurrentContent().getLastBlock(); let canMoveUp = false; let canMoveDown = false; if (blockKey === firstBlock.getKey()) { canMoveUp = selection.getStartOffset() === selection.getEndOffset() && selection.getStartOffset() === 0; } if (blockKey === lastBlock.getKey()) { canMoveDown = selection.getStartOffset() === selection.getEndOffset() && selection.getStartOffset() === lastBlock.getText().length; } if ((up && !canMoveUp) || (!up && !canMoveDown)) return; const selected = this.selectHistory(up); if (selected) { // We're selecting history, so prevent the key event from doing anything else e.preventDefault(); } } else { this.moveAutocompleteSelection(up); } }; selectHistory = async (up) => { const delta = up ? -1 : 1; // True if we are not currently selecting history, but composing a message if (this.historyManager.currentIndex === this.historyManager.history.length) { // We can't go any further - there isn't any more history, so nop. if (!up) { return; } this.setState({ currentlyComposedEditorState: this.state.editorState, }); } else if (this.historyManager.currentIndex + delta === this.historyManager.history.length) { // True when we return to the message being composed currently this.setState({ editorState: this.state.currentlyComposedEditorState, }); this.historyManager.currentIndex = this.historyManager.history.length; return; } const newContent = this.historyManager.getItem(delta, this.state.isRichtextEnabled ? 'html' : 'markdown'); if (!newContent) return false; let editorState = EditorState.push( this.state.editorState, newContent, 'insert-characters', ); // Move selection to the end of the selected history let newSelection = SelectionState.createEmpty(newContent.getLastBlock().getKey()); newSelection = newSelection.merge({ focusOffset: newContent.getLastBlock().getLength(), anchorOffset: newContent.getLastBlock().getLength(), }); editorState = EditorState.forceSelection(editorState, newSelection); this.setState({editorState}); return true; }; onTab = async (e) => { this.setState({ someCompletions: null, }); e.preventDefault(); if (this.autocomplete.state.completionList.length === 0) { // Force completions to show for the text currently entered const completionCount = await this.autocomplete.forceComplete(); this.setState({ someCompletions: completionCount > 0, }); // Select the first item by moving "down" await this.moveAutocompleteSelection(false); } else { await this.moveAutocompleteSelection(e.shiftKey); } }; moveAutocompleteSelection = (up) => { const completion = up ? this.autocomplete.onUpArrow() : this.autocomplete.onDownArrow(); return this.setDisplayedCompletion(completion); }; onEscape = async (e) => { e.preventDefault(); if (this.autocomplete) { this.autocomplete.onEscape(e); } await this.setDisplayedCompletion(null); // restore originalEditorState }; /* If passed null, restores the original editor content from state.originalEditorState. * If passed a non-null displayedCompletion, modifies state.originalEditorState to compute new state.editorState. */ setDisplayedCompletion = async (displayedCompletion: ?Completion): boolean => { const activeEditorState = this.state.originalEditorState || this.state.editorState; if (displayedCompletion == null) { if (this.state.originalEditorState) { let editorState = this.state.originalEditorState; // This is a workaround from https://github.com/facebook/draft-js/issues/458 // Due to the way we swap editorStates, Draft does not rerender at times editorState = EditorState.forceSelection(editorState, editorState.getSelection()); this.setState({editorState}); } return false; } const {range = {}, completion = '', entity = null} = displayedCompletion; let entityKey; if (entity) { entityKey = Entity.create( entity.type, entity.mutability, entity.data, ); } const contentState = Modifier.replaceText( activeEditorState.getCurrentContent(), RichText.textOffsetsToSelectionState( range, activeEditorState.getCurrentContent().getBlocksAsArray(), ), completion, null, entityKey, ); let editorState = EditorState.push(activeEditorState, contentState, 'insert-characters'); editorState = EditorState.forceSelection(editorState, contentState.getSelectionAfter()); this.setState({editorState, originalEditorState: activeEditorState}); // for some reason, doing this right away does not update the editor :( // setTimeout(() => this.refs.editor.focus(), 50); return true; }; onFormatButtonClicked(name: "bold" | "italic" | "strike" | "code" | "underline" | "quote" | "bullet" | "numbullet", e) { e.preventDefault(); // don't steal focus from the editor! const command = { code: 'code-block', quote: 'blockquote', bullet: 'unordered-list-item', numbullet: 'ordered-list-item', }[name] || name; this.handleKeyCommand(command); } /* returns inline style and block type of current SelectionState so MessageComposer can render formatting buttons. */ getSelectionInfo(editorState: EditorState) { const styleName = { BOLD: 'bold', ITALIC: 'italic', STRIKETHROUGH: 'strike', UNDERLINE: 'underline', }; const originalStyle = editorState.getCurrentInlineStyle().toArray(); const style = originalStyle .map((style) => styleName[style] || null) .filter((styleName) => !!styleName); const blockName = { 'code-block': 'code', 'blockquote': 'quote', 'unordered-list-item': 'bullet', 'ordered-list-item': 'numbullet', }; const originalBlockType = editorState.getCurrentContent() .getBlockForKey(editorState.getSelection().getStartKey()) .getType(); const blockType = blockName[originalBlockType] || null; return { style, blockType, }; } onMarkdownToggleClicked = (e) => { e.preventDefault(); // don't steal focus from the editor! this.handleKeyCommand('toggle-mode'); }; render() { const activeEditorState = this.state.originalEditorState || this.state.editorState; // From https://github.com/facebook/draft-js/blob/master/examples/rich/rich.html#L92 // If the user changes block type before entering any text, we can // either style the placeholder or hide it. let hidePlaceholder = false; const contentState = activeEditorState.getCurrentContent(); if (!contentState.hasText()) { if (contentState.getBlockMap().first().getType() !== 'unstyled') { hidePlaceholder = true; } } const className = classNames('mx_MessageComposer_input', { mx_MessageComposer_input_empty: hidePlaceholder, mx_MessageComposer_input_error: this.state.someCompletions === false, }); const content = activeEditorState.getCurrentContent(); const contentText = content.getPlainText(); const selection = RichText.selectionStateToTextOffsets(activeEditorState.getSelection(), activeEditorState.getCurrentContent().getBlocksAsArray()); return (
this.autocomplete = e} onConfirm={this.setDisplayedCompletion} query={contentText} selection={selection}/>
); } } MessageComposerInput.propTypes = { // a callback which is called when the height of the composer is // changed due to a change in content. onResize: React.PropTypes.func, // js-sdk Room object room: React.PropTypes.object.isRequired, // called with current plaintext content (as a string) whenever it changes onContentChanged: React.PropTypes.func, onFilesPasted: React.PropTypes.func, onInputStateChanged: React.PropTypes.func, };