Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6727 | 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 { addNotification } from '../../redux/notification/notification.actions'
5
import { searchEntities } from '../../services/items'
6727 stevensc 6
 
6734 stevensc 7
import Spinner from '../../components/UI/Spinner'
8
import SearchBar from '../../components/UI/SearchBar'
9
import ProfileItem from '../../components/profile/ProfileItem'
6727 stevensc 10
import TitleSection from '../../components/UI/TitleSection'
6734 stevensc 11
import EmptySection from '../../components/UI/EmptySection'
12
import PaginationComponent from '../../components/UI/PaginationComponent'
6727 stevensc 13
 
14
const PeopleViewedMyProfilePage = () => {
6734 stevensc 15
  const [peopleViewedMyProfile, setPeopleViewedMyProfile] = useState([])
16
  const [loading, setLoading] = useState(false)
17
  const [search, setSearch] = useState('')
18
  const [currentpage, setCurrentPage] = useState(1)
19
  const [totalPages, setTotalPages] = useState(1)
20
 
6727 stevensc 21
  const labels = useSelector(({ intl }) => intl.labels)
6734 stevensc 22
  const dispatch = useDispatch()
6727 stevensc 23
 
6734 stevensc 24
  const getPeopleVieweMyProfile = async (search = '') => {
25
    setLoading(true)
26
    try {
27
      const { success, data } = await searchEntities(
28
        'profile/people-viewed-profile',
29
        search
30
      )
6727 stevensc 31
 
6734 stevensc 32
      if (!success) {
33
        dispatch(addNotification({ style: 'danger', msg: data }))
34
        setLoading(false)
35
        return
36
      }
37
 
38
      setPeopleViewedMyProfile(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 handlePagination = (currentPage) => {
52
    setCurrentPage(currentPage)
53
  }
54
 
55
  useEffect(() => {
56
    getPeopleVieweMyProfile(search)
57
  }, [search])
58
 
6727 stevensc 59
  return (
60
    <main className="companies-info container">
61
      <TitleSection title={labels.who_has_seen_my_profile} />
6734 stevensc 62
      <SearchBar onChange={handleSearch} />
63
      {loading ? (
64
        <Spinner />
65
      ) : (
66
        <ul className="companies-list">
67
          {peopleViewedMyProfile.length ? (
68
            peopleViewedMyProfile.map(
69
              ({ id, link_edit, link_delete, ...rest }) => (
70
                <ProfileItem
71
                  key={id}
72
                  {...rest}
73
                  fetchCallback={getPeopleVieweMyProfile}
74
                />
75
              )
76
            )
77
          ) : (
78
            <EmptySection
79
              align="left"
80
              message={labels.datatable_szerorecords}
81
            />
82
          )}
83
        </ul>
84
      )}
85
      <PaginationComponent
86
        isRow
87
        pages={totalPages}
88
        currentActivePage={currentpage}
89
        onChangePage={handlePagination}
90
      />
6727 stevensc 91
    </main>
92
  )
93
}
94
 
95
export default PeopleViewedMyProfilePage