forked from Ivasoft/mattermost-mobile
* Freeze unfocused tabs * Fix syntax_highlight when multiple code blocks present in the same post * Move @components/channel_list to @screens/home/channels_list/categories_list * Update app/screens/channel/channel.tsx Co-authored-by: Avinash Lingaloo <avinashlng1080@gmail.com> * Add support for Freeze on Android * Fix render on tablets Co-authored-by: Avinash Lingaloo <avinashlng1080@gmail.com>
95 lines
2.7 KiB
TypeScript
95 lines
2.7 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useMemo} from 'react';
|
|
import {Text, View} from 'react-native';
|
|
|
|
import CompassIcon from '@components/compass_icon';
|
|
import Loading from '@components/loading';
|
|
import TouchableWithFeedback from '@components/touchable_with_feedback';
|
|
import {useTheme} from '@context/theme';
|
|
import {buttonBackgroundStyle, buttonTextStyle} from '@utils/buttonStyles';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {typography} from '@utils/typography';
|
|
|
|
type Props = {
|
|
loading: boolean;
|
|
message: string;
|
|
onRetry: () => void;
|
|
title: string;
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({
|
|
container: {
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
padding: 20,
|
|
},
|
|
iconWrapper: {
|
|
height: 120,
|
|
width: 120,
|
|
backgroundColor: changeOpacity(theme.sidebarText, 0.08),
|
|
borderRadius: 60,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
icon: {
|
|
fontSize: 72,
|
|
lineHeight: 72,
|
|
color: changeOpacity(theme.sidebarText, 0.48),
|
|
},
|
|
header: {
|
|
color: theme.sidebarHeaderTextColor,
|
|
marginTop: 20,
|
|
textAlign: 'center',
|
|
},
|
|
body: {
|
|
color: theme.sidebarText,
|
|
textAlign: 'center',
|
|
marginTop: 4,
|
|
},
|
|
}));
|
|
|
|
const LoadingError = ({loading, message, onRetry, title}: Props) => {
|
|
const theme = useTheme();
|
|
const styles = getStyleSheet(theme);
|
|
const buttonStyle = useMemo(() => {
|
|
return [{marginTop: 24}, buttonBackgroundStyle(theme, 'lg', 'primary', 'inverted')];
|
|
}, [theme]);
|
|
|
|
if (loading) {
|
|
return (
|
|
<Loading
|
|
containerStyle={styles.container}
|
|
color={theme.buttonBg}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<View style={styles.container}>
|
|
<View style={styles.iconWrapper}>
|
|
<CompassIcon
|
|
name='alert-circle-outline'
|
|
style={styles.icon}
|
|
/>
|
|
</View>
|
|
<Text style={[typography('Heading', 400), styles.header]}>
|
|
{title}
|
|
</Text>
|
|
<Text style={[typography('Body', 200), styles.body]}>
|
|
{message}
|
|
</Text>
|
|
<TouchableWithFeedback
|
|
style={buttonStyle}
|
|
onPress={onRetry}
|
|
>
|
|
<Text style={buttonTextStyle(theme, 'lg', 'primary', 'inverted')}>{'Retry'}</Text>
|
|
</TouchableWithFeedback>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default LoadingError;
|