Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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'
4299 stevensc 3
import parse from 'html-react-parser'
4
import Avatar from '../../../../shared/Avatar/Avatar'
5107 stevensc 5
import ExpandLessIcon from '@mui/icons-material/ExpandLess'
6
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'
7
import HelpersContainer from './HelpersContainer'
8
import SocialNetworks from '../../../components/home-section/SocialNetworks'
4296 stevensc 9
import StatItem from './StatItem'
4299 stevensc 10
import './Sidebar.scss'
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'>
5283 stevensc 34
          <StatItem title={`¿${LABELS.WHO_HAS_SEEN_MY_PROFILE}?`} number={visits} url='/profile/people-viewed-profile' />
5107 stevensc 35
          <StatItem title={LABELS.CONNECTIONS} 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'>
5283 stevensc 42
        <button onClick={() => setDisplay(!display)}>
4296 stevensc 43
          <span>
5107 stevensc 44
            {display ? LABELS.VIEW_LESS : LABELS.VIEW_MORE}
4296 stevensc 45
          </span>
46
          {display ? <ExpandLessIcon /> : <ExpandMoreIcon />}
47
        </button>
48
      </footer>
49
 
50
    </div>
51
  )
52
}
53
 
54
export default Sidebar