Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4734 Rev 5107
Línea 1... Línea 1...
1
/* eslint-disable react/prop-types */
1
/* eslint-disable react/prop-types */
2
import React, { useState } from 'react'
2
import React, { useState } from 'react'
3
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'
-
 
4
import ExpandLessIcon from '@mui/icons-material/ExpandLess'
-
 
5
import parse from 'html-react-parser'
3
import parse from 'html-react-parser'
6
import Avatar from '../../../../shared/Avatar/Avatar'
4
import Avatar from '../../../../shared/Avatar/Avatar'
7
import StatItem from './StatItem'
5
import ExpandLessIcon from '@mui/icons-material/ExpandLess'
-
 
6
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'
8
import HelpersContainer from './HelpersContainer'
7
import HelpersContainer from './HelpersContainer'
9
import './Sidebar.scss'
-
 
10
import SocialNetworks from '../../../components/home-section/SocialNetworks'
8
import SocialNetworks from '../../../components/home-section/SocialNetworks'
-
 
9
import StatItem from './StatItem'
-
 
10
import './Sidebar.scss'
Línea 11... Línea 11...
11
 
11
 
12
const Sidebar = ({
12
const Sidebar = ({
13
  image,
13
  image,
14
  fullName,
14
  fullName,
Línea 29... Línea 29...
29
        {parse(description)}
29
        {parse(description)}
30
      </div>
30
      </div>
Línea 31... Línea 31...
31
 
31
 
32
      <div className={`sidebar__options ${display && 'show'}`}>
32
      <div className={`sidebar__options ${display && 'show'}`}>
33
        <div className='sidebar__stats'>
33
        <div className='sidebar__stats'>
34
          <StatItem title='¿Quien ha visto tu perfil?' number={visits} url='/profile/people-viewed-profile' />
34
          <StatItem title={ `¿${LABELS.WHO_HAS_SEEN_MY_PROFILE}?`} number={visits} url='/profile/people-viewed-profile' />
35
          <StatItem title='Conexiones' number={connections} url='/connection/my-connections' />
35
          <StatItem title={LABELS.CONNECTIONS} number={connections} url='/connection/my-connections' />
36
        </div>
36
        </div>
37
        <HelpersContainer />
37
        <HelpersContainer />
38
        <SocialNetworks className='sidebar-apps__widget' />
38
        <SocialNetworks className='sidebar-apps__widget' />
Línea 42... Línea 42...
42
        <button
42
        <button
43
          onClick={() => setDisplay(!display)}
43
          onClick={() => setDisplay(!display)}
44
          type='button'
44
          type='button'
45
        >
45
        >
46
          <span>
46
          <span>
47
            {display ? 'Show less' : 'Show more'}
47
            {display ? LABELS.VIEW_LESS : LABELS.VIEW_MORE}
48
          </span>
48
          </span>
49
          {display ? <ExpandLessIcon /> : <ExpandMoreIcon />}
49
          {display ? <ExpandLessIcon /> : <ExpandMoreIcon />}
50
        </button>
50
        </button>
51
      </footer>
51
      </footer>