76 lines
2.1 KiB
JavaScript
76 lines
2.1 KiB
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import React, {PropTypes} from 'react';
|
|
import {connect} from 'react-redux';
|
|
import {
|
|
Text,
|
|
TouchableOpacity,
|
|
View
|
|
} from 'react-native';
|
|
import Icon from 'react-native-vector-icons/FontAwesome';
|
|
|
|
import {getCurrentChannel} from 'mattermost-redux/selectors/entities/channels';
|
|
import {getTheme} from 'app/selectors/preferences';
|
|
|
|
function ChannelTitle(props) {
|
|
if (props.applicationInitializing) {
|
|
return null;
|
|
}
|
|
|
|
const channelName = props.currentChannel.display_name;
|
|
let icon;
|
|
if (channelName) {
|
|
icon = (
|
|
<Icon
|
|
style={{marginHorizontal: 6}}
|
|
size={12}
|
|
name='chevron-down'
|
|
color={props.theme.sidebarHeaderTextColor}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<TouchableOpacity
|
|
style={{flexDirection: 'row', flex: 1}}
|
|
onPress={() => props.emitter('show_channel_info')}
|
|
>
|
|
<View style={{flex: 1, flexDirection: 'row', alignItems: 'center', justifyContent: 'center', marginHorizontal: 15}}>
|
|
<Text
|
|
ellipsizeMode='tail'
|
|
numberOfLines={1}
|
|
style={{
|
|
color: props.theme.sidebarHeaderTextColor,
|
|
fontSize: 15,
|
|
fontWeight: 'bold'}}
|
|
>
|
|
{channelName}
|
|
</Text>
|
|
{icon}
|
|
</View>
|
|
</TouchableOpacity>
|
|
);
|
|
}
|
|
|
|
ChannelTitle.propTypes = {
|
|
applicationInitializing: PropTypes.bool.isRequired,
|
|
currentChannel: PropTypes.object,
|
|
emitter: PropTypes.func.isRequired,
|
|
theme: PropTypes.object
|
|
};
|
|
|
|
ChannelTitle.defaultProps = {
|
|
currentChannel: {},
|
|
theme: {}
|
|
};
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
applicationInitializing: state.views.channel.appInitializing,
|
|
currentChannel: getCurrentChannel(state),
|
|
theme: getTheme(state)
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(ChannelTitle);
|