Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4438 Rev 4444
Línea 13... Línea 13...
13
  image,
13
  image,
14
  fullName,
14
  fullName,
15
  description,
15
  description,
16
  visits,
16
  visits,
17
  connections,
17
  connections,
-
 
18
  cover = null
18
}) => {
19
}) => {
19
  const [display, setDisplay] = useState(false)
20
  const [display, setDisplay] = useState(false)
Línea 20... Línea 21...
20
 
21
 
21
  return (
22
  return (
Línea 22... Línea 23...
22
    <div className='sidebar'>
23
    <div className='sidebar'>
23
 
24
 
24
      <div className='sidebar__top'>
25
      <div className={`sidebar__top ${!cover && 'mt-3'}`}>
25
        <img src='./static/profile_2.jpg' alt='Profile cover' className='sidebar__cover' />
26
        {cover && <img src='./static/profile_2.jpg' alt='Profile cover' className='sidebar__cover' />}
26
        <Avatar imageUrl={image} size='xl' name={fullName} />
27
        <Avatar imageUrl={image} size='xl' name={fullName} />
27
        <h2>{parse(fullName)}</h2>
28
        <h2>{parse(fullName)}</h2>
Línea 32... Línea 33...
32
        <div className='sidebar__stats'>
33
        <div className='sidebar__stats'>
33
          <StatItem title='¿Quien ha visto tu perfil?' number={visits} url='/profile/people-viewed-profile' />
34
          <StatItem title='¿Quien ha visto tu perfil?' number={visits} url='/profile/people-viewed-profile' />
34
          <StatItem title='Conexiones' number={connections} url='/connection/my-connections' />
35
          <StatItem title='Conexiones' number={connections} url='/connection/my-connections' />
35
        </div>
36
        </div>
36
        <HelpersContainer />
37
        <HelpersContainer />
-
 
38
        <SocialNetworks className='sidebar-apps__widget' />
37
      </div>
39
      </div>
38
      <SocialNetworks className='sidebar-apps__widget'/>
-
 
Línea 39... Línea 40...
39
 
40
 
40
      <footer className='sideabar__footer'>
41
      <footer className='sideabar__footer'>
41
        <button
42
        <button
42
          onClick={() => setDisplay(!display)}
43
          onClick={() => setDisplay(!display)}