2019-07-18 17:44:02 +00:00
|
|
|
import React from 'react';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { StyleSheet, Text, View } from 'react-native';
|
2019-07-18 17:44:02 +00:00
|
|
|
import ShareExtension from 'rn-extensions-share';
|
|
|
|
|
2020-10-30 16:15:58 +00:00
|
|
|
import * as HeaderButton from '../containers/HeaderButton';
|
2019-07-18 17:44:02 +00:00
|
|
|
import sharedStyles from './Styles';
|
|
|
|
import I18n from '../i18n';
|
2022-04-07 14:10:03 +00:00
|
|
|
import { themes } from '../lib/constants';
|
2022-04-12 16:27:05 +00:00
|
|
|
import { TSupportedThemes, withTheme } from '../theme';
|
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,
|
2020-11-30 21:47:05 +00:00
|
|
|
...sharedStyles.textRegular,
|
|
|
|
...sharedStyles.textAlignCenter
|
2019-07-18 17:44:02 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-12-03 19:27:57 +00:00
|
|
|
interface IWithoutServerViewProps {
|
2022-04-12 16:27:05 +00:00
|
|
|
theme: TSupportedThemes;
|
2021-12-03 19:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class WithoutServerView extends React.Component<IWithoutServerViewProps> {
|
2020-07-31 18:30:36 +00:00
|
|
|
static navigationOptions = () => ({
|
2020-06-15 14:00:46 +00:00
|
|
|
title: 'Rocket.Chat',
|
2021-09-13 20:41:05 +00:00
|
|
|
headerLeft: () => <HeaderButton.CancelModal onPress={ShareExtension.close} testID='share-extension-close' />
|
|
|
|
});
|
2019-12-04 16:39:53 +00:00
|
|
|
|
2019-07-18 17:44:02 +00:00
|
|
|
render() {
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
2019-07-18 17:44:02 +00:00
|
|
|
return (
|
2019-12-04 16:39:53 +00:00
|
|
|
<View style={[styles.container, { backgroundColor: themes[theme].backgroundColor }]}>
|
|
|
|
<Text style={[styles.title, { color: themes[theme].titleText }]}>{I18n.t('Without_Servers')}</Text>
|
2021-09-13 20:41:05 +00:00
|
|
|
<Text style={[styles.content, { color: themes[theme].titleText }]}>
|
|
|
|
{I18n.t('You_need_to_access_at_least_one_RocketChat_server_to_share_something')}
|
|
|
|
</Text>
|
2019-07-18 17:44:02 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-12-04 16:39:53 +00:00
|
|
|
|
|
|
|
export default withTheme(WithoutServerView);
|