Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1853 Rev 1854
Línea 3... Línea 3...
3
import { Container, Grid } from '@mui/material'
3
import { Container, Grid } from '@mui/material'
Línea 4... Línea 4...
4
 
4
 
Línea 5... Línea 5...
5
import useFetch from '@app/hooks/useFetch'
5
import useFetch from '@app/hooks/useFetch'
6
 
6
 
7
import ProfileCard from '@app/components/profile/ProfileCard'
7
import ProfileCard from '@app/components/profile/ProfileCard'
8
import ExperiencesCard from '@app/components/profile/experiences/ExperiencesCard'
8
import AptitudesCard from '@app/components/profile/aptitudes/AptitudesCard'
9
import EducationsCard from '@app/components/profile/educations/EducationsCard'
9
import EducationsCard from '@app/components/profile/educations/EducationsCard'
-
 
10
import ExperiencesCard from '@app/components/profile/experiences/ExperiencesCard'
-
 
11
import LanguagesCard from '@app/components/profile/languages/LanguagesCard'
-
 
12
import LocationCard from '@app/components/profile/location/LocationCard'
Línea 10... Línea 13...
10
import LocationCard from '@app/components/profile/location/LocationCard'
13
import SkillsCard from '@app/components/profile/skills/SkillsCard'
11
import LanguagesCard from '@app/components/profile/languages/LanguagesCard'
-
 
Línea 12... Línea 14...
12
 
14
import HobbiesCard from '@app/components/profile/hobbies/HobbiesCard'
13
import '../../styles/profile/profile.scss'
15
 
14
import SkillsCard from '@app/components/profile/skills/Skills'
16
import '../../styles/profile/profile.scss'
Línea 15... Línea 17...
15
 
17
 
16
const View = () => {
18
const View = () => {
17
  const { uuid } = useParams()
19
  const { uuid } = useParams()
18
  const { data: profile } = useFetch(`/profile/my-profiles/edit/${uuid}`)
20
  const { data: profile } = useFetch(`/profile/my-profiles/edit/${uuid}`)
19
 
21
 
20
  const {
22
  const {
21
    user_experiences,
23
    user_experiences,
22
    user_educations,
24
    user_educations,
23
    formatted_address,
25
    formatted_address,
Línea 24... Línea 26...
24
    user_languages,
26
    user_languages,
25
    user_skills
27
    user_skills,
26
    // user_aptitudes,
28
    user_aptitudes,
Línea 58... Línea 60...
58
 
60
 
Línea 59... Línea 61...
59
          <LanguagesCard languages={user_languages} uuid={uuid} edit />
61
          <LanguagesCard languages={user_languages} uuid={uuid} edit />
Línea 60... Línea -...
60
 
-
 
61
          <SkillsCard skills={user_skills} uuid={uuid} edit />
-
 
62
 
-
 
63
          {/*           
-
 
64
          <ProfileWidget
-
 
65
            title={labels.aptitudes}
-
 
66
            onEdit={() => setModalShow('Aptitudes')}
62
 
67
            justEdit
-
 
68
          >
63
          <SkillsCard skills={user_skills} uuid={uuid} edit />
69
            <TagsList tags={aptitudes} />
-
 
70
          </ProfileWidget>
-
 
71
 
-
 
72
          <ProfileWidget
-
 
73
            title={labels.hobbies_and_interests}
-
 
74
            onEdit={() => setModalShow('Hobbies e Intereses')}
64
 
75
            justEdit
-
 
76
          >
65
          <AptitudesCard aptitudes={user_aptitudes} uuid={uuid} edit />
77
            <TagsList tags={hobbiesAndInterests} />
66
 
78
          </ProfileWidget> */}
67
          <HobbiesCard hobbies={user_hobbies_and_interests} uuid={uuid} edit />
79
        </Grid>
68
        </Grid>
80
      </Grid>
69
      </Grid>