EditProfilePage.js 2.3 KB

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