aboutsummaryrefslogtreecommitdiff
path: root/src/screens/profile/PrivacyScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/screens/profile/PrivacyScreen.tsx')
-rw-r--r--src/screens/profile/PrivacyScreen.tsx159
1 files changed, 159 insertions, 0 deletions
diff --git a/src/screens/profile/PrivacyScreen.tsx b/src/screens/profile/PrivacyScreen.tsx
new file mode 100644
index 00000000..e92769fc
--- /dev/null
+++ b/src/screens/profile/PrivacyScreen.tsx
@@ -0,0 +1,159 @@
+import React from 'react';
+import {
+ Alert,
+ Image,
+ SectionList,
+ StatusBar,
+ StyleSheet,
+ Text,
+ TouchableOpacity,
+ View,
+} from 'react-native';
+import {SafeAreaView} from 'react-native-safe-area-context';
+import {normalize} from '../../utils/layouts';
+import {Background} from '../../components';
+import {BackgroundGradientType} from '../../types';
+import {logout} from '../../store/actions';
+import {useDispatch, useSelector} from 'react-redux';
+import {useNavigation} from '@react-navigation/core';
+import {RootState} from 'src/store/rootReducer';
+import {ERROR_ATTEMPT_EDIT_SP} from '../../constants/strings';
+
+const DATA = [
+ {
+ title: '',
+ data: [
+ {
+ title: 'Account Type',
+ preimage: require('../../assets/images/tagg-logo.png'),
+ postimage: require('../../assets/images/settings/white-arrow.png'),
+ },
+ {
+ title: 'Blocked Accounts',
+ preimage: require('../../assets/images/settings/blocked-white.png'),
+ postimage: require('../../assets/images/settings/white-arrow.png'),
+ },
+ ],
+ },
+];
+
+const PrivacyScreen: React.FC = () => {
+ const dispatch = useDispatch();
+ const navigation = useNavigation();
+ const {suggested_people_linked} = useSelector(
+ (state: RootState) => state.user.profile,
+ );
+ const goToUpdateSPProfile = () => {
+ if (suggested_people_linked === 0) {
+ Alert.alert(ERROR_ATTEMPT_EDIT_SP);
+ } else {
+ // Sending undefined for updatedSelectedBadges to mark that there was no update yet
+ navigation.navigate('UpdateSPPicture', {
+ editing: true,
+ });
+ }
+ };
+
+ const getActions = (type: string) => {
+ switch (type) {
+ case 'Account Type':
+ navigateTo('AccountTypeScreen', {});
+ break
+ case 'Blocked Accounts':
+ navigateTo('Blocked Accounts', {});
+ break
+ default:
+ break;
+ }
+ };
+
+ const navigateTo = (screen: string, options: object) => {
+ navigation.navigate(screen, options);
+ };
+
+ const Item = ({
+ title,
+ preimage,
+ postimage,
+ }: {
+ title: string;
+ preimage: number;
+ postimage: number;
+ }) => (
+ <TouchableOpacity onPress={() => getActions(title)} style={styles.item}>
+ <Image style={{width: 15, height: 15}} source={preimage} />
+ <View style={{marginLeft: 40}}>
+ <Text style={styles.title}>{title}</Text>
+ </View>
+ <View style={[styles.item, {position: 'absolute', right: 0}]}>
+ {title === 'Account Type' && (
+ <Text style={[styles.title, {color: '#C4C4C4', marginRight: 13}]}>
+ {'Private'}
+ </Text>
+ )}
+ <Image style={{width: 15, height: 15}} source={postimage} />
+ </View>
+ </TouchableOpacity>
+ );
+
+ return (
+ <>
+ <StatusBar barStyle="light-content" />
+ <Background gradientType={BackgroundGradientType.Light}>
+ <SafeAreaView>
+ <View style={{marginLeft: 28, marginRight: 43}}>
+ <SectionList
+ sections={DATA}
+ keyExtractor={(item, index) => item.title + index}
+ renderItem={({item: {title, preimage, postimage}}) => {
+ return <Item {...{title, preimage, postimage}} />;
+ }}
+ renderSectionHeader={({section: {title}}) => {
+ if (title.length === 0) {
+ return null;
+ }
+ return (
+ <View style={{marginTop: 46}}>
+ <Text style={styles.header}>{title}</Text>
+ </View>
+ );
+ }}
+ />
+ </View>
+ </SafeAreaView>
+ </Background>
+ </>
+ );
+};
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ },
+ item: {
+ marginTop: 36,
+ flexDirection: 'row',
+ justifyContent: 'flex-start',
+ alignItems: 'center',
+ },
+ header: {
+ fontSize: normalize(18),
+ fontWeight: '600',
+ lineHeight: normalize(21.48),
+ color: '#E9E9E9',
+ },
+ title: {
+ fontSize: normalize(15),
+ fontWeight: '600',
+ lineHeight: normalize(17.9),
+ color: 'white',
+ },
+ logoutStyle: {
+ fontSize: normalize(20),
+ fontWeight: '600',
+ lineHeight: normalize(23.87),
+ color: 'white',
+ },
+});
+
+export default PrivacyScreen;