Merge pull request #3057 from matrix-org/jryans/show-hidden-replacements
Allow source tile handler for replacements
This commit is contained in:
commit
b13f6b8c52
1 changed files with 9 additions and 2 deletions
|
@ -520,13 +520,20 @@ module.exports = withMatrixClient(React.createClass({
|
||||||
const eventType = this.props.mxEvent.getType();
|
const eventType = this.props.mxEvent.getType();
|
||||||
|
|
||||||
// Info messages are basically information about commands processed on a room
|
// Info messages are basically information about commands processed on a room
|
||||||
const isInfoMessage = (
|
let isInfoMessage = (
|
||||||
eventType !== 'm.room.message' && eventType !== 'm.sticker' && eventType != 'm.room.create'
|
eventType !== 'm.room.message' && eventType !== 'm.sticker' && eventType != 'm.room.create'
|
||||||
);
|
);
|
||||||
|
|
||||||
let tileHandler = getHandlerTile(this.props.mxEvent);
|
let tileHandler = getHandlerTile(this.props.mxEvent);
|
||||||
if (!tileHandler && SettingsStore.getValue("showHiddenEventsInTimeline")) {
|
// If we're showing hidden events in the timeline, we should use the
|
||||||
|
// source tile when there's no regular tile for an event and also for
|
||||||
|
// replace relations (which otherwise would display as a confusing
|
||||||
|
// duplicate of the thing they are replacing).
|
||||||
|
const useSource = !tileHandler || this.props.mxEvent.isRelation("m.replace");
|
||||||
|
if (useSource && SettingsStore.getValue("showHiddenEventsInTimeline")) {
|
||||||
tileHandler = "messages.ViewSourceEvent";
|
tileHandler = "messages.ViewSourceEvent";
|
||||||
|
// Reuse info message avatar and sender profile styling
|
||||||
|
isInfoMessage = true;
|
||||||
}
|
}
|
||||||
// This shouldn't happen: the caller should check we support this type
|
// This shouldn't happen: the caller should check we support this type
|
||||||
// before trying to instantiate us
|
// before trying to instantiate us
|
||||||
|
|
Loading…
Reference in a new issue