Refactor EventTile using the MVVM pattern - #5b (#33600)

* Extract EventTile E2E padlock state

* Refactor EventTile E2E padlock rendering after review comments
This commit is contained in:
rbondesson
2026-05-26 06:36:05 +00:00
committed by GitHub
parent f3bbf2c67a
commit 5486a22922
4 changed files with 528 additions and 141 deletions
@@ -0,0 +1,211 @@
/*
Copyright 2026 Element Creations Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
*/
import { EventStatus, type MatrixEvent } from "matrix-js-sdk/src/matrix";
import { DecryptionFailureCode, EventShieldColour, EventShieldReason } from "matrix-js-sdk/src/crypto-api";
import { E2ePadlockIcon } from "@element-hq/web-shared-components";
import { _t } from "../../../../languageHandler";
/** Display state for the EventTile E2E padlock area. */
export type EventTileE2ePadlockState =
| {
/** No E2E padlock should render. */
kind: "none";
}
| {
/** Render the undecryptable padlock. */
kind: "decryptionFailure";
}
| {
/** Render the forwarded/shared message indicator. */
kind: "messageShared";
/** User ID that forwarded the message key. */
keyForwardingUserId: string;
/** Room ID used by the shared-message indicator. */
roomId: string;
}
| {
/** Render a trust shield padlock. */
kind: "shield";
/** Shield colour used to choose the rendered icon. */
shieldColour: EventShieldColour;
/** Shield reason used to choose the visible tooltip. */
shieldReason: EventShieldReason | null;
}
| {
/** Render the unencrypted warning in an encrypted room. */
kind: "unencrypted";
};
/** Renderable display state for the EventTile E2E padlock area. */
export type EventTileE2ePadlockViewState =
| {
/** No E2E padlock should render. */
kind: "none";
}
| {
/** Render the shared-message indicator. */
kind: "messageShared";
/** User ID that forwarded the message key. */
keyForwardingUserId: string;
/** Room ID used by the shared-message indicator. */
roomId: string;
}
| {
/** Render a standard E2E padlock icon. */
kind: "icon";
/** Icon variant to render. */
icon: E2ePadlockIcon;
/** Tooltip shown for the icon. */
title: string;
};
/** Inputs for deriving EventTile E2E padlock display state. */
export interface EventTileE2ePadlockStateInput {
/** Matrix event rendered by the tile. */
mxEvent: MatrixEvent;
/** Event used for verification decisions, usually the replacing event for edits. */
verificationEvent: MatrixEvent;
/** Current event shield colour. */
shieldColour: EventShieldColour;
/** Current event shield reason. */
shieldReason: EventShieldReason | null;
/** Whether the room is encrypted. */
isRoomEncrypted?: boolean | null;
/** Whether the event belongs to a local room. */
isLocalRoom: boolean;
}
/** Derives the E2E padlock display state for EventTile. */
export function getEventTileE2ePadlockState({
mxEvent,
verificationEvent,
shieldColour,
shieldReason,
isRoomEncrypted,
isLocalRoom,
}: EventTileE2ePadlockStateInput): EventTileE2ePadlockState {
if (isLocalRoom) {
return { kind: "none" };
}
if (verificationEvent.isDecryptionFailure()) {
switch (verificationEvent.decryptionFailureReason) {
case DecryptionFailureCode.SENDER_IDENTITY_PREVIOUSLY_VERIFIED:
case DecryptionFailureCode.UNSIGNED_SENDER_DEVICE:
return { kind: "none" };
default:
return { kind: "decryptionFailure" };
}
}
if (shieldReason === EventShieldReason.AUTHENTICITY_NOT_GUARANTEED) {
const keyForwardingUserId = mxEvent.getKeyForwardingUser();
if (keyForwardingUserId) {
return {
kind: "messageShared",
keyForwardingUserId,
roomId: verificationEvent.getRoomId()!,
};
}
}
if (shieldColour !== EventShieldColour.NONE) {
return {
kind: "shield",
shieldColour,
shieldReason,
};
}
if (isRoomEncrypted) {
if (
verificationEvent.status === EventStatus.ENCRYPTING ||
verificationEvent.status === EventStatus.NOT_SENT ||
verificationEvent.isState() ||
verificationEvent.isRedacted()
) {
return { kind: "none" };
}
if (!verificationEvent.isEncrypted()) {
return { kind: "unencrypted" };
}
}
return { kind: "none" };
}
function getEventTileShieldReasonMessage(shieldReason: EventShieldReason | null): string {
switch (shieldReason) {
case EventShieldReason.UNVERIFIED_IDENTITY:
return _t("encryption|event_shield_reason_unverified_identity");
case EventShieldReason.UNSIGNED_DEVICE:
return _t("encryption|event_shield_reason_unsigned_device");
case EventShieldReason.UNKNOWN_DEVICE:
return _t("encryption|event_shield_reason_unknown_device");
case EventShieldReason.AUTHENTICITY_NOT_GUARANTEED:
return _t("encryption|event_shield_reason_authenticity_not_guaranteed");
case EventShieldReason.MISMATCHED_SENDER_KEY:
return _t("encryption|event_shield_reason_mismatched_sender_key");
case EventShieldReason.SENT_IN_CLEAR:
return _t("common|unencrypted");
case EventShieldReason.VERIFICATION_VIOLATION:
return _t("timeline|decryption_failure|sender_identity_previously_verified");
case EventShieldReason.MISMATCHED_SENDER:
return _t("encryption|event_shield_reason_mismatched_sender");
default:
return _t("error|unknown");
}
}
/** Derives renderable E2E padlock display state for EventTile. */
export function getEventTileE2ePadlockViewState(input: EventTileE2ePadlockStateInput): EventTileE2ePadlockViewState {
const state = getEventTileE2ePadlockState(input);
switch (state.kind) {
case "none":
return { kind: "none" };
case "decryptionFailure":
return {
kind: "icon",
icon: E2ePadlockIcon.DecryptionFailure,
title: _t("timeline|undecryptable_tooltip"),
};
case "messageShared":
return {
kind: "messageShared",
keyForwardingUserId: state.keyForwardingUserId,
roomId: state.roomId,
};
case "unencrypted":
return {
kind: "icon",
icon: E2ePadlockIcon.Warning,
title: _t("common|unencrypted"),
};
case "shield":
return {
kind: "icon",
icon: state.shieldColour === EventShieldColour.GREY ? E2ePadlockIcon.Normal : E2ePadlockIcon.Warning,
title: getEventTileShieldReasonMessage(state.shieldReason),
};
}
}