SettingsPage.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. import {
  2. ScrollView,
  3. StyleSheet,
  4. Text,
  5. TouchableOpacity,
  6. View,
  7. } from 'react-native';
  8. import React from 'react';
  9. import {List} from 'react-native-paper';
  10. import EntypoIcon from 'react-native-vector-icons/dist/Entypo';
  11. import colors from '../theme/colors';
  12. import fonts from '../theme/fonts';
  13. import NewscoutTitleHeader from '../components/organisms/Headers/NewscoutTitleHeader';
  14. const SettingsPage = props => {
  15. const {navigation} = props;
  16. const listItem = [
  17. {
  18. id: 1,
  19. title: 'Edit Profile',
  20. icon: 'account',
  21. navigation: () => navigation.navigate('EditProfile'),
  22. },
  23. {
  24. id: 2,
  25. title: 'Notification',
  26. icon: 'bell',
  27. navigation: () => navigation.navigate('Notification'),
  28. },
  29. {
  30. id: 3,
  31. title: 'Security',
  32. icon: 'security',
  33. navigation: () => navigation.navigate('Security'),
  34. },
  35. {
  36. id: 4,
  37. title: 'Invite Friends',
  38. icon: 'account-multiple-plus',
  39. navigation: () => navigation.navigate('InviteFriends'),
  40. },
  41. {
  42. id: 5,
  43. title: 'Help',
  44. icon: 'chat-question',
  45. navigation: () => navigation.navigate('Help'),
  46. },
  47. {
  48. id: 6,
  49. title: 'Dark mode',
  50. icon: 'theme-light-dark',
  51. navigation: () => navigation.navigate('DarkMode'),
  52. },
  53. {
  54. id: 7,
  55. title: 'Logout',
  56. icon: 'logout',
  57. navigation: () => navigation.navigate('LogOut'),
  58. },
  59. ];
  60. return (
  61. <View style={styles.container}>
  62. <NewscoutTitleHeader
  63. title="Settings"
  64. backButtonShown={true}
  65. onBackClick={() => navigation.goBack()}
  66. />
  67. <ScrollView>
  68. {listItem.map(item => (
  69. <SettingListItem
  70. title={item.title}
  71. key={item.id}
  72. id={item.id}
  73. icon={item.icon}
  74. onPress={item.navigation}
  75. />
  76. ))}
  77. </ScrollView>
  78. </View>
  79. );
  80. };
  81. const SettingListItem = props => {
  82. const {title, id, icon, onPress} = props;
  83. return (
  84. <TouchableOpacity onPress={onPress}>
  85. <List.Item
  86. title={title}
  87. titleStyle={styles.listItemText}
  88. key={id}
  89. left={props => (
  90. <List.Icon
  91. {...props}
  92. size={24}
  93. style={styles.circularIcon}
  94. icon={icon}
  95. color={colors.topColor}
  96. />
  97. )}
  98. right={props => (
  99. <EntypoIcon
  100. name="chevron-thin-right"
  101. size={16}
  102. color={colors.black}
  103. />
  104. )}
  105. />
  106. </TouchableOpacity>
  107. );
  108. };
  109. export default SettingsPage;
  110. const styles = StyleSheet.create({
  111. container: {
  112. backgroundColor: colors.white,
  113. height: '100%',
  114. },
  115. listItemText: {
  116. fontFamily: fonts.type.medium,
  117. },
  118. circularIcon: {
  119. backgroundColor: colors.primaryTintColor,
  120. marginLeft: 20,
  121. padding: 8,
  122. // maxHeight:48,
  123. // maxWidth: 48,
  124. borderRadius: 32,
  125. },
  126. });