lotus(#6): render avatar decorations on in-call tiles
CI / Build embedded bundle (push) Failing after 12m11s
CI / Publish to Gitea npm registry (push) Has been skipped

Adds io.lotus.decorations (toWidget): the host pushes a userId->image-URL
map and EC overlays the profile decoration on each tile avatar
(TileAvatar), keyed by userId, with a useSyncExternalStore-backed store.
Makes A6 first-class in-call instead of absent. URLs are validated
https/blob. Additive: no-op unless the host sends decorations.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Lotus CI
2026-06-29 23:38:45 -04:00
co-authored by Claude Opus 4.8
parent 7d792c33bf
commit 70358d442b
5 changed files with 118 additions and 1 deletions
+3
View File
@@ -25,6 +25,8 @@ export enum LotusWidgetActions {
InjectAudio = "io.lotus.inject_audio",
/** toWidget: set audio/screenshare encoding quality (bitrate/framerate). */
SetQuality = "io.lotus.set_quality",
/** toWidget: per-user avatar-decoration image URLs for in-call tiles. */
Decorations = "io.lotus.decorations",
}
/** toWidget Lotus actions that must be allow-listed in `initializeWidget`. */
@@ -32,4 +34,5 @@ export const LOTUS_TO_WIDGET_ACTIONS: LotusWidgetActions[] = [
LotusWidgetActions.FocusParticipant,
LotusWidgetActions.InjectAudio,
LotusWidgetActions.SetQuality,
LotusWidgetActions.Decorations,
];
+80
View File
@@ -0,0 +1,80 @@
/*
Copyright 2026 Lotus Guild
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
import { useSyncExternalStore } from "react";
import { type IWidgetApiRequest } from "matrix-widget-api";
import { widget } from "../widget";
import { LotusWidgetActions } from "./lotusActions";
/**
* Avatar decorations (#6 / A6). The Lotus host (cinny) owns the decoration
* roster (MSC4133 profile decorations) and can't draw them on EC's in-call
* video tiles from outside the iframe. So it pushes a `userId -> image URL`
* map via the `io.lotus.decorations` widget action, and the tile avatar
* component renders the overlay natively.
*/
let decorations: Readonly<Record<string, string>> = {};
const listeners = new Set<() => void>();
function emit(): void {
for (const l of listeners) l();
}
/** Subscribe a tile avatar to its participant's decoration URL (or undefined). */
export function useLotusDecoration(userId: string): string | undefined {
return useSyncExternalStore(
(cb) => {
listeners.add(cb);
return () => listeners.delete(cb);
},
() => decorations[userId],
);
}
function safeImageUrl(raw: unknown): string | null {
if (typeof raw !== "string") return null;
try {
const u = new URL(raw, window.location.href);
return u.protocol === "https:" || u.protocol === "blob:" ? u.href : null;
} catch {
return null;
}
}
/**
* Register the `io.lotus.decorations` handler. No effect unless the host sends
* the action. Returns a teardown function.
*/
export function startLotusDecorations(): () => void {
const w = widget;
if (!w) return () => undefined;
const handler = (ev: CustomEvent<IWidgetApiRequest>): void => {
void w.api.transport.reply(ev.detail, {});
const data = ev.detail.data as
| { decorations?: Record<string, unknown> }
| undefined;
const next: Record<string, string> = {};
if (data?.decorations && typeof data.decorations === "object") {
for (const [userId, url] of Object.entries(data.decorations)) {
const safe = safeImageUrl(url);
if (safe) next[userId] = safe;
}
}
decorations = next;
emit();
};
w.lazyActions.on(LotusWidgetActions.Decorations, handler);
return () => {
w.lazyActions.off(LotusWidgetActions.Decorations, handler);
decorations = {};
emit();
};
}