Merge pull request #1663 from mattermost/PLT-1418
PLT-1418 Adding old style replying in RHS
Этот коммит содержится в:
@@ -8,11 +8,14 @@ import * as EventHelpers from '../dispatcher/event_helpers.jsx';
|
||||
import * as utils from '../utils/utils.jsx';
|
||||
import * as TextFormatting from '../utils/text_formatting.jsx';
|
||||
|
||||
import Constants from '../utils/constants.jsx';
|
||||
|
||||
export default class SearchResultsItem extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.handleClick = this.handleClick.bind(this);
|
||||
this.handleFocusRHSClick = this.handleFocusRHSClick.bind(this);
|
||||
}
|
||||
|
||||
handleClick(e) {
|
||||
@@ -26,6 +29,12 @@ export default class SearchResultsItem extends React.Component {
|
||||
}
|
||||
}
|
||||
|
||||
handleFocusRHSClick(e) {
|
||||
e.preventDefault();
|
||||
|
||||
EventHelpers.emitPostFocusRightHandSideEvent(this.props.post);
|
||||
}
|
||||
|
||||
render() {
|
||||
var channelName = '';
|
||||
var channel = ChannelStore.get(this.props.post.channel_id);
|
||||
@@ -73,10 +82,21 @@ export default class SearchResultsItem extends React.Component {
|
||||
{'Jump'}
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href='#'
|
||||
className='comment-icon__container search-item__comment'
|
||||
onClick={this.handleFocusRHSClick}
|
||||
>
|
||||
<span
|
||||
className='comment-icon'
|
||||
dangerouslySetInnerHTML={{__html: Constants.COMMENT_ICON}}
|
||||
/>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div className='search-item-snippet'>
|
||||
<span
|
||||
onClick={this.handleClick}
|
||||
dangerouslySetInnerHTML={{__html: TextFormatting.formatText(this.props.post.message, formattingOptions)}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Ссылка в новой задаче
Block a user