jiti-meet/react/features/base/avatar/components/AbstractStatelessAvatar.js

53 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-07-03 15:39:39 +00:00
// @flow
import { PureComponent } from 'react';
export type Props = {
/**
* Color of the (initials based) avatar, if needed.
*/
color?: string,
/**
* Initials to be used to render the initials based avatars.
*/
initials?: string,
/**
* Callback to signal the failure of the loading of the URL.
*/
onAvatarLoadError?: Function,
2021-12-17 00:16:24 +00:00
/**
* Additional parameters to be passed to onAvatarLoadError function.
*/
onAvatarLoadErrorParams?: Object,
2019-07-03 15:39:39 +00:00
/**
* Expected size of the avatar.
*/
size?: number;
/**
* The URL of the avatar to render.
*/
2019-08-30 16:39:06 +00:00
url?: ?string | Object
2019-07-03 15:39:39 +00:00
};
/**
* Implements an abstract stateless avatar component that renders an avatar purely from what gets passed through
* props.
*/
export default class AbstractStatelessAvatar<P: Props> extends PureComponent<P> {
/**
2019-08-30 16:39:06 +00:00
* Checks if the passed prop is a loaded icon or not.
*
2019-08-30 16:39:06 +00:00
* @param {string? | Object?} iconProp - The prop to check.
* @returns {boolean}
*/
2019-08-30 16:39:06 +00:00
_isIcon(iconProp: ?string | ?Object): boolean {
return Boolean(iconProp) && (typeof iconProp === 'object' || typeof iconProp === 'function');
}
}