* 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
22 lines
650 B
JavaScript
22 lines
650 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {getTeam} from 'mattermost-redux/selectors/entities/teams';
|
|
import {getTheme} from 'mattermost-redux/selectors/entities/preferences';
|
|
|
|
import TeamIcon from './team_icon';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
const team = getTeam(state, ownProps.teamId);
|
|
const lastIconUpdate = team.last_team_icon_update;
|
|
|
|
return {
|
|
displayName: team.display_name,
|
|
lastIconUpdate,
|
|
theme: getTheme(state),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(TeamIcon);
|