Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6719 | Rev 6736 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6734 stevensc 1
import React, { useEffect, useState } from 'react'
2
import { useDispatch, useSelector } from 'react-redux'
3
import { debounce } from '../../utils'
4
import { searchEntities } from '../../services/items'
5
import { addNotification } from '../../redux/notification/notification.actions'
6719 stevensc 6
 
6734 stevensc 7
import Spinner from '../../components/UI/Spinner'
8
import SearchBar from '../../components/UI/SearchBar'
6719 stevensc 9
import TitleSection from '../../components/UI/TitleSection'
6734 stevensc 10
import EmptySection from '../../components/UI/EmptySection'
11
import ProfileItem from '../../components/profile/ProfileItem'
12
import PaginationComponent from '../../components/UI/PaginationComponent'
6719 stevensc 13
 
14
const MyConnectionsPage = () => {
6734 stevensc 15
  const [myConnections, setMyConnections] = useState([])
16
  const [currentPage, setCurrentPage] = useState(1)
17
  const [totalPages, setTotalPages] = useState(1)
18
  const [loading, setLoading] = useState(false)
19
  const [search, setSearch] = useState('')
20
 
6719 stevensc 21
  const labels = useSelector(({ intl }) => intl.labels)
6734 stevensc 22
  const dispatch = useDispatch()
6719 stevensc 23
 
6734 stevensc 24
  const getMyConnections = async (search = '') => {
25
    setLoading(true)
26
    try {
27
      const { success, data } = await searchEntities(
28
        'connection/my-connections',
29
        search
30
      )
6719 stevensc 31
 
6734 stevensc 32
      if (!success) {
33
        dispatch(addNotification({ style: 'danger', msg: data }))
34
        setLoading(false)
35
        return
36
      }
37
 
38
      setMyConnections(data.current.items)
39
      setCurrentPage(data.current.page)
40
      setTotalPages(data.total.pages)
41
    } catch (error) {
42
      console.log(error)
43
      throw new Error(error)
44
    } finally {
45
      setLoading(false)
46
    }
47
  }
48
 
49
  const handleSearch = debounce((value) => setSearch(value), 500)
50
 
51
  const onChangePageHandler = (currentPage) => {
52
    setCurrentPage(currentPage)
53
  }
54
 
55
  useEffect(() => {
56
    getMyConnections(search)
57
  }, [search])
58
 
6719 stevensc 59
  return (
60
    <main className="companies-info container">
61
      <TitleSection title={labels.first_level_persons} />
6734 stevensc 62
      <SearchBar onChange={handleSearch} />
63
      {loading ? (
64
        <Spinner />
65
      ) : (
66
        <ul className="companies-list">
67
          {myConnections.length ? (
68
            myConnections.map(({ id, ...rest }) => (
69
              <ProfileItem
70
                key={id}
71
                isTopData
72
                {...rest}
73
                fetchCallback={getMyConnections}
74
              />
75
            ))
76
          ) : (
77
            <EmptySection
78
              align="left"
79
              message={labels.datatable_szerorecords}
80
            />
81
          )}
82
        </ul>
83
      )}
84
      <PaginationComponent
85
        isRow
86
        pages={totalPages}
87
        currentActivePage={currentPage}
88
        onChangePage={onChangePageHandler}
89
      />
6719 stevensc 90
    </main>
91
  )
92
}
93
 
94
export default MyConnectionsPage