Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6724 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'
-
 
6
 
-
 
7
import Spinner from '../../components/UI/Spinner'
-
 
8
import SearchBar from '../../components/UI/SearchBar'
3
import TitleSection from '../../components/UI/TitleSection'
9
import TitleSection from '../../components/UI/TitleSection'
4
import ProfileItemList from '../../components/profile-item/ProfileItemList'
10
import EmptySection from '../../components/UI/EmptySection'
5
import withSearch from '../../HOC/withSearch'
11
import ProfileItem from '../../components/profile/ProfileItem'
Línea 6... Línea 12...
6
 
12
 
-
 
13
const InvitationsReceivedPage = () => {
-
 
14
  const [invitationsReceived, setMyProfiles] = useState([])
-
 
15
  const [loading, setLoading] = useState(false)
-
 
16
  const [search, setSearch] = useState('')
7
const InvitationsReceivedPage = () => {
17
 
-
 
18
  const labels = useSelector(({ intl }) => intl.labels)
Línea 8... Línea 19...
8
  const labels = useSelector(({ intl }) => intl.labels)
19
  const dispatch = useDispatch()
9
 
20
 
-
 
21
  const getInvitationsReceived = async (search = '') => {
-
 
22
    setLoading(true)
10
  const WithSearchConnections = withSearch(
23
    try {
-
 
24
      const { success, data } = await searchEntities(
-
 
25
        'connection/invitations-received',
-
 
26
        search
-
 
27
      )
-
 
28
 
-
 
29
      if (!success) {
-
 
30
        dispatch(addNotification({ style: 'danger', msg: data }))
-
 
31
        setLoading(false)
-
 
32
        return
-
 
33
      }
-
 
34
 
-
 
35
      setMyProfiles(data)
-
 
36
    } catch (error) {
-
 
37
      console.log(error)
-
 
38
      throw new Error(error)
-
 
39
    } finally {
11
    ProfileItemList,
40
      setLoading(false)
-
 
41
    }
-
 
42
  }
-
 
43
 
-
 
44
  const handleSearch = debounce((value) => setSearch(value), 500)
-
 
45
 
-
 
46
  useEffect(() => {
Línea 12... Línea 47...
12
    'connection/invitations-received'
47
    getInvitationsReceived(search)
13
  )
48
  }, [search])
14
 
49
 
-
 
50
  return (
-
 
51
    <main className="companies-info container">
-
 
52
      <TitleSection title={labels.invitations_received} />
-
 
53
      <SearchBar onChange={handleSearch} />
-
 
54
      {loading ? (
-
 
55
        <Spinner />
-
 
56
      ) : (
-
 
57
        <ul className="companies-list">
-
 
58
          {invitationsReceived.length ? (
-
 
59
            invitationsReceived.map(({ id, ...rest }) => (
-
 
60
              <ProfileItem
-
 
61
                key={id}
-
 
62
                {...rest}
-
 
63
                fetchCallback={getInvitationsReceived}
15
  return (
64
              />
-
 
65
            ))
-
 
66
          ) : (
-
 
67
            <EmptySection
-
 
68
              align="left"
-
 
69
              message={labels.datatable_szerorecords}
-
 
70
            />
16
    <main className="companies-info container">
71
          )}
17
      <TitleSection title={labels.invitations_received} />
72
        </ul>
18
      <WithSearchConnections />
73
      )}
Línea 19... Línea 74...
19
    </main>
74
    </main>