Updated the i18n and default messages for the network failure and entire channel message alert.
98 lines
3.1 KiB
JavaScript
98 lines
3.1 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {PureComponent} from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import {View} from 'react-native';
|
|
|
|
import FormattedText from 'app/components/formatted_text';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme';
|
|
import {t} from 'app/utils/i18n';
|
|
|
|
import Cloud from './cloud';
|
|
|
|
export default class FailedNetworkAction extends PureComponent {
|
|
static propTypes = {
|
|
onRetry: PropTypes.func.isRequired,
|
|
actionId: PropTypes.string,
|
|
actionDefaultMessage: PropTypes.string,
|
|
errorId: PropTypes.string,
|
|
errorDefaultMessage: PropTypes.string,
|
|
theme: PropTypes.object.isRequired,
|
|
};
|
|
|
|
static defaultProps = {
|
|
actionId: t('mobile.failed_network_action.retry'),
|
|
actionDefaultMessage: 'try again',
|
|
errorId: t('mobile.failed_network_action.shortDescription'),
|
|
errorDefaultMessage: 'Messages will load when you have an internet connection or {tryAgainAction}.',
|
|
};
|
|
|
|
render() {
|
|
const {actionId, actionDefaultMessage, errorId, errorDefaultMessage, onRetry, theme} = this.props;
|
|
const style = getStyleFromTheme(theme);
|
|
|
|
const errorTitle = {
|
|
id: t('mobile.failed_network_action.title'),
|
|
defaultMessage: 'No internet connection',
|
|
};
|
|
|
|
return (
|
|
<View style={style.container}>
|
|
<Cloud
|
|
color={changeOpacity(theme.centerChannelColor, 0.15)}
|
|
height={76}
|
|
width={76}
|
|
/>
|
|
<FormattedText
|
|
id={errorTitle.id}
|
|
defaultMessage={errorTitle.defaultMessage}
|
|
style={style.title}
|
|
/>
|
|
<FormattedText
|
|
id={errorId}
|
|
defaultMessage={errorDefaultMessage}
|
|
style={style.description}
|
|
values={{
|
|
tryAgainAction: (
|
|
<FormattedText
|
|
id={actionId}
|
|
defaultMessage={actionDefaultMessage}
|
|
style={style.link}
|
|
onPress={onRetry}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getStyleFromTheme = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
container: {
|
|
alignItems: 'center',
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
paddingHorizontal: 15,
|
|
paddingBottom: 100,
|
|
},
|
|
title: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.8),
|
|
fontSize: 20,
|
|
fontWeight: '600',
|
|
marginBottom: 15,
|
|
marginTop: 10,
|
|
},
|
|
description: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.4),
|
|
fontSize: 17,
|
|
lineHeight: 25,
|
|
textAlign: 'center',
|
|
},
|
|
link: {
|
|
color: theme.linkColor,
|
|
},
|
|
};
|
|
});
|