Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6719 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 { searchEntities } from '../../services/items'
-
 
5
import { addNotification } from '../../redux/notification/notification.actions'
Línea -... Línea 6...
-
 
6
 
3
 
7
import Spinner from '../../components/UI/Spinner'
4
import withSearch from '../../HOC/withSearch'
8
import SearchBar from '../../components/UI/SearchBar'
-
 
9
import TitleSection from '../../components/UI/TitleSection'
5
import TitleSection from '../../components/UI/TitleSection'
10
import EmptySection from '../../components/UI/EmptySection'
-
 
11
import ProfileItem from '../../components/profile/ProfileItem'
Línea 6... Línea 12...
6
import ProfileItemList from '../../components/profile-item/ProfileItemList'
12
import PaginationComponent from '../../components/UI/PaginationComponent'
-
 
13
 
-
 
14
const MyConnectionsPage = () => {
-
 
15
  const [myConnections, setMyConnections] = useState([])
-
 
16
  const [currentPage, setCurrentPage] = useState(1)
-
 
17
  const [totalPages, setTotalPages] = useState(1)
-
 
18
  const [loading, setLoading] = useState(false)
7
 
19
  const [search, setSearch] = useState('')
-
 
20
 
Línea 8... Línea 21...
8
const MyConnectionsPage = () => {
21
  const labels = useSelector(({ intl }) => intl.labels)
9
  const labels = useSelector(({ intl }) => intl.labels)
22
  const dispatch = useDispatch()
-
 
23
 
-
 
24
  const getMyConnections = async (search = '') => {
10
 
25
    setLoading(true)
-
 
26
    try {
-
 
27
      const { success, data } = await searchEntities(
-
 
28
        'connection/my-connections',
-
 
29
        search
-
 
30
      )
-
 
31
 
-
 
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)
11
  const WithSearchConnections = withSearch(
50
 
-
 
51
  const onChangePageHandler = (currentPage) => {
-
 
52
    setCurrentPage(currentPage)
-
 
53
  }
-
 
54
 
Línea 12... Línea 55...
12
    ProfileItemList,
55
  useEffect(() => {
13
    'connection/my-connections'
56
    getMyConnections(search)
14
  )
57
  }, [search])
-
 
58
 
-
 
59
  return (
-
 
60
    <main className="companies-info container">
-
 
61
      <TitleSection title={labels.first_level_persons} />
-
 
62
      <SearchBar onChange={handleSearch} />
15
 
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
16
  return (
86
        pages={totalPages}
17
    <main className="companies-info container">
87
        currentActivePage={currentPage}
18
      <TitleSection title={labels.first_level_persons} />
88
        onChangePage={onChangePageHandler}
Línea 19... Línea 89...
19
      <WithSearchConnections />
89
      />