Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6731 | Rev 6736 | 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 { searchEntities } from '../../services/items'
5
import { addNotification } from '../../redux/notification/notification.actions'
6727 stevensc 6
 
6734 stevensc 7
import Spinner from '../../components/UI/Spinner'
8
import SearchBar from '../../components/UI/SearchBar'
6727 stevensc 9
import TitleSection from '../../components/UI/TitleSection'
6734 stevensc 10
import EmptySection from '../../components/UI/EmptySection'
11
import ProfileItem from '../../components/profile/ProfileItem'
6727 stevensc 12
 
13
const AppliedJobsPage = () => {
6734 stevensc 14
  const [appliedJobs, setMyProfiles] = useState([])
15
  const [loading, setLoading] = useState(false)
16
  const [search, setSearch] = useState('')
6727 stevensc 17
  const labels = useSelector(({ intl }) => intl.labels)
18
 
6734 stevensc 19
  const dispatch = useDispatch()
6727 stevensc 20
 
6734 stevensc 21
  const getAppliedJobs = async (search = '') => {
22
    setLoading(true)
23
    try {
24
      const { success, data } = await searchEntities('job/applied-jobs', search)
25
 
26
      if (!success) {
27
        dispatch(addNotification({ style: 'danger', msg: data }))
28
        setLoading(false)
29
        return
30
      }
31
 
32
      setMyProfiles(data)
33
    } catch (error) {
34
      console.log(error)
35
      throw new Error(error)
36
    } finally {
37
      setLoading(false)
38
    }
39
  }
40
 
41
  const handleSearch = debounce((value) => setSearch(value), 500)
42
 
43
  useEffect(() => {
44
    getAppliedJobs(search)
45
  }, [search])
46
 
6727 stevensc 47
  return (
48
    <main className="companies-info container">
6731 stevensc 49
      <TitleSection title={labels.jobs_applied} />
6734 stevensc 50
      <SearchBar onChange={handleSearch} />
51
      {loading ? (
52
        <Spinner />
53
      ) : (
54
        <ul className="companies-list">
55
          {appliedJobs.length ? (
56
            appliedJobs.map(({ id, title, employment_type, ...rest }) => (
57
              <ProfileItem
58
                key={id}
59
                name={title}
60
                status={employment_type}
61
                {...rest}
62
                fetchCallback={getAppliedJobs}
63
                btnAcceptTitle={labels.view_job}
64
                btnCancelTitle={labels.job_request_cancel}
65
              />
66
            ))
67
          ) : (
68
            <EmptySection
69
              align="left"
70
              message={labels.datatable_szerorecords}
71
            />
72
          )}
73
        </ul>
74
      )}
6727 stevensc 75
    </main>
76
  )
77
}
78
 
79
export default AppliedJobsPage