2023-01-04 00:55:26 +08:00
|
|
|
/*
|
|
|
|
Copyright 2022 New Vector Ltd
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2023-08-31 21:46:09 +08:00
|
|
|
import { useMemo, FC } from "react";
|
|
|
|
import { Avatar as CompoundAvatar } from "@vector-im/compound-web";
|
2022-05-06 18:32:09 +08:00
|
|
|
|
2022-05-19 07:00:59 +08:00
|
|
|
import { getAvatarUrl } from "./matrix-utils";
|
|
|
|
import { useClient } from "./ClientContext";
|
2021-12-08 09:59:55 +08:00
|
|
|
|
2022-05-19 07:00:59 +08:00
|
|
|
export enum Size {
|
|
|
|
XS = "xs",
|
|
|
|
SM = "sm",
|
|
|
|
MD = "md",
|
|
|
|
LG = "lg",
|
|
|
|
XL = "xl",
|
|
|
|
}
|
|
|
|
|
|
|
|
export const sizes = new Map([
|
|
|
|
[Size.XS, 22],
|
|
|
|
[Size.SM, 32],
|
|
|
|
[Size.MD, 36],
|
|
|
|
[Size.LG, 42],
|
|
|
|
[Size.XL, 90],
|
|
|
|
]);
|
|
|
|
|
2023-08-31 21:46:09 +08:00
|
|
|
interface Props {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
className?: string;
|
2022-07-30 16:06:28 +08:00
|
|
|
src?: string;
|
2022-05-19 07:00:59 +08:00
|
|
|
size?: Size | number;
|
2022-05-06 18:32:09 +08:00
|
|
|
}
|
|
|
|
|
2023-07-01 06:21:18 +08:00
|
|
|
export const Avatar: FC<Props> = ({
|
2023-08-31 21:46:09 +08:00
|
|
|
className,
|
|
|
|
id,
|
|
|
|
name,
|
2021-12-08 09:59:55 +08:00
|
|
|
src,
|
2022-05-19 07:00:59 +08:00
|
|
|
size = Size.MD,
|
2022-05-06 18:32:09 +08:00
|
|
|
}) => {
|
2022-05-19 07:00:59 +08:00
|
|
|
const { client } = useClient();
|
|
|
|
|
2023-08-31 21:46:09 +08:00
|
|
|
const sizePx = useMemo(
|
2022-05-19 07:00:59 +08:00
|
|
|
() =>
|
|
|
|
Object.values(Size).includes(size as Size)
|
2023-08-31 21:46:09 +08:00
|
|
|
? sizes.get(size as Size)
|
|
|
|
: (size as number),
|
2023-10-11 22:42:04 +08:00
|
|
|
[size],
|
2022-05-19 07:00:59 +08:00
|
|
|
);
|
|
|
|
|
2023-06-30 23:43:28 +08:00
|
|
|
const resolvedSrc = useMemo(() => {
|
|
|
|
if (!client || !src || !sizePx) return undefined;
|
2023-07-04 01:24:07 +08:00
|
|
|
return src.startsWith("mxc://") ? getAvatarUrl(client, src, sizePx) : src;
|
2023-06-30 23:43:28 +08:00
|
|
|
}, [client, src, sizePx]);
|
2022-05-19 07:00:59 +08:00
|
|
|
|
2021-12-08 09:59:55 +08:00
|
|
|
return (
|
2023-08-31 21:46:09 +08:00
|
|
|
<CompoundAvatar
|
|
|
|
className={className}
|
|
|
|
id={id}
|
|
|
|
name={name}
|
|
|
|
size={`${sizePx}px`}
|
|
|
|
src={resolvedSrc}
|
|
|
|
/>
|
2021-12-08 09:59:55 +08:00
|
|
|
);
|
2022-05-06 18:32:09 +08:00
|
|
|
};
|