Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
4298 stevensc 1
/* eslint-disable react/prop-types */
4296 stevensc 2
import React, { useState } from 'react'
3
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'
4
import ExpandLessIcon from '@mui/icons-material/ExpandLess'
4299 stevensc 5
import parse from 'html-react-parser'
6
import Avatar from '../../../../shared/Avatar/Avatar'
4296 stevensc 7
import StatItem from './StatItem'
4313 stevensc 8
import HelpersContainer from './HelpersContainer'
4299 stevensc 9
import './Sidebar.scss'
4438 stevensc 10
import SocialNetworks from '../../../components/home-section/SocialNetworks'
4296 stevensc 11
 
4298 stevensc 12
const Sidebar = ({
13
  image,
14
  fullName,
15
  description,
16
  visits,
17
  connections,
4444 stevensc 18
  cover = null
4298 stevensc 19
}) => {
4296 stevensc 20
  const [display, setDisplay] = useState(false)
21
 
22
  return (
4734 stevensc 23
    <div className='sidebar d-none d-md-flex'>
4296 stevensc 24
 
4445 stevensc 25
      <div className={`sidebar__top ${!cover && 'pt-3'}`}>
4444 stevensc 26
        {cover && <img src='./static/profile_2.jpg' alt='Profile cover' className='sidebar__cover' />}
4298 stevensc 27
        <Avatar imageUrl={image} size='xl' name={fullName} />
4299 stevensc 28
        <h2>{parse(fullName)}</h2>
4301 stevensc 29
        {parse(description)}
4296 stevensc 30
      </div>
31
 
32
      <div className={`sidebar__options ${display && 'show'}`}>
33
        <div className='sidebar__stats'>
4715 stevensc 34
          <StatItem title='¿Quien ha visto tu perfil?' number={visits} url='/profile/people-viewed-profile' />
4308 stevensc 35
          <StatItem title='Conexiones' number={connections} url='/connection/my-connections' />
4296 stevensc 36
        </div>
4313 stevensc 37
        <HelpersContainer />
4444 stevensc 38
        <SocialNetworks className='sidebar-apps__widget' />
4296 stevensc 39
      </div>
40
 
41
      <footer className='sideabar__footer'>
42
        <button
43
          onClick={() => setDisplay(!display)}
44
          type='button'
45
        >
46
          <span>
47
            {display ? 'Show less' : 'Show more'}
48
          </span>
49
          {display ? <ExpandLessIcon /> : <ExpandMoreIcon />}
50
        </button>
51
      </footer>
52
 
53
    </div>
54
  )
55
}
56
 
57
export default Sidebar