jiti-meet/react/features/base/avatar/components/native/StatelessAvatar.js

168 lines
4.0 KiB
JavaScript
Raw Normal View History

2019-07-03 15:39:39 +00:00
// @flow
import React from 'react';
import { Image, Text, View } from 'react-native';
2019-08-30 16:39:06 +00:00
import { Icon } from '../../../icons';
2019-07-03 15:39:39 +00:00
import { type StyleType } from '../../../styles';
import AbstractStatelessAvatar, { type Props as AbstractProps } from '../AbstractStatelessAvatar';
import styles from './styles';
2020-05-20 10:57:03 +00:00
const DEFAULT_AVATAR = require('../../../../../../images/avatar.png');
2019-07-03 15:39:39 +00:00
type Props = AbstractProps & {
/**
* One of the expected status strings (e.g. 'available') to render a badge on the avatar, if necessary.
*/
status?: ?string,
2019-07-03 15:39:39 +00:00
/**
* External style passed to the component.
2019-07-03 15:39:39 +00:00
*/
style?: StyleType
};
/**
* Implements a stateless avatar component that renders an avatar purely from what gets passed through
* props.
*/
export default class StatelessAvatar extends AbstractStatelessAvatar<Props> {
/**
* Implements {@code Component#render}.
*
* @inheritdoc
*/
render() {
const { initials, size, style, url } = this.props;
let avatar;
2019-08-30 16:39:06 +00:00
if (this._isIcon(url)) {
avatar = this._renderIconAvatar(url);
} else if (url) {
2019-07-03 15:39:39 +00:00
avatar = this._renderURLAvatar();
} else if (initials) {
avatar = this._renderInitialsAvatar();
} else {
avatar = this._renderDefaultAvatar();
}
return (
<View>
<View
style = { [
styles.avatarContainer(size),
style
] }>
{ avatar }
</View>
{ this._renderAvatarStatus() }
2019-07-03 15:39:39 +00:00
</View>
);
}
2019-08-30 16:39:06 +00:00
_isIcon: (?string | ?Object) => boolean
/**
* Renders a badge representing the avatar status.
*
* @returns {React$Elementaa}
*/
_renderAvatarStatus() {
const { size, status } = this.props;
if (!status) {
return null;
}
return (
<View style = { styles.badgeContainer }>
<View style = { styles.badge(size, status) } />
</View>
);
}
2019-07-03 15:39:39 +00:00
/**
* Renders the default avatar.
*
* @returns {React$Element<*>}
*/
_renderDefaultAvatar() {
const { size } = this.props;
return (
<Image
source = { DEFAULT_AVATAR }
style = { [
styles.avatarContent(size),
styles.staticAvatar
] } />
);
}
/**
2019-08-30 16:39:06 +00:00
* Renders the icon avatar.
*
2019-08-30 16:39:06 +00:00
* @param {Object} icon - The icon component to render.
* @returns {React$Element<*>}
*/
_renderIconAvatar(icon) {
const { color, size } = this.props;
return (
<View
style = { [
styles.initialsContainer,
{
backgroundColor: color
}
] }>
<Icon
2019-08-30 16:39:06 +00:00
src = { icon }
style = { styles.initialsText(size) } />
</View>
);
}
2019-07-03 15:39:39 +00:00
/**
* Renders the initials-based avatar.
*
* @returns {React$Element<*>}
*/
_renderInitialsAvatar() {
const { color, initials, size } = this.props;
return (
<View
style = { [
styles.initialsContainer,
{
backgroundColor: color
}
] }>
<Text style = { styles.initialsText(size) }> { initials } </Text>
</View>
);
}
/**
* Renders the url-based avatar.
*
* @returns {React$Element<*>}
*/
_renderURLAvatar() {
const { onAvatarLoadError, size, url } = this.props;
return (
<Image
defaultSource = { DEFAULT_AVATAR }
onError = { onAvatarLoadError }
resizeMode = 'cover'
source = {{ uri: url }}
style = { styles.avatarContent(size) } />
);
}
}