Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 14561 Rev 14879
Línea 1... Línea 1...
1
import React, { useState } from 'react'
1
import React, { useState } from 'react'
2
import axios from 'axios'
2
import axios from 'axios'
3
import DeleteModal from '../../shared/DeleteModal'
3
import DeleteModal from '../../shared/DeleteModal'
4
import TableFilters from '../components/TableFilters'
4
import TableFilters from '../components/TableFilters'
5
import AddModal from '../components/Modals/AddModal'
5
import AddModal from '../components/Modals/AddModal'
-
 
6
import AppliedModal from '../components/Modals/AppliedModal'
Línea 6... Línea 7...
6
 
7
 
Línea 7... Línea 8...
7
const JobsTableView = ({ backendVars }) => {
8
const JobsTableView = ({ backendVars }) => {
8
 
9
 
Línea 19... Línea 20...
19
	} = backendVars
20
	} = backendVars
20
	const [companyData, setCompanyData] = useState({})
21
	const [companyData, setCompanyData] = useState({})
21
	const [showModal, setShowModal] = useState(false)
22
	const [showModal, setShowModal] = useState(false)
22
	const [showDeleteModal, setShowDeleteModal] = useState(false)
23
	const [showDeleteModal, setShowDeleteModal] = useState(false)
23
	const [actionLink, setActionLink] = useState(link_add)
24
	const [actionLink, setActionLink] = useState(link_add)
-
 
25
	const [appliedModal, setAppliedModal] = useState(false)
Línea 24... Línea 26...
24
 
26
 
25
	const headers = [
27
	const headers = [
26
		{ key: 'last_date_of_application', label: 'Último día de aplicación', isSorteable: true },
28
		{ key: 'last_date_of_application', label: 'Último día de aplicación', isSorteable: true },
27
		{ key: 'title', label: 'Título', isSorteable: true },
29
		{ key: 'title', label: 'Título', isSorteable: true },
Línea 52... Línea 54...
52
	const closeModal = () => {
54
	const closeModal = () => {
53
		setShowModal(false)
55
		setShowModal(false)
54
		setActionLink(link_add)
56
		setActionLink(link_add)
55
	}
57
	}
Línea -... Línea 58...
-
 
58
 
-
 
59
	const closeAppliedModal = () => {
-
 
60
		setAppliedModal	(false)
-
 
61
		setActionLink(link_add)
-
 
62
	}
56
 
63
 
57
	const closeDeleteModal = () => {
64
	const closeDeleteModal = () => {
58
		setShowDeleteModal(false)
65
		setShowDeleteModal(false)
59
		setActionLink(link_add)
66
		setActionLink(link_add)
Línea 67... Línea 74...
67
	const addItem = () => {
74
	const addItem = () => {
68
		setActionLink(link_add)
75
		setActionLink(link_add)
69
		setShowModal(true)
76
		setShowModal(true)
70
	}
77
	}
Línea -... Línea 78...
-
 
78
 
-
 
79
	const handleUserWhoApplied = (link) => {
-
 
80
		setActionLink(link)
-
 
81
		setAppliedModal(true)
-
 
82
	}
71
 
83
 
72
	return (
84
	return (
73
		<>
85
		<>
74
			<section className="content-header">
86
			<section className="content-header">
75
				<div className="container-fluid">
87
				<div className="container-fluid">
Línea 89... Línea 101...
89
				headers={headers}
101
				headers={headers}
90
				allowAdd={allowAdd}
102
				allowAdd={allowAdd}
91
				allowEdit={allowEdit}
103
				allowEdit={allowEdit}
92
				allowDelete={allowDelete}
104
				allowDelete={allowDelete}
93
				allowUsersWhoApplied={allowUsersWhoApplied}
105
				allowUsersWhoApplied={allowUsersWhoApplied}
-
 
106
				handleUserWhoApplied={handleUserWhoApplied}
94
			/>
107
			/>
95
			{
108
			{
-
 
109
				appliedModal 
-
 
110
				&&
-
 
111
				<AppliedModal 
-
 
112
					dataLink={actionLink}
-
 
113
					closeModal={closeAppliedModal}
-
 
114
				/>
-
 
115
			}
-
 
116
			{
96
				showModal
117
				showModal
97
				&&
118
				&&
98
				<AddModal
119
				<AddModal
99
					closeModal={closeModal}
120
					closeModal={closeModal}
100
					dataLink={actionLink}
121
					dataLink={actionLink}