5473 |
stevensc |
1 |
/* eslint-disable react/prop-types */
|
|
|
2 |
/* eslint-disable camelcase */
|
|
|
3 |
import React, { useEffect, useState } from 'react'
|
|
|
4 |
import { connect } from 'react-redux'
|
|
|
5 |
import { debounce } from '../../../utils'
|
|
|
6 |
import { searchEntities } from '../../../services/search'
|
|
|
7 |
import { addNotification } from '../../../redux/notification/notification.actions'
|
|
|
8 |
import Spinner from '../../../shared/loading-spinner/Spinner'
|
|
|
9 |
import Profile from '../../../components/Profile'
|
|
|
10 |
import SearchList from '../../../components/SearchList'
|
|
|
11 |
import EmptySection from '../../../shared/empty-section/EmptySection'
|
|
|
12 |
import PaginationComponent from '../../../shared/pagination/PaginationComponent'
|
|
|
13 |
import TitleSection from '../../../components/TitleSection'
|
|
|
14 |
|
|
|
15 |
const PeopleViewedProfile = ({ addNotification }) => {
|
|
|
16 |
const [entities, setEntities] = useState([])
|
|
|
17 |
const [loading, setLoading] = useState(false)
|
|
|
18 |
const [search, setSearch] = useState('')
|
|
|
19 |
const [page, setPage] = useState(1)
|
|
|
20 |
const [pages, setPages] = useState(1)
|
|
|
21 |
|
|
|
22 |
useEffect(() => {
|
|
|
23 |
fetchEntities(search, page)
|
|
|
24 |
}, [search, page])
|
|
|
25 |
|
|
|
26 |
const fetchEntities = async (searchValue = '', page = 1) => {
|
|
|
27 |
setLoading(true)
|
|
|
28 |
const response = await searchEntities('profile/people-viewed-profile', searchValue, page)
|
|
|
29 |
|
|
|
30 |
if (!response.success) {
|
|
|
31 |
addNotification({ style: 'danger', msg: response.data })
|
|
|
32 |
setLoading(false)
|
|
|
33 |
return
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
setEntities(response.data.current.items)
|
|
|
37 |
setPages(response.data.total.pages)
|
|
|
38 |
setPage(response.data.current.page)
|
|
|
39 |
setLoading(false)
|
|
|
40 |
}
|
|
|
41 |
|
|
|
42 |
const onChangePageHandler = (currentPage) => {
|
|
|
43 |
setPage(currentPage)
|
|
|
44 |
window.scrollTo(0, 0)
|
|
|
45 |
}
|
|
|
46 |
|
|
|
47 |
const handleSearch = debounce((value) => setSearch(value), 500)
|
|
|
48 |
|
|
|
49 |
return (
|
|
|
50 |
<section className="companies-info container">
|
|
|
51 |
<TitleSection title={LABELS.WHO_HAS_SEEN_MY_PROFILE} />
|
|
|
52 |
<SearchList onChange={handleSearch} />
|
|
|
53 |
<div className="companies-list">
|
|
|
54 |
{loading && <Spinner />}
|
|
|
55 |
{(!loading && Boolean(!entities.length)) && <EmptySection align='left' message={LABELS.DATATABLE_SZERORECORDS} />}
|
|
|
56 |
{(!loading && Boolean(entities.length)) &&
|
|
|
57 |
entities.map(({ name, image, link_inmail, link_view }, id) =>
|
|
|
58 |
<Profile
|
|
|
59 |
key={id}
|
|
|
60 |
image={image}
|
|
|
61 |
name={name}
|
|
|
62 |
link_inmail={link_inmail}
|
|
|
63 |
link_view={link_view}
|
|
|
64 |
fetchCallback={fetchEntities}
|
|
|
65 |
/>
|
|
|
66 |
)}
|
|
|
67 |
</div>
|
|
|
68 |
<PaginationComponent
|
|
|
69 |
onChangePage={onChangePageHandler}
|
|
|
70 |
pages={pages}
|
|
|
71 |
currentActivePage={page}
|
|
|
72 |
isRow={true}
|
|
|
73 |
/>
|
|
|
74 |
</section>
|
|
|
75 |
)
|
|
|
76 |
}
|
|
|
77 |
|
|
|
78 |
const mapDispatchToProps = {
|
|
|
79 |
addNotification: (notification) => addNotification(notification)
|
|
|
80 |
}
|
|
|
81 |
|
|
|
82 |
export default connect(null, mapDispatchToProps)(PeopleViewedProfile)
|