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,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2019-07-04 08:31:23 +00:00
|
|
|
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-07-04 08:31:23 +00:00
|
|
|
*
|
2019-08-30 16:39:06 +00:00
|
|
|
* @param {string? | Object?} iconProp - The prop to check.
|
|
|
|
* @returns {boolean}
|
2019-07-04 08:31:23 +00:00
|
|
|
*/
|
2019-08-30 16:39:06 +00:00
|
|
|
_isIcon(iconProp: ?string | ?Object): boolean {
|
2019-09-20 13:47:53 +00:00
|
|
|
return Boolean(iconProp) && (typeof iconProp === 'object' || typeof iconProp === 'function');
|
2019-07-04 08:31:23 +00:00
|
|
|
}
|
|
|
|
}
|