Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5904 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5285 stevensc 1
/* eslint-disable react/prop-types */
2
import React, { useEffect, useState } from 'react'
3
import axios from '../../../../utils/axios'
4
import Avatar from '../../../../shared/Avatar/Avatar'
5
import EmptySection from '../../../../shared/empty-section/EmptySection'
6
import ExpandLessIcon from '@mui/icons-material/ExpandLess'
7
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'
8
 
9
const GroupsInfo = ({
10
  url = '/helpers/my-groups',
11
  title = 'Mis grupos',
12
  display = false
13
}) => {
14
  const [widgetData, setWidgetData] = useState([])
15
  const [displayMenu, setDisplayMenu] = useState(display)
16
  const [lookMore, setLookMore] = useState(false)
17
 
18
  const getData = () => {
19
    axios.get(url)
20
      .then(({ data: response }) => {
21
        const { success, data } = response
22
        if (success) {
23
          setWidgetData(data.sort((a, b) => a.priority - b.priority).reverse())
24
        }
25
      })
26
  }
27
 
28
  useEffect(() => {
29
    getData()
30
  }, [])
31
 
32
  const dataSlice = () => {
33
    let infoFollows = [...widgetData]
34
    if (!lookMore) {
35
      infoFollows = infoFollows.slice(0, 3)
36
    }
37
    return infoFollows
38
  }
39
 
40
  return (
41
    <div className='sidebar__recent-item__container'>
42
 
43
      <section className='sidebar__recent-item'>
44
        <p>{title}</p>
45
        <button className='sidebar__recent-icon' onClick={() => setDisplayMenu(!displayMenu)}>
46
          {displayMenu ? <ExpandLessIcon /> : <ExpandMoreIcon />}
47
        </button>
48
      </section>
49
 
50
      <ul className={`helper__list ${displayMenu ? 'show' : 'hide'}`}>
51
 
52
        {widgetData.length
53
          ? dataSlice().map(({ id, name, profile, image }) =>
54
            <li key={id}>
55
              <a href={profile} className='helper__list-item' target='secondary'>
56
                <Avatar imageUrl={image} size='md' name={name} />
57
                <span>{name}</span>
58
              </a>
59
            </li>
60
          )
61
          : <EmptySection message={LABELS.DATATABLE_EMPTY} />
62
        }
63
 
64
        {widgetData.length >= 3 &&
65
          <li className='helper__list-item justify-content-center cursor-pointer py-2' onClick={() => setLookMore(!lookMore)}>
66
            <span>
67
              {lookMore ? LABELS.VIEW_LESS : LABELS.VIEW_MORE}
68
            </span>
69
          </li>
70
        }
71
      </ul>
72
 
73
    </div>
74
  )
75
}
76
 
77
export default GroupsInfo