Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5478 Rev 5480
Línea 1... Línea 1...
1
import React, { useEffect } from 'react'
1
import React, { useEffect } from 'react'
2
import parse from 'html-react-parser'
-
 
3
import { useDispatch } from 'react-redux'
2
import { useDispatch } from 'react-redux'
4
import { setIntlLabels } from '../../../../redux/intl/intl.action'
3
import { setIntlLabels } from '../../../../redux/intl/intl.action'
Línea 5... Línea 4...
5
 
4
 
6
import EmptySection from '../../../../shared/empty-section/EmptySection'
5
import EmptySection from '../../../../shared/empty-section/EmptySection'
Línea 59... Línea 58...
59
            experiences={userExperiences}
58
            experiences={userExperiences}
60
            months={months}
59
            months={months}
61
          />
60
          />
62
          <Educations educations={userEducations} userId={userIdEncrypted} />
61
          <Educations educations={userEducations} userId={userIdEncrypted} />
63
          <div className="user-profile-extended-ov">
62
          <div className="user-profile-extended-ov">
64
            <h3>{labels.EDUCATION}</h3>
-
 
65
            {!userEducations.length ? (
-
 
66
              <EmptySection align="left" message={labels.EMPTY} />
-
 
67
            ) : (
-
 
68
              <span id="education-records">
-
 
69
                {userEducations.map(
-
 
70
                  (
-
 
71
                    {
-
 
72
                      degree,
-
 
73
                      university,
-
 
74
                      from_year,
-
 
75
                      to_year,
-
 
76
                      field_of_study,
-
 
77
                      formatted_address,
-
 
78
                      description,
-
 
79
                    },
-
 
80
                    id
-
 
81
                  ) => (
-
 
82
                    <div key={id}>
-
 
83
                      {id >= 1 && <hr />}
-
 
84
                      <p>{degree}</p>
-
 
85
                      <p>{university}</p>
-
 
86
                      <p>{`${from_year} - ${to_year || 'Actual'}`}</p>
-
 
87
                      {field_of_study && <p>{field_of_study}</p>}
-
 
88
                      <p>{formatted_address}</p>
-
 
89
                      {description && <p>{parse(description)}</p>}
-
 
90
                    </div>
-
 
91
                  )
-
 
92
                )}
-
 
93
              </span>
-
 
94
            )}
-
 
95
          </div>
-
 
96
          <div className="user-profile-extended-ov">
-
 
97
            <h3>{labels.LOCATION}</h3>
63
            <h3>{labels.LOCATION}</h3>
98
            {!formatted_address ? (
64
            {!formatted_address ? (
99
              <EmptySection align="left" message={labels.EMPTY} />
65
              <EmptySection align="left" message={labels.EMPTY} />
100
            ) : (
66
            ) : (
101
              <p id="location-formatted_address">{formatted_address}</p>
67
              <p id="location-formatted_address">{formatted_address}</p>