ProfilePage.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. import {
  2. FlatList,
  3. ScrollView,
  4. Image,
  5. StyleSheet,
  6. Text,
  7. View,
  8. } from 'react-native';
  9. import React, {useState} from 'react';
  10. import images from '../assets/images/images';
  11. import fonts from '../theme/fonts';
  12. import colors from '../theme/colors';
  13. import {ToggleButton} from 'react-native-paper';
  14. import HorizontalNewsCardVariant from '../components/organisms/Cards/HorizontalNewsCardVariant';
  15. import NewscoutTitleHeader from '../components/organisms/Headers/NewscoutTitleHeader';
  16. import SettingsButton from '../components/organisms/Buttons/SettingsButton';
  17. import EditButton from '../components/organisms/Buttons/EditButton';
  18. const PROFILE_SIZE = 128;
  19. const profileTabs = ['Recently Read', 'Others'];
  20. const ProfilePage = props => {
  21. const {navigation, route, name, profileQuote, metrics} = props;
  22. const metricsCount = {
  23. bookmarks: 158,
  24. followers: 158,
  25. following: 158,
  26. };
  27. const [categoryValue, setCategoryValue] = useState(
  28. profileTabs[0].toLowerCase(),
  29. );
  30. return (
  31. <View style={styles.profileContainer}>
  32. <ScrollView showsVerticalScrollIndicator={false}>
  33. <NewscoutTitleHeader
  34. title="My Profile"
  35. backButtonShown={true}
  36. onBackClick={() => navigation.goBack()}>
  37. <View style={{flexDirection: 'row', gap: 16}}>
  38. <SettingsButton onPress={() => navigation.navigate('Settings')} />
  39. <EditButton
  40. onPress={() =>
  41. navigation.navigate('Profile', {screen: 'EditProfile'})
  42. }
  43. />
  44. </View>
  45. </NewscoutTitleHeader>
  46. <View style={styles.profileImageContainer}>
  47. <Image source={images.imageCard} style={styles.profileImage}></Image>
  48. </View>
  49. <Text
  50. style={{
  51. alignSelf: 'center',
  52. paddingVertical: 8,
  53. fontFamily: fonts.type.semibold,
  54. fontSize: fonts.getSize(14),
  55. color: colors.black,
  56. }}>
  57. Semina Gurung
  58. </Text>
  59. <Text
  60. style={{
  61. paddingHorizontal: 16,
  62. fontFamily: fonts.type.regular,
  63. fontSize: fonts.getSize(12),
  64. }}>
  65. The reason behind their disappointment is that iPhone users have
  66. been..
  67. </Text>
  68. <View style={styles.metricsCountContainer}>
  69. <View style={styles.metricsCard}>
  70. <Text style={styles.metricsCount}>158</Text>
  71. <Text style={styles.metricsTitle}>Bookmarks</Text>
  72. </View>
  73. <View style={styles.verticalLine}></View>
  74. <View style={styles.metricsCard}>
  75. <Text style={styles.metricsCount}>158</Text>
  76. <Text style={styles.metricsTitle}>Followers</Text>
  77. </View>
  78. <View style={styles.verticalLine}></View>
  79. <View style={styles.metricsCard}>
  80. <Text style={styles.metricsCount}>158</Text>
  81. <Text style={styles.metricsTitle}>Following</Text>
  82. </View>
  83. </View>
  84. <View style={styles.underlinePillContainer}>
  85. {/* <ScrollView horizontal showsHorizontalScrollIndicator={false}> */}
  86. <ToggleButton.Group onValueChange={value => setCategoryValue(value)}>
  87. {profileTabs.map(tab => {
  88. let valueId = tab.toLowerCase();
  89. return (
  90. <ToggleButton
  91. icon={() => (
  92. <Text
  93. style={[
  94. valueId === categoryValue
  95. ? styles.selectedPillText
  96. : styles.pillText,
  97. {
  98. paddingHorizontal: fonts.getSize(11),
  99. fontSize: fonts.getSize(16),
  100. },
  101. ]}>
  102. {tab}
  103. </Text>
  104. )}
  105. style={[styles.underlinePill]}
  106. value={valueId}
  107. />
  108. );
  109. })}
  110. </ToggleButton.Group>
  111. {/* </ScrollView> */}
  112. </View>
  113. <View style={styles.profileCardContainer}>
  114. <FlatList
  115. scrollEnabled={false}
  116. showsVerticalScrollIndicator={false}
  117. ItemSeparatorComponent={() => (
  118. <View style={{height: fonts.getSize(8)}}></View>
  119. )}
  120. // ListFooterComponent={() => <View style={{height: fonts.getSize(16)}}></View>}
  121. ListHeaderComponent={() => (
  122. <View style={{height: fonts.getSize(16)}}></View>
  123. )}
  124. data={[{}, {}, {}]}
  125. renderItem={item => <HorizontalNewsCardVariant onPress={true} />}
  126. keyExtractor={item => item.index}
  127. />
  128. </View>
  129. </ScrollView>
  130. </View>
  131. );
  132. };
  133. export default ProfilePage;
  134. const styles = StyleSheet.create({
  135. profileContainer: {
  136. backgroundColor: colors.white,
  137. },
  138. profileImageContainer: {
  139. paddingVertical: 16,
  140. alignItems: 'center',
  141. },
  142. profileImage: {
  143. borderRadius: PROFILE_SIZE,
  144. height: PROFILE_SIZE,
  145. width: PROFILE_SIZE,
  146. },
  147. metricsCountContainer: {
  148. flexDirection: 'row',
  149. alignItems: 'center',
  150. justifyContent: 'space-evenly',
  151. paddingVertical: 20,
  152. paddingHorizontal: 16,
  153. },
  154. metricsCard: {},
  155. metricsTitle: {
  156. color: colors.primaryColor,
  157. fontFamily: fonts.type.medium,
  158. fontSize: 16,
  159. },
  160. metricsCount: {
  161. color: colors.black,
  162. fontFamily: fonts.type.semibold,
  163. fontSize: 16,
  164. textAlign: 'center',
  165. },
  166. verticalLine: {
  167. height: '100%',
  168. width: 2,
  169. backgroundColor: colors.grayShade_400,
  170. },
  171. underlinePillContainer: {
  172. paddingVertical: fonts.getSize(8),
  173. flexDirection: 'row',
  174. alignItems: 'space-between',
  175. justifyContent: 'space-around',
  176. paddingHorizontal: 16,
  177. },
  178. selectedPillText: {
  179. fontFamily: fonts.type.semibold,
  180. fontSize: fonts.getSize(12),
  181. color: colors.black,
  182. borderBottomWidth: fonts.getSize(4),
  183. borderBottomColor: colors.primaryColor,
  184. borderRadius: 0,
  185. },
  186. pillText: {
  187. fontFamily: fonts.type.semibold,
  188. fontSize: fonts.getSize(12),
  189. color: colors.gray,
  190. },
  191. underlinePill: {
  192. width: 'auto',
  193. },
  194. profileCardContainer: {
  195. paddingHorizontal: 16,
  196. },
  197. });