mirror of
https://github.com/vector-im/element-web.git
synced 2025-11-24 12:01:34 +01:00
* Copyright headers 1 * Licence headers 2 * Copyright Headers 3 * Copyright Headers 4 * Copyright Headers 5 * Copyright Headers 6 * Copyright headers 7 * Add copyright headers for html and config file * Replace license files and update package.json * Update with CLA * lint
49 lines
1.7 KiB
TypeScript
49 lines
1.7 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { useCallback, useState } from "react";
|
|
import { ClientEvent, MatrixClient, MatrixEvent } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { useTypedEventEmitter } from "./useEventEmitter";
|
|
|
|
const tryGetContent = <T extends {}>(ev?: MatrixEvent): T | undefined => ev?.getContent<T>();
|
|
|
|
// Hook to simplify listening to Matrix account data
|
|
export const useAccountData = <T extends {}>(cli: MatrixClient, eventType: string): T => {
|
|
const [value, setValue] = useState<T | undefined>(() => tryGetContent<T>(cli.getAccountData(eventType)));
|
|
|
|
const handler = useCallback(
|
|
(event: MatrixEvent) => {
|
|
if (event.getType() !== eventType) return;
|
|
setValue(event.getContent<T>());
|
|
},
|
|
[eventType],
|
|
);
|
|
useTypedEventEmitter(cli, ClientEvent.AccountData, handler);
|
|
|
|
return value || ({} as T);
|
|
};
|
|
|
|
// Currently not used, commenting out otherwise the dead code CI is unhappy.
|
|
// But this code is valid and probably will be needed.
|
|
|
|
// export const useRoomAccountData = <T extends {}>(room: Room, eventType: string): T => {
|
|
// const [value, setValue] = useState<T | undefined>(() => tryGetContent<T>(room.getAccountData(eventType)));
|
|
|
|
// const handler = useCallback(
|
|
// (event) => {
|
|
// if (event.getType() !== eventType) return;
|
|
// setValue(event.getContent());
|
|
// },
|
|
// [eventType],
|
|
// );
|
|
// useTypedEventEmitter(room, RoomEvent.AccountData, handler);
|
|
|
|
// return value || ({} as T);
|
|
// };
|