/* Copyright 2015, 2016 OpenMarket Ltd Copyright 2019 - 2022 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. */ import React, { ReactNode, useContext } from "react"; import { RoomMember } from "matrix-js-sdk/src/matrix"; import { ResizeMethod } from "matrix-js-sdk/src/@types/partials"; import dis from "../../../dispatcher/dispatcher"; import { Action } from "../../../dispatcher/actions"; import BaseAvatar from "./BaseAvatar"; import { mediaFromMxc } from "../../../customisations/Media"; import { CardContext } from "../right_panel/context"; import UserIdentifierCustomisations from "../../../customisations/UserIdentifier"; import { useRoomMemberProfile } from "../../../hooks/room/useRoomMemberProfile"; import { _t } from "../../../languageHandler"; interface IProps extends Omit, "name" | "idName" | "url"> { member: RoomMember | null; fallbackUserId?: string; width: number; height: number; resizeMethod?: ResizeMethod; // Whether the onClick of the avatar should be overridden to dispatch `Action.ViewUser` viewUserOnClick?: boolean; pushUserOnClick?: boolean; title?: string; style?: any; forceHistorical?: boolean; // true to deny `useOnlyCurrentProfiles` usage. Default false. hideTitle?: boolean; children?: ReactNode; } export default function MemberAvatar({ width, height, resizeMethod = "crop", viewUserOnClick, forceHistorical, fallbackUserId, hideTitle, member: propsMember, ...props }: IProps): JSX.Element { const card = useContext(CardContext); const member = useRoomMemberProfile({ userId: propsMember?.userId, member: propsMember, forceHistorical: forceHistorical, }); const name = member?.name ?? fallbackUserId; let title: string | undefined = props.title; let imageUrl: string | null | undefined; if (member?.name) { if (member.getMxcAvatarUrl()) { imageUrl = mediaFromMxc(member.getMxcAvatarUrl() ?? "").getThumbnailOfSourceHttp( width, height, resizeMethod, ); } if (!title) { title = UserIdentifierCustomisations.getDisplayUserIdentifier(member?.userId ?? "", { roomId: member?.roomId ?? "", }) ?? fallbackUserId; } } return ( { dis.dispatch({ action: Action.ViewUser, member: propsMember, push: card.isCard, }); } : props.onClick } altText={_t("Profile picture")} ariaLabel={_t("Profile picture")} /> ); } export class LegacyMemberAvatar extends React.Component { public render(): React.ReactNode { return {this.props.children}; } }