Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1851 | Rev 1854 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1851 Rev 1853
Línea 9... Línea 9...
9
import EducationsCard from '@app/components/profile/educations/EducationsCard'
9
import EducationsCard from '@app/components/profile/educations/EducationsCard'
10
import LocationCard from '@app/components/profile/location/LocationCard'
10
import LocationCard from '@app/components/profile/location/LocationCard'
11
import LanguagesCard from '@app/components/profile/languages/LanguagesCard'
11
import LanguagesCard from '@app/components/profile/languages/LanguagesCard'
Línea 12... Línea 12...
12
 
12
 
-
 
13
import '../../styles/profile/profile.scss'
Línea 13... Línea 14...
13
import '../../styles/profile/profile.scss'
14
import SkillsCard from '@app/components/profile/skills/Skills'
14
 
15
 
15
const View = () => {
16
const View = () => {
Línea 16... Línea 17...
16
  const { uuid } = useParams()
17
  const { uuid } = useParams()
17
  const { data: profile } = useFetch(`/profile/my-profiles/edit/${uuid}`)
18
  const { data: profile } = useFetch(`/profile/my-profiles/edit/${uuid}`)
18
 
19
 
19
  const {
-
 
20
    user_experiences,
20
  const {
21
    user_educations,
-
 
22
    // user_hobbies_and_interests,
21
    user_experiences,
-
 
22
    user_educations,
23
    // user_skills,
23
    formatted_address,
-
 
24
    user_languages,
24
    // user_aptitudes,
25
    user_skills
Línea 25... Línea 26...
25
    user_languages,
26
    // user_aptitudes,
26
    formatted_address
27
    // user_hobbies_and_interests,
27
  } = profile
28
  } = profile
Línea 55... Línea 56...
55
 
56
 
Línea 56... Línea 57...
56
          <LocationCard address={formatted_address} uuid={uuid} edit />
57
          <LocationCard address={formatted_address} uuid={uuid} edit />
Línea 57... Línea -...
57
 
-
 
58
          <LanguagesCard languages={user_languages} uuid={uuid} edit />
-
 
59
 
-
 
60
          {/*           <ProfileWidget
-
 
61
            title={labels.skills}
-
 
62
            onEdit={() => setModalShow('Habilidades')}
58
 
63
            justEdit
-
 
Línea -... Línea 59...
-
 
59
          <LanguagesCard languages={user_languages} uuid={uuid} edit />
64
          >
60
 
65
            <TagsList tags={skills} />
61
          <SkillsCard skills={user_skills} uuid={uuid} edit />
66
          </ProfileWidget>
62
 
67
 
63
          {/*           
68
          <ProfileWidget
64
          <ProfileWidget