feat: added datatestids to avatarplaceholder and member placeholder

pull/3083/head
William Grant 11 months ago
parent b13e907753
commit 523c95447c

@ -8,6 +8,7 @@ type Props = {
diameter: number;
name: string;
pubkey: string;
dataTestId?: string;
};
const sha512FromPubkeyOneAtAtime = async (pubkey: string) => {
@ -20,6 +21,9 @@ const sha512FromPubkeyOneAtAtime = async (pubkey: string) => {
});
};
// for testing purposes only
export const AvatarPlaceHolderUtils = { sha512FromPubkeyOneAtAtime };
// do not do this on every avatar, just cache the values so we can reuse them across the app
// key is the pubkey, value is the hash
const cachedHashes = new Map<string, number>();
@ -74,7 +78,7 @@ function useHashBasedOnPubkey(pubkey: string) {
}
export const AvatarPlaceHolder = (props: Props) => {
const { pubkey, diameter, name } = props;
const { pubkey, diameter, name, dataTestId } = props;
const { hash, loading } = useHashBasedOnPubkey(pubkey);
@ -85,7 +89,7 @@ export const AvatarPlaceHolder = (props: Props) => {
if (loading || !hash) {
// return avatar placeholder circle
return <MemberAvatarPlaceHolder />;
return <MemberAvatarPlaceHolder dataTestId={dataTestId} />;
}
const initials = getInitials(name);
@ -97,7 +101,7 @@ export const AvatarPlaceHolder = (props: Props) => {
const bgColor = avatarPlaceholderColors[bgColorIndex];
return (
<svg viewBox={viewBox}>
<svg viewBox={viewBox} data-testid={dataTestId}>
<g id="UrTavla">
<circle
cx={r}

@ -1,6 +1,6 @@
export const MemberAvatarPlaceHolder = () => {
export const MemberAvatarPlaceHolder = ({ dataTestId }: { dataTestId?: string }) => {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26 26">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26 26" data-testid={dataTestId}>
<circle fill="var(--primary-color)" cx="13" cy="13" r="13" />
<path
fill="var(--white-color)"

Loading…
Cancel
Save