Chore: evaluate `AuthLoadingView` (#4102)
* chore: evaluate `AuthLoadingView` * remove: `mapStateToProps`, `connect` and interface
This commit is contained in:
parent
0dc34f1eca
commit
d277788dc4
|
@ -1,11 +1,11 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { ActivityIndicator, StyleSheet, Text, View } from 'react-native';
|
import { ActivityIndicator, StyleSheet, Text, View } from 'react-native';
|
||||||
import { connect } from 'react-redux';
|
import { useSelector } from 'react-redux';
|
||||||
|
|
||||||
|
import { IApplicationState } from '../definitions';
|
||||||
import I18n from '../i18n';
|
import I18n from '../i18n';
|
||||||
import StatusBar from '../containers/StatusBar';
|
import StatusBar from '../containers/StatusBar';
|
||||||
import { TSupportedThemes, withTheme } from '../theme';
|
import { useTheme } from '../theme';
|
||||||
import { themes } from '../lib/constants';
|
|
||||||
import sharedStyles from './Styles';
|
import sharedStyles from './Styles';
|
||||||
|
|
||||||
const styles = StyleSheet.create({
|
const styles = StyleSheet.create({
|
||||||
|
@ -22,25 +22,20 @@ const styles = StyleSheet.create({
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
interface IAuthLoadingView {
|
const AuthLoadingView = React.memo((): React.ReactElement => {
|
||||||
theme: TSupportedThemes;
|
const text = useSelector((state: IApplicationState) => state.app.text);
|
||||||
text: string;
|
const { colors } = useTheme();
|
||||||
}
|
return (
|
||||||
|
<View style={[styles.container, { backgroundColor: colors.backgroundColor }]}>
|
||||||
const AuthLoadingView = React.memo(({ theme, text }: IAuthLoadingView) => (
|
<StatusBar />
|
||||||
<View style={[styles.container, { backgroundColor: themes[theme].backgroundColor }]}>
|
{text ? (
|
||||||
<StatusBar />
|
<>
|
||||||
{text ? (
|
<ActivityIndicator color={colors.auxiliaryText} size='large' />
|
||||||
<>
|
<Text style={[styles.text, { color: colors.bodyText }]}>{`${text}\n${I18n.t('Please_wait')}`}</Text>
|
||||||
<ActivityIndicator color={themes[theme].auxiliaryText} size='large' />
|
</>
|
||||||
<Text style={[styles.text, { color: themes[theme].bodyText }]}>{`${text}\n${I18n.t('Please_wait')}`}</Text>
|
) : null}
|
||||||
</>
|
</View>
|
||||||
) : null}
|
);
|
||||||
</View>
|
|
||||||
));
|
|
||||||
|
|
||||||
const mapStateToProps = (state: any) => ({
|
|
||||||
text: state.app.text
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default connect(mapStateToProps)(withTheme(AuthLoadingView));
|
export default AuthLoadingView;
|
||||||
|
|
Loading…
Reference in New Issue