forked from mystiq/hydrogen-web
render encrypted tiles as such so we don't fetch the whole history
This commit is contained in:
parent
0b1d9bf25e
commit
1c779cf95c
2 changed files with 26 additions and 0 deletions
23
src/domain/session/room/timeline/tiles/EncryptedEventTile.js
Normal file
23
src/domain/session/room/timeline/tiles/EncryptedEventTile.js
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
/*
|
||||||
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
||||||
|
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import {MessageTile} from "./MessageTile.js";
|
||||||
|
|
||||||
|
export class EncryptedEventTile extends MessageTile {
|
||||||
|
get text() {
|
||||||
|
return this.i18n`**Encrypted message**`;
|
||||||
|
}
|
||||||
|
}
|
|
@ -20,6 +20,7 @@ import {ImageTile} from "./tiles/ImageTile.js";
|
||||||
import {LocationTile} from "./tiles/LocationTile.js";
|
import {LocationTile} from "./tiles/LocationTile.js";
|
||||||
import {RoomNameTile} from "./tiles/RoomNameTile.js";
|
import {RoomNameTile} from "./tiles/RoomNameTile.js";
|
||||||
import {RoomMemberTile} from "./tiles/RoomMemberTile.js";
|
import {RoomMemberTile} from "./tiles/RoomMemberTile.js";
|
||||||
|
import {EncryptedEventTile} from "./tiles/EncryptedEventTile.js";
|
||||||
|
|
||||||
export function tilesCreator({room, ownUserId}) {
|
export function tilesCreator({room, ownUserId}) {
|
||||||
return function tilesCreator(entry, emitUpdate) {
|
return function tilesCreator(entry, emitUpdate) {
|
||||||
|
@ -49,6 +50,8 @@ export function tilesCreator({room, ownUserId}) {
|
||||||
return new RoomNameTile(options);
|
return new RoomNameTile(options);
|
||||||
case "m.room.member":
|
case "m.room.member":
|
||||||
return new RoomMemberTile(options);
|
return new RoomMemberTile(options);
|
||||||
|
case "m.room.encrypted":
|
||||||
|
return new EncryptedEventTile(options);
|
||||||
default:
|
default:
|
||||||
// unknown type not rendered
|
// unknown type not rendered
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in a new issue