Update module API

This commit is contained in:
Half-Shot
2025-05-30 14:51:38 +01:00
parent ba5ce17574
commit 930a5eb8b7
4 changed files with 51 additions and 66 deletions
@@ -61,29 +61,25 @@ export interface ConfigApi {
} }
// @public // @public
export type CustomComponentProps = { export interface CustomComponentsApi {
[CustomComponentTarget.TextualBody]: { // Warning: (ae-incompatible-release-tags) The symbol "registerMessageRenderer" is marked as @public, but its signature references "CustomMessageRenderFunction" which is marked as @beta
mxEvent: MatrixEvent; registerMessageRenderer(eventType: string | RegExp, renderer: CustomMessageRenderFunction): void;
highlights?: string[]; }
showUrlPreview?: boolean;
forExport?: boolean; // @alpha
}; export type CustomMessageComponentProps = {
mxEvent: MatrixEvent;
highlights?: string[];
showUrlPreview?: boolean;
forExport?: boolean;
}; };
// @public // Warning: (ae-incompatible-release-tags) The symbol "CustomMessageRenderFunction" is marked as @beta, but its signature references "CustomMessageComponentProps" which is marked as @alpha
export type CustomComponentRenderFunction<T extends CustomComponentTarget> = ( //
props: CustomComponentProps[T], // @beta
originalComponent: () => JSX.Element) => JSX.Element | null; export type CustomMessageRenderFunction = (
props: CustomMessageComponentProps,
// @public originalComponent?: () => React.JSX.Element) => JSX.Element | null;
export interface CustomComponentsApi {
register<T extends CustomComponentTarget>(target: T, renderer: CustomComponentRenderFunction<T>): void;
}
// @public
export enum CustomComponentTarget {
TextualBody = "TextualBody"
}
// @alpha @deprecated (undocumented) // @alpha @deprecated (undocumented)
export interface DirectoryCustomisations { export interface DirectoryCustomisations {
@@ -9,54 +9,42 @@ import type { JSX } from "react";
import type { MatrixEvent } from "matrix-js-sdk"; import type { MatrixEvent } from "matrix-js-sdk";
/** /**
* Targets in Element for custom components. * Properties for all message components.
* @public * @alpha Subject to change.
*/ */
export enum CustomComponentTarget { export type CustomMessageComponentProps = {
/** /**
* Component that renders "m.room.message" events in the room timeline. * The Matrix event for this textual body.
*/ */
TextualBody = "TextualBody", mxEvent: MatrixEvent;
} /**
* Words to highlight on (e.g. from search results).
* May be undefined if the client does not need to highlight
*/
highlights?: string[];
/**
* Should previews be shown for this event
*/
showUrlPreview?: boolean;
/**
* Is this event being rendered to a static export
*/
forExport?: boolean;
};
/** /**
* Properties for the render component. * Function used to render a message component.
* @public * @beta Unlikely to change
*/ */
export type CustomComponentProps = { export type CustomMessageRenderFunction = (
[CustomComponentTarget.TextualBody]: {
/**
* The Matrix event for this textual body.
*/
mxEvent: MatrixEvent;
/**
* Words to highlight on (e.g. from search results).
* May be undefined if the client does not need to highlight
*/
highlights?: string[];
/**
* Should previews be shown for this event
*/
showUrlPreview?: boolean;
/**
* Is this event being rendered to a static export
*/
forExport?: boolean;
};
};
/**
* Render function. Returning null skips this function and passes it onto the next registered renderer.
* @public
*/
export type CustomComponentRenderFunction<T extends CustomComponentTarget> = (
/** /**
* Properties from the given target to be used for rendering. * Properties for the message to be renderered.
*/ */
props: CustomComponentProps[T], props: CustomMessageComponentProps,
/** /**
* Render function for the original component. * Render function for the original component. This may be omitted if the message would not normally be rendered.
*/ */
originalComponent: () => JSX.Element, originalComponent?: () => React.JSX.Element,
) => JSX.Element | null; ) => JSX.Element | null;
/** /**
@@ -65,16 +53,18 @@ export type CustomComponentRenderFunction<T extends CustomComponentTarget> = (
*/ */
export interface CustomComponentsApi { export interface CustomComponentsApi {
/** /**
* Register a renderer for a component type. * Register a renderer for a message type in the timeline.
*
* The render function should either return a rendered component, or `null` if the * The render function should either return a rendered component, or `null` if the
* component should not be overidden. * component should not be overidden (for instance, to passthrough to another module or allow
* the application complete control)
* *
* Multiple render function may be registered for a single target, however the first * Multiple render function may be registered for a single target, however the first
* non-null result will be used. If all results are null, or no registrations exist * non-null result will be used. If all results are null, or no registrations exist
* for a target then the original component is used. * for a target then the original component is used.
* *
* @param target - The target location for the component. * @param eventType - The event type this renderer is for. Use a RegExp instance if you want to target multiple types.
* @param renderer - The render method. * @param renderer - The render function.
*/ */
register<T extends CustomComponentTarget>(target: T, renderer: CustomComponentRenderFunction<T>): void; registerMessageRenderer(eventType: string | RegExp, renderer: CustomMessageRenderFunction): void;
} }
@@ -89,7 +89,7 @@ export interface Api extends LegacyModuleApiExtension, LegacyCustomisationsApiEx
readonly rootNode: HTMLElement; readonly rootNode: HTMLElement;
/** /**
* The custom components API. * The custom message component API.
* @public * @public
*/ */
readonly customComponents: CustomComponentsApi; readonly customComponents: CustomComponentsApi;
@@ -10,6 +10,5 @@ export type { Api, Module, ModuleFactory } from "./api";
export type { Config, ConfigApi } from "./api/config"; export type { Config, ConfigApi } from "./api/config";
export type { I18nApi, Variables, Translations } from "./api/i18n"; export type { I18nApi, Variables, Translations } from "./api/i18n";
export type * from "./api/custom-components"; export type * from "./api/custom-components";
export { CustomComponentTarget } from "./api/custom-components";
export type * from "./api/legacy-modules"; export type * from "./api/legacy-modules";
export type * from "./api/legacy-customisations"; export type * from "./api/legacy-customisations";