mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
111 lines
3.9 KiB
JavaScript
111 lines
3.9 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
var SearchStore = require('../stores/search_store.jsx');
|
|
var ChannelStore = require('../stores/channel_store.jsx');
|
|
var UserStore = require('../stores/user_store.jsx');
|
|
var UserProfile = require('./user_profile.jsx');
|
|
var utils = require('../utils/utils.jsx');
|
|
var client = require('../utils/client.jsx');
|
|
var AsyncClient = require('../utils/async_client.jsx');
|
|
var AppDispatcher = require('../dispatcher/app_dispatcher.jsx');
|
|
var Constants = require('../utils/constants.jsx');
|
|
var TextFormatting = require('../utils/text_formatting.jsx');
|
|
var ActionTypes = Constants.ActionTypes;
|
|
|
|
export default class SearchResultsItem extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleClick = this.handleClick.bind(this);
|
|
}
|
|
|
|
handleClick(e) {
|
|
e.preventDefault();
|
|
|
|
var self = this;
|
|
|
|
client.getPost(
|
|
this.props.post.channel_id,
|
|
this.props.post.id,
|
|
function success(data) {
|
|
AppDispatcher.handleServerAction({
|
|
type: ActionTypes.RECIEVED_POST_SELECTED,
|
|
post_list: data,
|
|
from_search: SearchStore.getSearchTerm()
|
|
});
|
|
|
|
AppDispatcher.handleServerAction({
|
|
type: ActionTypes.RECIEVED_SEARCH,
|
|
results: null,
|
|
is_mention_search: self.props.isMentionSearch
|
|
});
|
|
},
|
|
function success(err) {
|
|
AsyncClient.dispatchError(err, 'getPost');
|
|
}
|
|
);
|
|
|
|
var postChannel = ChannelStore.get(this.props.post.channel_id);
|
|
|
|
utils.switchChannel(postChannel);
|
|
}
|
|
|
|
render() {
|
|
var channelName = '';
|
|
var channel = ChannelStore.get(this.props.post.channel_id);
|
|
var timestamp = UserStore.getCurrentUser().update_at;
|
|
|
|
if (channel) {
|
|
channelName = channel.display_name;
|
|
if (channel.type === 'D') {
|
|
channelName = 'Direct Message';
|
|
}
|
|
}
|
|
|
|
const formattingOptions = {
|
|
searchTerm: this.props.term,
|
|
mentionHighlight: this.props.isMentionSearch
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className='search-item-container post'
|
|
onClick={this.handleClick}
|
|
>
|
|
<div className='search-channel__name'>{channelName}</div>
|
|
<div className='post-profile-img__container'>
|
|
<img
|
|
className='post-profile-img'
|
|
src={'/api/v1/users/' + this.props.post.user_id + '/image?time=' + timestamp + '&' + utils.getSessionIndex()}
|
|
height='36'
|
|
width='36'
|
|
/>
|
|
</div>
|
|
<div className='post__content'>
|
|
<ul className='post-header'>
|
|
<li className='post-header-col'><strong><UserProfile userId={this.props.post.user_id} /></strong></li>
|
|
<li className='post-header-col'>
|
|
<time className='search-item-time'>
|
|
{utils.displayDate(this.props.post.create_at) + ' ' + utils.displayTime(this.props.post.create_at)}
|
|
</time>
|
|
</li>
|
|
</ul>
|
|
<div className='search-item-snippet'>
|
|
<span
|
|
onClick={this.handleClick}
|
|
dangerouslySetInnerHTML={{__html: TextFormatting.formatText(this.props.post.message, formattingOptions)}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
SearchResultsItem.propTypes = {
|
|
post: React.PropTypes.object,
|
|
isMentionSearch: React.PropTypes.bool,
|
|
term: React.PropTypes.string
|
|
};
|