176 lines
3.9 KiB
JavaScript
176 lines
3.9 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import {
|
|
View, Text, StyleSheet, ScrollView, TouchableOpacity
|
|
} from 'react-native';
|
|
|
|
import I18n from '../../../i18n';
|
|
import sharedStyles from '../../Styles';
|
|
import { isAndroid, isTablet } from '../../../utils/deviceInfo';
|
|
import Icon from './Icon';
|
|
import { themes } from '../../../constants/colors';
|
|
import Markdown from '../../../containers/markdown';
|
|
|
|
const androidMarginLeft = isTablet ? 0 : 10;
|
|
|
|
const TITLE_SIZE = 16;
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
height: '100%',
|
|
marginRight: isAndroid ? 15 : 5,
|
|
marginLeft: isAndroid ? androidMarginLeft : -12
|
|
},
|
|
titleContainer: {
|
|
flex: 6,
|
|
flexDirection: 'row'
|
|
},
|
|
threadContainer: {
|
|
marginRight: isAndroid ? 20 : undefined
|
|
},
|
|
title: {
|
|
...sharedStyles.textSemibold,
|
|
fontSize: TITLE_SIZE
|
|
},
|
|
scroll: {
|
|
alignItems: 'center'
|
|
},
|
|
typing: {
|
|
...sharedStyles.textRegular,
|
|
fontSize: 12,
|
|
flex: 4
|
|
},
|
|
typingUsers: {
|
|
...sharedStyles.textSemibold
|
|
}
|
|
});
|
|
|
|
const Typing = React.memo(({ usersTyping, theme }) => {
|
|
let usersText;
|
|
if (!usersTyping.length) {
|
|
return null;
|
|
} else if (usersTyping.length === 2) {
|
|
usersText = usersTyping.join(` ${ I18n.t('and') } `);
|
|
} else {
|
|
usersText = usersTyping.join(', ');
|
|
}
|
|
return (
|
|
<Text style={[styles.typing, { color: themes[theme].headerTitleColor }]} numberOfLines={1}>
|
|
<Text style={styles.typingUsers}>{usersText} </Text>
|
|
{ usersTyping.length > 1 ? I18n.t('are_typing') : I18n.t('is_typing') }...
|
|
</Text>
|
|
);
|
|
});
|
|
|
|
Typing.propTypes = {
|
|
usersTyping: PropTypes.array,
|
|
theme: PropTypes.string
|
|
};
|
|
|
|
const HeaderTitle = React.memo(({
|
|
title, tmid, prid, scale, connecting, theme
|
|
}) => {
|
|
if (connecting) {
|
|
title = I18n.t('Connecting');
|
|
}
|
|
|
|
if (!tmid && !prid) {
|
|
return (
|
|
<Text
|
|
style={[styles.title, { fontSize: TITLE_SIZE * scale, color: themes[theme].headerTitleColor }]}
|
|
numberOfLines={1}
|
|
testID={`room-view-title-${ title }`}
|
|
>
|
|
{title}
|
|
</Text>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Markdown
|
|
preview
|
|
msg={title}
|
|
style={[styles.title, { fontSize: TITLE_SIZE * scale, color: themes[theme].headerTitleColor }]}
|
|
numberOfLines={1}
|
|
theme={theme}
|
|
/>
|
|
);
|
|
});
|
|
|
|
HeaderTitle.propTypes = {
|
|
title: PropTypes.string,
|
|
tmid: PropTypes.string,
|
|
prid: PropTypes.string,
|
|
scale: PropTypes.number,
|
|
connecting: PropTypes.bool,
|
|
theme: PropTypes.string
|
|
};
|
|
|
|
const Header = React.memo(({
|
|
title, type, status, usersTyping, width, height, prid, tmid, widthOffset, connecting, goRoomActionsView, theme
|
|
}) => {
|
|
const portrait = height > width;
|
|
let scale = 1;
|
|
|
|
if (!portrait && !tmid) {
|
|
if (usersTyping.length > 0) {
|
|
scale = 0.8;
|
|
}
|
|
}
|
|
|
|
const onPress = () => {
|
|
if (!tmid) {
|
|
goRoomActionsView();
|
|
}
|
|
};
|
|
|
|
return (
|
|
<TouchableOpacity
|
|
testID='room-view-header-actions'
|
|
onPress={onPress}
|
|
style={[styles.container, { width: width - widthOffset }]}
|
|
>
|
|
<View style={[styles.titleContainer, tmid && styles.threadContainer]}>
|
|
<ScrollView
|
|
showsHorizontalScrollIndicator={false}
|
|
horizontal
|
|
bounces={false}
|
|
contentContainerStyle={styles.scroll}
|
|
>
|
|
<Icon type={prid ? 'discussion' : type} status={status} theme={theme} />
|
|
<HeaderTitle
|
|
title={title}
|
|
tmid={tmid}
|
|
prid={prid}
|
|
scale={scale}
|
|
connecting={connecting}
|
|
theme={theme}
|
|
/>
|
|
</ScrollView>
|
|
</View>
|
|
{type === 'thread' ? null : <Typing usersTyping={usersTyping} theme={theme} />}
|
|
</TouchableOpacity>
|
|
);
|
|
});
|
|
|
|
Header.propTypes = {
|
|
title: PropTypes.string.isRequired,
|
|
type: PropTypes.string.isRequired,
|
|
width: PropTypes.number.isRequired,
|
|
height: PropTypes.number.isRequired,
|
|
prid: PropTypes.string,
|
|
tmid: PropTypes.string,
|
|
status: PropTypes.string,
|
|
theme: PropTypes.string,
|
|
usersTyping: PropTypes.array,
|
|
widthOffset: PropTypes.number,
|
|
connecting: PropTypes.bool,
|
|
goRoomActionsView: PropTypes.func
|
|
};
|
|
|
|
Header.defaultProps = {
|
|
usersTyping: []
|
|
};
|
|
|
|
export default Header;
|