You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
3.2 KiB
124 lines
3.2 KiB
2 years ago
|
import React, { useState, useEffect } from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import classnames from 'classnames';
|
||
|
import { BaseAvatar } from '../base-avatar';
|
||
|
import Box from '../../ui/box/box';
|
||
|
|
||
|
import {
|
||
|
COLORS,
|
||
|
SIZES,
|
||
|
DISPLAY,
|
||
|
ALIGN_ITEMS,
|
||
|
JUSTIFY_CONTENT,
|
||
|
} from '../../../helpers/constants/design-system';
|
||
|
|
||
|
export const AvatarNetwork = ({
|
||
|
size = SIZES.MD,
|
||
|
networkName,
|
||
|
networkImageUrl,
|
||
|
showHalo,
|
||
|
color = COLORS.TEXT_DEFAULT,
|
||
|
backgroundColor = COLORS.BACKGROUND_ALTERNATIVE,
|
||
|
borderColor = COLORS.TRANSPARENT,
|
||
|
className,
|
||
|
...props
|
||
|
}) => {
|
||
|
const [showFallback, setShowFallback] = useState(false);
|
||
|
|
||
|
useEffect(() => {
|
||
|
setShowFallback(!networkImageUrl);
|
||
|
}, [networkImageUrl]);
|
||
|
|
||
|
const fallbackString = networkName && networkName[0] ? networkName[0] : '?';
|
||
|
|
||
|
const handleOnError = () => {
|
||
|
setShowFallback(true);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<BaseAvatar
|
||
|
size={size}
|
||
|
display={DISPLAY.FLEX}
|
||
|
alignItems={ALIGN_ITEMS.CENTER}
|
||
|
justifyContent={JUSTIFY_CONTENT.CENTER}
|
||
|
className={classnames(
|
||
|
'avatar-network',
|
||
|
showHalo && 'avatar-network--with-halo',
|
||
|
className,
|
||
|
)}
|
||
|
{...{ backgroundColor, borderColor, color, ...props }}
|
||
|
>
|
||
|
{showFallback ? (
|
||
|
fallbackString
|
||
|
) : (
|
||
|
<>
|
||
|
{showHalo && (
|
||
|
<img
|
||
|
src={networkImageUrl}
|
||
|
className={
|
||
|
showHalo ? 'avatar-network__network-image--blurred' : ''
|
||
|
}
|
||
|
aria-hidden="true"
|
||
|
/>
|
||
|
)}
|
||
|
<img
|
||
|
className={
|
||
|
showHalo
|
||
|
? 'avatar-network__network-image--size-reduced'
|
||
|
: 'avatar-network__network-image'
|
||
|
}
|
||
|
onError={handleOnError}
|
||
|
src={networkImageUrl}
|
||
|
alt={networkName || 'network avatar'}
|
||
|
/>
|
||
|
</>
|
||
|
)}
|
||
|
</BaseAvatar>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
AvatarNetwork.propTypes = {
|
||
|
/**
|
||
|
* The networkName accepts the string to render the first alphabet of the Avatar Name
|
||
|
*/
|
||
|
networkName: PropTypes.string,
|
||
|
/**
|
||
|
* The networkImageUrl accepts the string of the image to be rendered
|
||
|
*/
|
||
|
networkImageUrl: PropTypes.string,
|
||
|
/**
|
||
|
* The showHalo accepts a boolean prop to render the image with halo effect
|
||
|
*/
|
||
|
showHalo: PropTypes.bool,
|
||
|
/**
|
||
|
* The size of the AvatarNetwork
|
||
|
* Possible values could be 'SIZES.XS', 'SIZES.SM', 'SIZES.MD', 'SIZES.LG', 'SIZES.XL'
|
||
|
* Defaults to SIZES.MD
|
||
|
*/
|
||
|
size: PropTypes.oneOf(Object.values(SIZES)),
|
||
|
/**
|
||
|
* The background color of the AvatarNetwork
|
||
|
* Defaults to COLORS.BACKGROUND_ALTERNATIVE
|
||
|
*/
|
||
|
backgroundColor: Box.propTypes.backgroundColor,
|
||
|
/**
|
||
|
* The background color of the AvatarNetwork
|
||
|
* Defaults to COLORS.BORDER_DEFAULT
|
||
|
*/
|
||
|
borderColor: Box.propTypes.borderColor,
|
||
|
/**
|
||
|
* The color of the text inside the AvatarNetwork
|
||
|
* Defaults to COLORS.TEXT_DEFAULT
|
||
|
*/
|
||
|
color: Box.propTypes.color,
|
||
|
/**
|
||
|
* Additional classNames to be added to the AvatarNetwork
|
||
|
*/
|
||
|
className: PropTypes.string,
|
||
|
/**
|
||
|
* AvatarNetwork also accepts all Box props including but not limited to
|
||
|
* className, as(change root element of HTML element) and margin props
|
||
|
*/
|
||
|
...Box.propTypes,
|
||
|
};
|