Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5284 | Rev 5902 | 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,
13
  connections = 0
14
}) => {
15
  return (
5285 stevensc 16
        <div className='sidebar__top'>
5284 stevensc 17
            {cover && <img src='./static/profile_2.jpg' alt='Profile cover' className='sidebar__cover' />}
18
            <Avatar imageUrl={image} size='xl' name={fullName} />
19
            <h2>{parse(fullName)}</h2>
20
            {parse(description)}
21
            <StatItem title={`¿${LABELS.WHO_HAS_SEEN_MY_PROFILE}?`} number={visits} url='/profile/people-viewed-profile' />
22
            <StatItem title={LABELS.CONNECTIONS} number={connections} url='/connection/my-connections' />
23
        </div>
24
  )
25
}
26
 
27
export default UserInfo