Add module APIs to enable widget toggle buttons

This commit is contained in:
David Baker
2026-03-06 10:58:00 +00:00
parent 7206db8243
commit bf69ddf2b4
6 changed files with 115 additions and 1 deletions
@@ -5,6 +5,7 @@
```ts
import { ComponentType } from 'react';
import { IWidget } from 'matrix-widget-api';
import { JSX } from 'react';
import { ModuleApi } from '@matrix-org/react-sdk-module-api';
import { Root } from 'react-dom/client';
@@ -56,6 +57,8 @@ export interface Api extends LegacyModuleApiExtension, LegacyCustomisationsApiEx
readonly rootNode: HTMLElement;
readonly stores: StoresApi;
// @alpha
readonly widget: WidgetApi;
// @alpha
readonly widgetLifecycle: WidgetLifecycleApi;
}
@@ -107,6 +110,9 @@ export interface ConfigApi {
get<K extends keyof Config = never>(key?: K): Config | Config[K];
}
// @alpha
export type Container = "top" | "right" | "center";
// @alpha
export interface CustomComponentsApi {
registerMessageRenderer(eventTypeOrFilter: string | ((mxEvent: MatrixEvent) => boolean), renderer: CustomMessageRenderFunction, hints?: CustomMessageRenderHints): void;
@@ -174,6 +180,7 @@ export interface DirectoryCustomisations {
// @alpha
export interface ExtrasApi {
getVisibleRoomBySpaceKey(spaceKey: string, cb: () => string[]): void;
setRoomHeaderButtonCallback(cb: RoomHeaderButtonsCallback): void;
setSpacePanelItem(spaceKey: string, props: SpacePanelItemProps): void;
}
@@ -358,6 +365,9 @@ export interface Room {
name: Watchable<string>;
}
// @alpha
export type RoomHeaderButtonsCallback = (roomId: string) => JSX.Element | undefined;
// @alpha @deprecated (undocumented)
export interface RoomListCustomisations<Room> {
isRoomVisible?(room: Room): boolean;
@@ -436,6 +446,14 @@ export class Watchable<T> {
watch(listener: (value: T) => void): void;
}
// @alpha
export interface WidgetApi {
getAppAvatarUrl(app: IWidget, width?: number, height?: number, resizeMethod?: string): string | null;
getWidgetsInRoom(roomId: string): IWidget[];
isAppInContainer(app: IWidget, container: Container, roomId: string): boolean;
moveAppToContainer(app: IWidget, container: Container, roomId: string): void;
}
// @alpha
export type WidgetDescriptor = {
id: string;
@@ -476,4 +494,3 @@ export interface WidgetVariablesCustomisations {
// (No @packageDocumentation comment for this package)
```