Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6731 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'
Línea 6... Línea 11...
6
import ProfileItemList from '../../components/profile-item/ProfileItemList'
11
import ProfileItem from '../../components/profile/ProfileItem'
-
 
12
 
-
 
13
const AppliedJobsPage = () => {
-
 
14
  const [appliedJobs, setMyProfiles] = useState([])
7
 
15
  const [loading, setLoading] = useState(false)
Línea -... Línea 16...
-
 
16
  const [search, setSearch] = useState('')
-
 
17
  const labels = useSelector(({ intl }) => intl.labels)
-
 
18
 
-
 
19
  const dispatch = useDispatch()
-
 
20
 
8
const AppliedJobsPage = () => {
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
 
Línea 9... Línea 43...
9
  const labels = useSelector(({ intl }) => intl.labels)
43
  useEffect(() => {
10
 
44
    getAppliedJobs(search)
11
  const WithSearchConnections = withSearch(ProfileItemList, 'job/applied-jobs')
45
  }, [search])
-
 
46
 
-
 
47
  return (
-
 
48
    <main className="companies-info container">
-
 
49
      <TitleSection title={labels.jobs_applied} />
-
 
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}
12
 
64
                btnCancelTitle={labels.job_request_cancel}
-
 
65
              />
-
 
66
            ))
-
 
67
          ) : (
-
 
68
            <EmptySection
-
 
69
              align="left"
-
 
70
              message={labels.datatable_szerorecords}
13
  return (
71
            />
14
    <main className="companies-info container">
72
          )}
15
      <TitleSection title={labels.jobs_applied} />
73
        </ul>
Línea 16... Línea 74...
16
      <WithSearchConnections />
74
      )}