2020-06-25 18:45:01 +03:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-06-29 15:11:58 +03:00
|
|
|
import { useCallback, useState } from "react";
|
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/client";
|
|
|
|
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
|
|
|
import { Room } from "matrix-js-sdk/src/models/room";
|
2020-06-25 18:45:01 +03:00
|
|
|
|
2021-06-29 15:11:58 +03:00
|
|
|
import { useEventEmitter } from "./useEventEmitter";
|
2020-06-25 18:45:01 +03:00
|
|
|
|
2021-06-17 16:49:27 +03:00
|
|
|
const tryGetContent = <T extends {}>(ev?: MatrixEvent) => ev ? ev.getContent<T>() : undefined;
|
2020-06-25 18:45:01 +03:00
|
|
|
|
|
|
|
// Hook to simplify listening to Matrix account data
|
|
|
|
export const useAccountData = <T extends {}>(cli: MatrixClient, eventType: string) => {
|
2021-06-17 16:49:27 +03:00
|
|
|
const [value, setValue] = useState<T>(() => tryGetContent<T>(cli.getAccountData(eventType)));
|
2020-06-25 18:45:01 +03:00
|
|
|
|
|
|
|
const handler = useCallback((event) => {
|
|
|
|
if (event.getType() !== eventType) return;
|
|
|
|
setValue(event.getContent());
|
2020-07-20 22:43:49 +03:00
|
|
|
}, [eventType]);
|
2020-06-25 18:45:01 +03:00
|
|
|
useEventEmitter(cli, "accountData", handler);
|
|
|
|
|
2020-06-25 18:55:38 +03:00
|
|
|
return value || {} as T;
|
2020-06-25 18:45:01 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
// Hook to simplify listening to Matrix room account data
|
|
|
|
export const useRoomAccountData = <T extends {}>(room: Room, eventType: string) => {
|
2021-06-17 16:49:27 +03:00
|
|
|
const [value, setValue] = useState<T>(() => tryGetContent<T>(room.getAccountData(eventType)));
|
2020-06-25 18:45:01 +03:00
|
|
|
|
|
|
|
const handler = useCallback((event) => {
|
|
|
|
if (event.getType() !== eventType) return;
|
|
|
|
setValue(event.getContent());
|
2020-07-20 22:43:49 +03:00
|
|
|
}, [eventType]);
|
2020-06-25 18:45:01 +03:00
|
|
|
useEventEmitter(room, "Room.accountData", handler);
|
|
|
|
|
2020-06-25 18:55:38 +03:00
|
|
|
return value || {} as T;
|
2020-06-25 18:45:01 +03:00
|
|
|
};
|