Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6727 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6727 Rev 6734
Línea 1... Línea 1...
1
import React from 'react'
1
import React, { useEffect, useState } from 'react'
2
import { useSelector } from 'react-redux'
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'
Línea -... Línea 6...
-
 
6
 
3
 
7
import Spinner from '../../components/UI/Spinner'
-
 
8
import SearchBar from '../../components/UI/SearchBar'
4
import withSearch from '../../HOC/withSearch'
9
import ProfileItem from '../../components/profile/ProfileItem'
5
import TitleSection from '../../components/UI/TitleSection'
10
import TitleSection from '../../components/UI/TitleSection'
-
 
11
import EmptySection from '../../components/UI/EmptySection'
Línea 6... Línea 12...
6
import ProfileItemList from '../../components/profile-item/ProfileItemList'
12
import PaginationComponent from '../../components/UI/PaginationComponent'
-
 
13
 
-
 
14
const PeopleViewedMyProfilePage = () => {
-
 
15
  const [peopleViewedMyProfile, setPeopleViewedMyProfile] = useState([])
-
 
16
  const [loading, setLoading] = useState(false)
-
 
17
  const [search, setSearch] = useState('')
-
 
18
  const [currentpage, setCurrentPage] = useState(1)
7
 
19
  const [totalPages, setTotalPages] = useState(1)
-
 
20
 
Línea 8... Línea 21...
8
const PeopleViewedMyProfilePage = () => {
21
  const labels = useSelector(({ intl }) => intl.labels)
9
  const labels = useSelector(({ intl }) => intl.labels)
22
  const dispatch = useDispatch()
-
 
23
 
-
 
24
  const getPeopleVieweMyProfile = async (search = '') => {
10
 
25
    setLoading(true)
-
 
26
    try {
-
 
27
      const { success, data } = await searchEntities(
-
 
28
        'profile/people-viewed-profile',
-
 
29
        search
-
 
30
      )
-
 
31
 
-
 
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)
11
  const WithSearchConnections = withSearch(
50
 
-
 
51
  const handlePagination = (currentPage) => {
-
 
52
    setCurrentPage(currentPage)
-
 
53
  }
-
 
54
 
Línea 12... Línea 55...
12
    ProfileItemList,
55
  useEffect(() => {
13
    'profile/people-viewed-profile'
56
    getPeopleVieweMyProfile(search)
14
  )
57
  }, [search])
-
 
58
 
-
 
59
  return (
-
 
60
    <main className="companies-info container">
-
 
61
      <TitleSection title={labels.who_has_seen_my_profile} />
-
 
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}
15
 
81
            />
-
 
82
          )}
-
 
83
        </ul>
-
 
84
      )}
-
 
85
      <PaginationComponent
-
 
86
        isRow
16
  return (
87
        pages={totalPages}
17
    <main className="companies-info container">
88
        currentActivePage={currentpage}
18
      <TitleSection title={labels.who_has_seen_my_profile} />
89
        onChangePage={handlePagination}
Línea 19... Línea 90...
19
      <WithSearchConnections />
90
      />