mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 06:35:35 +08:00
60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
|
/*
|
||
|
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';
|
||
|
|
||
|
var React = require('react');
|
||
|
var sdk = require('../../../index');
|
||
|
|
||
|
module.exports = React.createClass({
|
||
|
displayName: 'SearchResult',
|
||
|
|
||
|
propTypes: {
|
||
|
searchResult: React.PropTypes.object.isRequired,
|
||
|
searchHighlights: React.PropTypes.array,
|
||
|
onClick: React.PropTypes.func,
|
||
|
},
|
||
|
|
||
|
render: function() {
|
||
|
var DateSeparator = sdk.getComponent('messages.DateSeparator');
|
||
|
var EventTile = sdk.getComponent('rooms.EventTile');
|
||
|
var result = this.props.searchResult;
|
||
|
var mxEv = result.context.getEvent();
|
||
|
var eventId = mxEv.getId();
|
||
|
|
||
|
var ts1 = mxEv.getTs();
|
||
|
var ret = [<DateSeparator key={ts1 + "-search"} ts={ts1}/>];
|
||
|
|
||
|
var timeline = result.context.getTimeline();
|
||
|
for (var j = 0; j < timeline.length; j++) {
|
||
|
var ev = timeline[j];
|
||
|
var highlights;
|
||
|
var contextual = (j != result.context.getOurEventIndex());
|
||
|
if (!contextual) {
|
||
|
highlights = this.props.searchHighlights;
|
||
|
}
|
||
|
if (EventTile.haveTileForEvent(ev)) {
|
||
|
ret.push(<EventTile key={eventId+"+"+j} mxEvent={ev} contextual={contextual} highlights={highlights}
|
||
|
onHighlightClick={this.props.onClick}/>)
|
||
|
}
|
||
|
}
|
||
|
return (
|
||
|
<li data-scroll-token={eventId+"+"+j}>
|
||
|
{ret}
|
||
|
</li>);
|
||
|
},
|
||
|
});
|