Rev 6830 | AutorÃa | Ultima modificación | Ver Log |
import React, { useEffect, useState } from 'react'
import { axios } from '../../../utils'
import Avatar from '../../UI/AvatarImage'
import EmptySection from '../../UI/EmptySection'
import { useSelector } from 'react-redux'
import ExpandLessIcon from '@mui/icons-material/ExpandLess'
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'
const GroupsInfo = ({
url = '/helpers/my-groups',
title = 'Mis grupos',
display = false,
}) => {
const [widgetData, setWidgetData] = useState([])
const [displayMenu, setDisplayMenu] = useState(display)
const [lookMore, setLookMore] = useState(false)
const labels = useSelector(({ intl }) => intl.labels)
const getData = () => {
axios.get(url).then(({ data: response }) => {
const { success, data } = response
if (success) {
setWidgetData(data.sort((a, b) => a.priority - b.priority).reverse())
}
})
}
useEffect(() => {
getData()
}, [])
const dataSlice = () => {
let infoFollows = [...widgetData]
if (!lookMore) {
infoFollows = infoFollows.slice(0, 3)
}
return infoFollows
}
return (
<div className="sidebar__recent-item__container">
<section className="sidebar__recent-item">
<p>{title}</p>
<button
className="sidebar__recent-icon"
onClick={() => setDisplayMenu(!displayMenu)}
>
{displayMenu ? <ExpandLessIcon /> : <ExpandMoreIcon />}
</button>
</section>
<ul className={`helper__list ${displayMenu ? 'show' : 'hide'}`}>
{widgetData.length ? (
dataSlice().map(({ id, name, profile, image }) => (
<li key={id}>
<a
href={profile}
className="helper__list-item"
target="secondary"
>
<Avatar imageUrl={image} size="md" name={name} />
<span>{name}</span>
</a>
</li>
))
) : (
<EmptySection message={labels.empty} />
)}
{widgetData.length >= 3 && (
<li
className="helper__list-item justify-content-center cursor-pointer py-2"
onClick={() => setLookMore(!lookMore)}
>
<span>{lookMore ? labels.view_less : labels.view_more}</span>
</li>
)}
</ul>
</div>
)
}
export default GroupsInfo