EditProfilePage.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. import {Image, StyleSheet, Text, View, ScrollView} from 'react-native';
  2. import React, {useState} from 'react';
  3. import NewscoutTitleHeader from '../components/organisms/Headers/NewscoutTitleHeader';
  4. import fonts from '../theme/fonts';
  5. import images from '../assets/images/images';
  6. import colors from '../theme/colors';
  7. import FormTextInput from '../components/molecules/FormTextInput';
  8. import {capitalize} from '../utils/Constants/functions';
  9. import SecondaryButton from '../components/organisms/Buttons/SecondaryButton';
  10. const PROFILE_SIZE = 128;
  11. const EditProfilePage = props => {
  12. const {navigation, route, name, profileQuote, metrics} = props;
  13. const [profileData, setProfileData] = useState({
  14. username: '',
  15. fullname: '',
  16. email: '',
  17. phone: '',
  18. about: '',
  19. });
  20. return (
  21. <View style={styles.container}>
  22. <ScrollView showsVerticalScrollIndicator={false}>
  23. <NewscoutTitleHeader
  24. title={'Edit Profile'}
  25. backButtonShown={true}
  26. onBackClick={() => navigation.goBack()}
  27. titleStyle={{fontFamily: fonts.type.medium}}
  28. />
  29. <View style={styles.profileImageContainer}>
  30. <Image source={images.imageCard} style={styles.profileImage}></Image>
  31. </View>
  32. <View style={{paddingHorizontal: 16, gap: 4}}>
  33. {Object.keys(profileData).map(key => (
  34. <FormTextInput
  35. title={capitalize(key)}
  36. placeholder={capitalize(key)}
  37. value={profileData[key]}
  38. onChange={text =>
  39. setProfileData(prev => ({...prev, [key]: text}))
  40. }
  41. />
  42. ))}
  43. <SecondaryButton
  44. title={'Continue'}
  45. onPress={true}
  46. buttonStyle={{
  47. marginVertical: 16,
  48. width:'auto'
  49. }}
  50. />
  51. </View>
  52. </ScrollView>
  53. </View>
  54. );
  55. };
  56. export default EditProfilePage;
  57. const styles = StyleSheet.create({
  58. container: {
  59. backgroundColor: colors.white,
  60. height: '100%',
  61. },
  62. profileImageContainer: {
  63. paddingVertical: 16,
  64. alignItems: 'center',
  65. },
  66. profileImage: {
  67. borderRadius: PROFILE_SIZE,
  68. height: PROFILE_SIZE,
  69. width: PROFILE_SIZE,
  70. },
  71. });