// 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 (
);
}
return (
{title}
{message}
{'Retry'}
);
};
export default LoadingError;