| Línea 7... |
Línea 7... |
| 7 |
import Cover from '../../components/cover/Cover'
|
7 |
import Cover from '../../components/cover/Cover'
|
| 8 |
import Skills from '../../components/skills/Skills'
|
8 |
import Skills from '../../components/skills/Skills'
|
| 9 |
import Location from '../../components/location/Location'
|
9 |
import Location from '../../components/location/Location'
|
| 10 |
import Overview from '../../components/overview/Overview'
|
10 |
import Overview from '../../components/overview/Overview'
|
| 11 |
import Aptitudes from '../../components/aptitudes/Aptitudes'
|
11 |
import Aptitudes from '../../components/aptitudes/Aptitudes'
|
| 12 |
import Languages from '../../components/languages/Languages'
|
12 |
import Languages from '../../components/profile/languages/LanguagesCard'
|
| 13 |
import Educations from '../../components/educations/Educations'
|
13 |
import Educations from '../../components/educations/Educations'
|
| 14 |
import Experiences from '../../components/experiences/Experiences'
|
14 |
import Experiences from '../../components/experiences/Experiences'
|
| 15 |
import SuggestWidget from '../../components/widgets/default/SuggestWidget'
|
15 |
import SuggestWidget from '../../components/widgets/default/SuggestWidget'
|
| 16 |
import HobbiesAndInterests from '../../components/hobbies-and-interests/HobbiesAndInterests'
|
16 |
import HobbiesAndInterests from '../../components/hobbies-and-interests/HobbiesAndInterests'
|
| Línea 25... |
Línea 25... |
| 25 |
.then((vars) => {
|
25 |
.then((vars) => {
|
| 26 |
const adapters = [
|
26 |
const adapters = [
|
| 27 |
'user_hobbies_and_interests',
|
27 |
'user_hobbies_and_interests',
|
| 28 |
'user_skills',
|
28 |
'user_skills',
|
| 29 |
'user_aptitudes',
|
29 |
'user_aptitudes',
|
| 30 |
'user_languages',
|
30 |
'user_languages'
|
| 31 |
]
|
31 |
]
|
| Línea 32... |
Línea 32... |
| 32 |
|
32 |
|
| 33 |
adapters.forEach((adapter) => {
|
33 |
adapters.forEach((adapter) => {
|
| 34 |
vars[adapter] = Object.entries(vars[adapter]).map(([key, value]) => {
|
34 |
vars[adapter] = Object.entries(vars[adapter]).map(([key, value]) => {
|
| Línea 45... |
Línea 45... |
| 45 |
}, [])
|
45 |
}, [])
|
| Línea 46... |
Línea 46... |
| 46 |
|
46 |
|
| 47 |
return (
|
47 |
return (
|
| 48 |
<>
|
48 |
<>
|
| 49 |
<Cover cover={profile?.cover} />
|
49 |
<Cover cover={profile?.cover} />
|
| 50 |
<main className="main-section-data container px-0">
|
50 |
<main className='main-section-data container px-0'>
|
| 51 |
<ProfileInfo
|
51 |
<ProfileInfo
|
| 52 |
{...profile}
|
52 |
{...profile}
|
| 53 |
fullName={profile?.full_name}
|
53 |
fullName={profile?.full_name}
|
| 54 |
linkInmail={profile?.link_inmail}
|
54 |
linkInmail={profile?.link_inmail}
|
| 55 |
showContact={profile?.show_contact}
|
55 |
showContact={profile?.show_contact}
|
| 56 |
id={profile?.user_uuid}
|
56 |
id={profile?.user_uuid}
|
| 57 |
cancelUrl={profile?.link_cancel}
|
57 |
cancelUrl={profile?.link_cancel}
|
| 58 |
connectUrl={profile?.link_request}
|
58 |
connectUrl={profile?.link_request}
|
| 59 |
isEdit
|
59 |
isEdit
|
| 60 |
/>
|
60 |
/>
|
| 61 |
<section className="feed-section">
|
61 |
<section className='feed-section'>
|
| 62 |
<Overview overview={profile?.overview} isEdit />
|
62 |
<Overview overview={profile?.overview} isEdit />
|
| 63 |
<Experiences experiences={profile?.user_experiences} />
|
63 |
<Experiences experiences={profile?.user_experiences} />
|
| 64 |
<Educations educations={profile?.user_educations} />
|
64 |
<Educations educations={profile?.user_educations} />
|
| 65 |
<Location address={profile?.formatted_address} />
|
65 |
<Location address={profile?.formatted_address} />
|