Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5492 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5492 Rev 5493
Línea 1... Línea 1...
1
/* eslint-disable react/prop-types */
1
/* eslint-disable react/prop-types */
2
import React from 'react'
2
import React from 'react'
-
 
3
 
3
import Cover from '../../../../shared/cover/Cover'
4
import Cover from '../../../../shared/cover/Cover'
4
import Overview from '../../../components/overview/Overview'
5
import Overview from '../../../components/overview/Overview'
-
 
6
import Experiences from '../../../components/experiences/Experiences'
-
 
7
import Educations from '../../../components/educations/Educations'
-
 
8
import Location from '../../../components/location/Location'
-
 
9
import Languages from '../../../components/languages/Languages'
-
 
10
import Skills from '../../../components/skills/Skills'
-
 
11
import Aptitudes from '../../../components/aptitudes/Aptitudes'
-
 
12
import HobbiesAndInterests from '../../../components/hobbies-and-interests/HobbiesAndInterests'
-
 
13
 
-
 
14
const Edit = ({ profile }) => {
-
 
15
  const {
-
 
16
    profileId,
-
 
17
    cover,
-
 
18
    overview,
-
 
19
    formatted_address,
-
 
20
    experiences,
-
 
21
    educations,
-
 
22
    months,
-
 
23
    languages,
-
 
24
    skills,
-
 
25
    aptitudes,
-
 
26
    hobbiesAndInterests,
-
 
27
    sizes,
-
 
28
    options,
-
 
29
  } = profile
Línea 5... Línea -...
5
 
-
 
6
const Edit = ({
-
 
7
  userIdEncrypted,
-
 
8
  userProfileIdEncrypted,
-
 
9
  cover,
-
 
10
  image,
-
 
11
  following,
-
 
12
  follower,
-
 
13
  facebook,
-
 
14
  twitter,
-
 
15
  instagram,
-
 
16
  fullName,
-
 
17
  overview,
-
 
18
  userExperiences,
-
 
19
  months,
-
 
20
  userEducations,
-
 
21
  formattedAddress,
-
 
22
  userLanguages,
-
 
23
  userSkills,
-
 
24
  userAptitudes,
-
 
25
  userHobbiesAndInterests,
-
 
26
  imageSizeCover,
-
 
27
  imageProfileCover,
-
 
28
  companySizesOptions,
-
 
29
  degreesOptions,
-
 
30
  industriesOptions,
-
 
31
  languagesOptions,
-
 
32
  skillsOptions,
-
 
33
  aptitudesOptions,
-
 
34
  hobbiesAndInterestsOptions,
-
 
35
  addNotification, // redux action
-
 
36
}) => {
30
 
37
  return (
31
  return (
38
    <>
32
    <>
39
      <Cover
-
 
40
        type="user"
33
      <Cover
-
 
34
        isEdit
41
        isEdit
35
        type="user"
42
        cover={cover}
36
        cover={cover}
43
        profileId={userProfileIdEncrypted}
37
        profileId={profileId}
44
        id={userIdEncrypted}
38
        id={profile.uuid}
45
        size={imageSizeCover}
39
        size={sizes.cover}
46
      />
40
      />
47
      <main className="main-section-data container px-0">
41
      <main className="main-section-data container px-0">
48
        <div className="main-left-sidebar"></div>
42
        <aside className="main-left-sidebar"></aside>
49
        <div className="feed-section">
43
        <div className="feed-section">
50
          <h3>{fullName}</h3>
44
          <h3>{profile.fullName}</h3>
-
 
45
          <Overview isEdit overview={overview} userId={profile.uuid} />
-
 
46
          <Experiences
-
 
47
            isEdit
-
 
48
            experiences={experiences}
-
 
49
            userId={profile.uuid}
-
 
50
            companySizesOptions={options.companySizes}
-
 
51
            industriesOptions={options.industries}
-
 
52
            months={months}
-
 
53
          />
-
 
54
          <Educations isEdit educations={educations} userId={profile.uuid} />
-
 
55
          <Location isEdit address={formatted_address} userId={profile.uuid} />
-
 
56
          <Languages
-
 
57
            isEdit
-
 
58
            languages={languages}
-
 
59
            languagesOptions={options.languages}
-
 
60
            userId={profile.uuid}
-
 
61
          />
-
 
62
          <Skills
-
 
63
            isEdit
-
 
64
            skills={skills}
-
 
65
            skillsOptions={options.skills}
-
 
66
            userId={profile.uuid}
-
 
67
          />
-
 
68
          <Aptitudes
-
 
69
            isEdit
-
 
70
            aptitudes={aptitudes}
-
 
71
            aptitudesOptions={options.aptitudes}
-
 
72
            userId={profile.uuid}
-
 
73
          />
-
 
74
          <HobbiesAndInterests
-
 
75
            isEdit
-
 
76
            hobbiesAndInterest={hobbiesAndInterests}
-
 
77
            hobbiesAndInterestsOptions={options.hobbiesAndInterests}
-
 
78
            userId={profile.uuid}
51
          <Overview overview={overview} userId={userIdEncrypted} isEdit />
79
          />
52
        </div>
80
        </div>
53
        <div className="right-sidebar"></div>
81
        <aside className="right-sidebar"></aside>
54
      </main>
82
      </main>
55
    </>
83
    </>
56
  )
84
  )