Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5285 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5284 stevensc 1
/* eslint-disable react/prop-types */
2
import React from 'react'
3
import Avatar from '../../../../shared/Avatar/Avatar'
4
import parse from 'html-react-parser'
5
import StatItem from './StatItem'
6
 
7
const UserInfo = ({
8
  cover = '',
9
  image = '',
10
  fullName = '',
11
  description = '',
12
  visits = 0,
5902 stevensc 13
  connections = 0,
5284 stevensc 14
}) => {
5902 stevensc 15
  console.log(image)
5284 stevensc 16
  return (
5902 stevensc 17
    <div className="sidebar__top">
18
      {cover && (
19
        <img
20
          src="./static/profile_2.jpg"
21
          alt="Profile cover"
22
          className="sidebar__cover"
23
        />
24
      )}
25
      <Avatar imageUrl={image} size="xl" name={fullName} />
26
      <h2>{parse(fullName)}</h2>
27
      {parse(description)}
28
      <StatItem
29
        title={`¿${LABELS.WHO_HAS_SEEN_MY_PROFILE}?`}
30
        number={visits}
31
        url="/profile/people-viewed-profile"
32
      />
33
      <StatItem
34
        title={LABELS.CONNECTIONS}
35
        number={connections}
36
        url="/connection/my-connections"
37
      />
38
    </div>
5284 stevensc 39
  )
40
}
41
 
42
export default UserInfo