stop replacing shortcodes/emoticon in the live NewMessage textarea (#1026)
This commit is contained in:
parent
08109ee5de
commit
42d671c05b
1 changed files with 1 additions and 6 deletions
|
@ -1,6 +1,5 @@
|
||||||
import React, { PropTypes, Component } from 'react'
|
import React, { PropTypes, Component } from 'react'
|
||||||
import { Emoji, Picker } from 'emoji-mart'
|
import { Emoji, Picker } from 'emoji-mart'
|
||||||
import Util from '../../Metamaps/Util'
|
|
||||||
|
|
||||||
class NewMessage extends Component {
|
class NewMessage extends Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
@ -15,10 +14,6 @@ class NewMessage extends Component {
|
||||||
this.setState({ showEmojiPicker: !this.state.showEmojiPicker })
|
this.setState({ showEmojiPicker: !this.state.showEmojiPicker })
|
||||||
}
|
}
|
||||||
|
|
||||||
textAreaValue = () => {
|
|
||||||
return Util.addEmoji(this.props.messageText)
|
|
||||||
}
|
|
||||||
|
|
||||||
handleClick = (emoji, event) => {
|
handleClick = (emoji, event) => {
|
||||||
const { messageText } = this.props
|
const { messageText } = this.props
|
||||||
this.props.handleChange({ target: {
|
this.props.handleChange({ target: {
|
||||||
|
@ -44,7 +39,7 @@ class NewMessage extends Component {
|
||||||
<div className="extra-message-options">
|
<div className="extra-message-options">
|
||||||
<span className="emoji-picker-button" onClick={this.toggleEmojiPicker}><Emoji size={24} emoji="upside_down_face" /></span>
|
<span className="emoji-picker-button" onClick={this.toggleEmojiPicker}><Emoji size={24} emoji="upside_down_face" /></span>
|
||||||
</div>
|
</div>
|
||||||
<textarea value={this.textAreaValue()}
|
<textarea value={this.props.messageText}
|
||||||
onChange={this.props.handleChange}
|
onChange={this.props.handleChange}
|
||||||
{...this.props.textAreaProps}
|
{...this.props.textAreaProps}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue