Move links to vm

This commit is contained in:
RMidhunSuresh 2022-01-06 17:51:14 +05:30
parent 27a9f5dd02
commit af5a008d0f
2 changed files with 6 additions and 6 deletions

View file

@ -34,12 +34,12 @@ export class BaseMessageTile extends SimpleTile {
return this._room.mediaRepository;
}
get roomId() {
return this._room.id;
get permaLink() {
return `https://matrix.to/#/${this._room.id}/${this._entry.id}`;
}
get eventId() {
return this._entry.id;
get senderProfileLink() {
return `https://matrix.to/#/${this.sender}`;
}
get displayName() {

View file

@ -34,8 +34,8 @@ export class ReplyPreviewView extends TemplateView {
_renderReplyHeader(t, vm, children = []) {
return t.blockquote(
[
t.a({ className: "link", href: `https://matrix.to/#/${vm.roomId}/${vm.eventId}` }, "In reply to"),
t.a({ className: "pill", href: `https://matrix.to/#/${vm.sender}` }, [renderStaticAvatar(vm, 12, undefined, true), vm.displayName]),
t.a({ className: "link", href: vm.permaLink }, "In reply to"),
t.a({ className: "pill", href: vm.senderProfileLink }, [renderStaticAvatar(vm, 12, undefined, true), vm.displayName]),
t.br(),
...children
]);