File size: 6,122 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
import React, { useState } from 'react';
import {
Box,
Flex,
HStack,
Input,
Menu,
MenuButton,
MenuList,
Text,
useColorModeValue,
VStack,
} from '@chakra-ui/react';
import {
titleStyles,
CustomizeProfileCard,
Label,
} from '../../../utils/CustomizeProfileStyles';
import defaultProfile from '../../../assets/images/default_profile.webp';
import { FaRegEdit } from 'react-icons/fa';
import CustomMenuItem from '../../../utils/CustomMenuItem';
import { checkUsername } from '../../../helper/checkUsername';
const User = ({
nameRef,
emailRef,
usernameRef,
profileData,
authenticatedUsernames,
previewImgRef,
removeProfileImgHandler,
}) => {
const [previewImg, setPreviewImg] = useState('');
const [isValid, setIsValid] = useState('valid');
const imagePreviewHandler = (e) => {
const image = e.target.files[0];
const reader = new FileReader();
reader.addEventListener(
'load',
() => {
setPreviewImg(reader.result);
},
false
);
if (image) {
reader.readAsDataURL(image);
}
};
const clickEdit = () => {
document.getElementById('edit').click();
}; // if no profile image , i want user to go to file directly without showing option.
const isValidUsername = (username) => {
const status = checkUsername(username, authenticatedUsernames);
setIsValid(status);
};
return (
<CustomizeProfileCard>
<Text {...titleStyles}>User</Text>
<VStack spacing={3}>
<Flex justify='center'>
<Flex flexDirection='column' justifyContent='center'>
<Text textAlign='center' mb={3}>
Profile Image
</Text>
<Menu autoSelect={false}>
<MenuButton
type='button'
display='block'
onClick={!profileData?.profile ? clickEdit : null}
>
<Box
boxSize='100px'
borderRadius='full'
border='1px solid'
borderColor={useColorModeValue('#E2E8F0', '#2a2a2a')}
backgroundImage={
previewImg ||
profileData?.profile ||
defaultProfile
}
backgroundPosition='center'
backgroundRepeat='no-repeat'
backgroundSize='cover'
pos='relative'
title={previewImg}
ref={previewImgRef}
>
<HStack
pos='absolute'
background='#000000a3'
bottom='-2px'
color='light.cardBg'
px='.5rem'
borderRadius='5px'
fontSize='14px'
left='-6px'
>
<FaRegEdit /> <Text>Edit</Text>
</HStack>
</Box>
</MenuButton>
<MenuList
mx='auto !imporant'
minW='0 !important'
p='.5rem'
w='170px'
bg={useColorModeValue('light.cardBg', 'dark.cardBg')}
opacity={
!profileData?.profile
? '0 !important'
: '1 !important'
}
>
<CustomMenuItem py='0'>
<label
style={{ width: '100%', padding: '8px 0' }}
id='edit'
>
<Input
type='file'
display='none'
onChange={imagePreviewHandler}
/>{' '}
Upload a photo
</label>
</CustomMenuItem>
<CustomMenuItem
onClick={() =>
removeProfileImgHandler(profileData.profile)
}
>
Remove photo
</CustomMenuItem>
</MenuList>
</Menu>
</Flex>
</Flex>
<Box w='100%'>
<Label mb='.3rem'>Name</Label>
<Input
defaultValue={profileData?.name}
placeholder='Zwel'
type='text'
required
ref={nameRef}
/>
</Box>
<Box w='100%'>
<Label mb='.3rem'>Username</Label>
<Input
defaultValue={profileData?.username}
placeholder='zwelhtetyan'
type='text'
required
ref={usernameRef}
onChange={({ target }) => isValidUsername(target.value)}
/>
<Text color='red' fontSize='15'>
{isValid === 'valid' ? '' : isValid}
</Text>
</Box>
<Box w='100%'>
<Label mb='.3rem'>Email address</Label>
<Input
defaultValue={profileData?.email}
placeholder='example@gmail.com'
type='email'
ref={emailRef}
/>
</Box>
</VStack>
</CustomizeProfileCard>
);
};
export default User;
|