You've already forked element-web
mirror of
https://github.com/element-hq/element-web.git
synced 2025-12-01 09:58:03 +03:00
Enable clicking on search results to switch to the result in context.
This commit is contained in:
@@ -205,6 +205,8 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
events: [],
|
events: [],
|
||||||
|
searchResults: null, // we may have arrived here by clicking on a
|
||||||
|
// search result. Hide the results.
|
||||||
timelineLoading: true,
|
timelineLoading: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -853,6 +855,14 @@ module.exports = React.createClass({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
_onSearchResultSelected: function(result) {
|
||||||
|
var event = result.context.getEvent();
|
||||||
|
dis.dispatch({
|
||||||
|
action: 'view_room',
|
||||||
|
room_id: event.getRoomId(),
|
||||||
|
event_id: event.getId(),
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
getSearchResultTiles: function() {
|
getSearchResultTiles: function() {
|
||||||
var EventTile = sdk.getComponent('rooms.EventTile');
|
var EventTile = sdk.getComponent('rooms.EventTile');
|
||||||
@@ -916,7 +926,8 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
ret.push(<SearchResultTile key={mxEv.getId()}
|
ret.push(<SearchResultTile key={mxEv.getId()}
|
||||||
searchResult={result}
|
searchResult={result}
|
||||||
searchHighlights={this.state.searchHighlights}/>);
|
searchHighlights={this.state.searchHighlights}
|
||||||
|
onSelect={this._onSearchResultSelected.bind(this, result)}/>);
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user