File size: 7,982 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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
import React, { useRef, useState } from 'react';
import {
   Box,
   Heading,
   Spinner,
   Text,
   useColorModeValue,
} from '@chakra-ui/react';
import { Navigate, useNavigate } from 'react-router-dom';
import { useAuth } from '../context/auth';
import { PrimaryBtn } from '../utils/Buttons';
import { CustomizeProfileCard } from '../utils/CustomizeProfileStyles';
import {
   Basic,
   Work,
   Branding,
   User,
   Coding,
} from '../components/profile/customizeProfile';
import { removeImage, updateProfileData } from '../lib/api';
import { useSelector } from 'react-redux';
import { getAuth, updateProfile } from 'firebase/auth';
import {
   getDownloadURL,
   getStorage,
   ref,
   uploadString,
} from 'firebase/storage';
import { nanoid } from '@reduxjs/toolkit';
import ErrorMessage from '../utils/ErrorMessage';
import CustomizeProfileSkeleton from '../components/skeletons/CustomizeProfileSkeleton';
import { useEffect } from 'react';
import { checkUsername } from '../helper/checkUsername';

const CustomizeProfile = () => {
   //scroll top
   useEffect(() => window.scrollTo(0, 0), []);

   const user = useAuth();
   const navigate = useNavigate();
   const [loading, setLoading] = useState(false);
   const auth = getAuth();

   const { profileData, profileDataLoading, profileDataErr } = useSelector(
      (state) => state.profileData
   );

   const nameRef = useRef();
   const usernameRef = useRef();
   const emailRef = useRef();
   const websiteRef = useRef();
   const githubRef = useRef();
   const twitterRef = useRef();
   const locationRef = useRef();
   const bioRef = useRef();
   const learningRef = useRef();
   const skillRef = useRef();
   const hackingRef = useRef();
   const avaliableRef = useRef();
   const workRef = useRef();
   const educationRef = useRef();
   const backgroundRef = useRef();
   const previewImgRef = useRef();

   const nameColor = useColorModeValue('light.primary', 'dark.primary');

   if (!user) {
      return <Navigate to='/create-account' replace />;
   }

   let currentUserProfile = null;
   let authenticatedUsernames = [];
   if (profileData) {
      currentUserProfile = profileData.find((data) => data.id === user.userId);

      authenticatedUsernames = profileData
         .filter((userData) => userData.id !== user.userId)
         .map((data) => data.username);
   }

   if (profileDataLoading) {
      return <CustomizeProfileSkeleton />;
   }

   if (!profileData && !profileDataLoading && profileDataErr) {
      return <ErrorMessage offline={true} />;
   }

   const storage = getStorage();
   const storageRef = ref(storage, `profiles/photo${nanoid()}`);

   const updateProfileHandler = (e) => {
      e.preventDefault();

      const name = nameRef.current.value;
      const username = usernameRef.current.value;
      const email = emailRef.current.value;
      const website = websiteRef.current.value;
      const github = githubRef.current.value;
      const twitter = twitterRef.current.value;
      const location = locationRef.current.value;
      const bio = bioRef.current.value;
      const learning = learningRef.current.value;
      const skills = skillRef.current.value;
      const hacking = hackingRef.current.value;
      const avaliable = avaliableRef.current.value;
      const work = workRef.current.value;
      const education = educationRef.current.value;
      const background = backgroundRef.current.value;
      const previewImg = previewImgRef.current.title;

      const newData = {
         name,
         username,
         email,
         website,
         github,
         twitter,
         location,
         bio,
         learning,
         skills,
         hacking,
         avaliable,
         work,
         education,
         background,
      };

      if (checkUsername(username, authenticatedUsernames) !== 'valid') {
         usernameRef.current.focus();
         return;
      }

      setLoading(true);

      if (name) {
         updateProfile(auth.currentUser, {
            displayName: name,
         });
      }

      if (previewImg) {
         uploadString(storageRef, previewImg, 'data_url').then((_) => {
            getDownloadURL(storageRef).then((url) => {
               updateProfileData({ ...newData, profile: url }, user.userId)
                  .then((_) => {
                     setLoading(false);
                     setTimeout(() => navigate(`/${username}`), 300);
                     // console.log('prifile informations are updated');
                  })
                  .catch((err) => {
                     setLoading(false);
                     console.log(err);
                  });

               updateProfile(auth.currentUser, { photoURL: url });
            });
         });
         return;
      }

      updateProfileData(newData, user.userId)
         .then((_) => {
            setLoading(false);
            setTimeout(() => navigate(`/${username}`), 300);
            // console.log('prifile informations are updated');
         })
         .catch((err) => {
            setLoading(false);
            console.log(err);
         });
   };

   const removeProfileImgHandler = (url) => {
      setLoading(true);

      removeImage(url);
      updateProfileData({ profile: '' }, user.userId)
         .then((_) => {
            setLoading(false);
            // console.log('prifile informations are updated');
         })
         .catch((err) => {
            setLoading(false);
            console.log(err);
         });
   };

   return (
      <Box maxW='1000px' w='100%' mt='1rem' px={{ md: '.5rem' }} flex='1'>
         <Heading fontSize={{ base: '1.3rem', md: '1.5rem' }} ps='.5rem'>
            Profile for{' '}
            <Text
               color={nameColor}
               as='span'
               cursor='pointer'
               onClick={() => navigate(`/${currentUserProfile.username}`)}
            >
               @{currentUserProfile?.name} 🤓
            </Text>
         </Heading>

         {/* form */}
         <Box
            as='form'
            maxW='720px'
            mx='auto'
            mt='1rem'
            pos='relative'
            onSubmit={updateProfileHandler}
         >
            <User
               nameRef={nameRef}
               usernameRef={usernameRef}
               emailRef={emailRef}
               profileData={currentUserProfile}
               authenticatedUsernames={authenticatedUsernames}
               previewImgRef={previewImgRef}
               removeProfileImgHandler={removeProfileImgHandler}
            />

            <Basic
               websiteRef={websiteRef}
               githubRef={githubRef}
               twitterRef={twitterRef}
               locationRef={locationRef}
               bioRef={bioRef}
               profileData={currentUserProfile}
            />

            <Coding
               learningRef={learningRef}
               skillRef={skillRef}
               hackingRef={hackingRef}
               avaliableRef={avaliableRef}
               profileData={currentUserProfile}
            />

            <Work
               workRef={workRef}
               educationRef={educationRef}
               profileData={currentUserProfile}
            />

            <Branding
               backgroundRef={backgroundRef}
               profileData={currentUserProfile}
            />

            <CustomizeProfileCard
               p='1rem'
               pos='sticky'
               bottom='0'
               zIndex='2'
               w='100%'
            >
               <PrimaryBtn
                  bg='light.primary'
                  w='100%'
                  disabled={loading}
                  type='submit'
               >
                  {loading && <Spinner size='sm' mr={3} />}
                  {loading ? 'Updating' : 'Update'} Profile Information.
               </PrimaryBtn>
            </CustomizeProfileCard>
         </Box>
      </Box>
   );
};

export default CustomizeProfile;