mattermost-mobile/app/components/team_icon/team_icon.js
Elias Nahum 19e6b2a00e
[MM-18362] Sidebar improvements (#3223)
* sidebar lists displays past bottom safe area insets

* Sidebar animation speed

* Sidebar improvements

* Add status icons and avatars to mattermost font

* Bot icon the same size as other channel icons

* improvements to the channel badge

* Badge color and border

* More precision when showing more unread above

* Improve GM icon

* Fix badge on team sidebar

* Align channel sidebar badges

* alignments

* Fix tests

* Remove unnecessary isLandscape in main sidebar connector
2019-09-16 13:17:48 -03:00

123 lines
3.2 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React from 'react';
import PropTypes from 'prop-types';
import {
Image,
Text,
View,
} from 'react-native';
import {Client4} from 'mattermost-redux/client';
import ImageCacheManager from 'app/utils/image_cache_manager';
import {makeStyleSheetFromTheme} from 'app/utils/theme';
export default class TeamIcon extends React.PureComponent {
static propTypes = {
displayName: PropTypes.string,
lastIconUpdate: PropTypes.number,
teamId: PropTypes.string.isRequired, // eslint-disable-line react/no-unused-prop-types
styleContainer: PropTypes.any,
styleText: PropTypes.any,
styleImage: PropTypes.any,
theme: PropTypes.object.isRequired,
};
constructor(props) {
super(props);
const {lastIconUpdate, teamId} = props;
if (lastIconUpdate) {
ImageCacheManager.cache('', Client4.getTeamIconUrl(teamId, lastIconUpdate), this.setImageURL);
}
this.state = {
teamIcon: null,
imageError: false,
};
}
componentWillReceiveProps(nextProps) {
const newState = {imageError: false};
if (this.props.teamId !== nextProps.teamId) {
newState.teamIcon = null;
}
if (nextProps.lastIconUpdate && this.props.lastIconUpdate !== nextProps.lastIconUpdate) {
const {lastIconUpdate, teamId} = nextProps;
ImageCacheManager.cache('', Client4.getTeamIconUrl(teamId, lastIconUpdate), this.setImageURL);
}
this.setState(newState);
}
setImageURL = (teamIcon) => {
this.setState({teamIcon});
};
render() {
const {
displayName,
theme,
styleContainer,
styleText,
styleImage,
} = this.props;
const styles = getStyleSheet(theme);
let teamIconContent;
if (this.state.teamIcon) {
teamIconContent = (
<Image
style={[styles.image, styleImage]}
source={{uri: this.state.teamIcon}}
onError={() => this.setState({imageError: true})}
/>
);
} else {
teamIconContent = (
<Text style={[styles.text, styleText]}>
{displayName.substr(0, 2).toUpperCase()}
</Text>
);
}
return (
<View style={[styles.container, styleContainer]}>
{teamIconContent}
</View>
);
}
}
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
return {
container: {
width: 30,
height: 30,
borderRadius: 2,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: theme.sidebarText,
},
text: {
color: theme.sidebarBg,
fontFamily: 'OpenSans',
fontWeight: '600',
fontSize: 15,
},
image: {
borderRadius: 2,
position: 'absolute',
top: 0,
bottom: 0,
left: 0,
right: 0,
},
};
});