Rocket.Chat.ReactNative/app/views/WithoutServersView.tsx

51 lines
1.4 KiB
TypeScript
Raw Normal View History

import React, { useLayoutEffect } from 'react';
import { StyleSheet, Text, View } from 'react-native';
2019-07-18 17:44:02 +00:00
import ShareExtension from 'rn-extensions-share';
import { useNavigation } from '@react-navigation/native';
2019-07-18 17:44:02 +00:00
import * as HeaderButton from '../containers/HeaderButton';
2019-07-18 17:44:02 +00:00
import I18n from '../i18n';
import { useTheme } from '../theme';
import sharedStyles from './Styles';
2019-07-18 17:44:02 +00:00
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
2019-07-29 16:33:28 +00:00
alignItems: 'center',
padding: 15
2019-07-18 17:44:02 +00:00
},
title: {
fontSize: 18,
2019-12-04 16:39:53 +00:00
...sharedStyles.textBold
2019-07-18 17:44:02 +00:00
},
content: {
fontSize: 14,
...sharedStyles.textRegular,
...sharedStyles.textAlignCenter
2019-07-18 17:44:02 +00:00
}
});
const WithoutServerView = (): React.ReactElement => {
const navigation = useNavigation();
const { colors } = useTheme();
useLayoutEffect(() => {
navigation.setOptions({
title: 'Rocket.Chat',
headerLeft: () => <HeaderButton.CancelModal onPress={ShareExtension.close} testID='share-extension-close' />
});
}, [navigation]);
2019-12-04 16:39:53 +00:00
return (
<View style={[styles.container, { backgroundColor: colors.backgroundColor }]}>
<Text style={[styles.title, { color: colors.titleText }]}>{I18n.t('Without_Servers')}</Text>
<Text style={[styles.content, { color: colors.titleText }]}>
{I18n.t('You_need_to_access_at_least_one_RocketChat_server_to_share_something')}
</Text>
</View>
);
};
2019-12-04 16:39:53 +00:00
export default WithoutServerView;