element-web-Github/src/components/views/rooms/SearchResultTile.js

68 lines
2.3 KiB
JavaScript
Raw Normal View History

2015-12-23 18:10:08 +08:00
/*
Copyright 2015 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.
*/
'use strict';
const React = require('react');
const sdk = require('../../../index');
2015-12-23 18:10:08 +08:00
module.exports = React.createClass({
displayName: 'SearchResult',
propTypes: {
// a matrix-js-sdk SearchResult containing the details of this result
2015-12-23 18:10:08 +08:00
searchResult: React.PropTypes.object.isRequired,
// a list of strings to be highlighted in the results
2015-12-23 18:10:08 +08:00
searchHighlights: React.PropTypes.array,
// href for the highlights in this result
resultLink: React.PropTypes.string,
onWidgetLoad: React.PropTypes.func,
2015-12-23 18:10:08 +08:00
},
render: function() {
const DateSeparator = sdk.getComponent('messages.DateSeparator');
const EventTile = sdk.getComponent('rooms.EventTile');
const result = this.props.searchResult;
const mxEv = result.context.getEvent();
const eventId = mxEv.getId();
2015-12-23 18:10:08 +08:00
const ts1 = mxEv.getTs();
const ret = [<DateSeparator key={ts1 + "-search"} ts={ts1} />];
2015-12-23 18:10:08 +08:00
const timeline = result.context.getTimeline();
2015-12-23 18:10:08 +08:00
for (var j = 0; j < timeline.length; j++) {
const ev = timeline[j];
2015-12-23 18:10:08 +08:00
var highlights;
const contextual = (j != result.context.getOurEventIndex());
2015-12-23 18:10:08 +08:00
if (!contextual) {
highlights = this.props.searchHighlights;
}
if (EventTile.haveTileForEvent(ev)) {
ret.push(<EventTile key={eventId+"+"+j} mxEvent={ev} contextual={contextual} highlights={highlights}
highlightLink={this.props.resultLink}
onWidgetLoad={this.props.onWidgetLoad} />);
2015-12-23 18:10:08 +08:00
}
}
return (
<li data-scroll-tokens={eventId+"+"+j}>
{ ret }
2015-12-23 18:10:08 +08:00
</li>);
},
});