Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 14843 Rev 15081
Línea 1... Línea 1...
1
/* eslint-disable no-mixed-spaces-and-tabs */
1
/* eslint-disable no-mixed-spaces-and-tabs */
2
import axios from 'axios'
2
import axios from 'axios'
3
import React, { useEffect, useState } from 'react'
3
import React, { useEffect, useState } from 'react'
4
import { Card } from 'react-bootstrap'
4
import { Card } from 'react-bootstrap'
5
import { useDispatch } from 'react-redux'
5
import { useDispatch } from 'react-redux'
6
import { useHistory } from 'react-router-dom'
-
 
7
import { LengthFilter, SearchInput, Table } from '../../recruitment_and_selection/components/TableComponents'
6
import { LengthFilter, SearchInput, Table } from '../../recruitment_and_selection/components/TableComponents'
8
import { addNotification } from '../../redux/notification/notification.actions'
7
import { addNotification } from '../../redux/notification/notification.actions'
9
import DeleteModal from '../../shared/DeleteModal'
8
import DeleteModal from '../../shared/DeleteModal'
10
import PaginationComponent from '../../shared/PaginationComponent'
9
import PaginationComponent from '../../shared/PaginationComponent'
Línea 19... Línea 18...
19
	actionLink = '',
18
	actionLink = '',
20
	import_link = '',
19
	import_link = '',
21
	add_link = '',
20
	add_link = '',
22
	table_link = '',
21
	table_link = '',
23
	permisions = '',
22
	permisions = '',
24
	setActionLink = function () { }
23
	setActionLink = function () { },
-
 
24
	setAction = function () { }
25
}) => {
25
}) => {
Línea 26... Línea 26...
26
 
26
 
27
	//Hooks
27
	//Hooks
28
	const dispatch = useDispatch()
-
 
Línea 29... Línea 28...
29
	const history = useHistory()
28
	const dispatch = useDispatch()
30
 
29
 
31
	//State
30
	//State
32
	const [isOpen, setIsOpen] = useState(false)
31
	const [isOpen, setIsOpen] = useState(false)
Línea 145... Línea 144...
145
											permisions.allowAdd
144
											permisions.allowAdd
146
											&&
145
											&&
147
											<label
146
											<label
148
												onClick={() => {
147
												onClick={() => {
149
													setActionLink(add_link)
148
													setActionLink(add_link)
150
													history.push('/settings/jobs-description/add')
149
													setAction('add')
151
												}}
150
												}}
152
												className='d-flex align-items-center btn-add'
151
												className='d-flex align-items-center btn-add'
153
												style={{ cursor: 'pointer' }}
152
												style={{ cursor: 'pointer' }}
154
											>
153
											>
155
												<i className="fa fa-plus mr-2" />
154
												<i className="fa fa-plus mr-2" />
Línea 198... Línea 197...
198
																	permisions.allowEdit
197
																	permisions.allowEdit
199
																	&&
198
																	&&
200
																	<i
199
																	<i
201
																		onClick={() => {
200
																		onClick={() => {
202
																			setActionLink(item.actions.link_edit)
201
																			setActionLink(item.actions.link_edit)
203
																			history.push('/settings/jobs-description/edit')
202
																			setAction('edit')
204
																		}}
203
																		}}
205
																		className='fa fa-pencil'
204
																		className='fa fa-pencil'
206
																		style={{ cursor: 'pointer' }}
205
																		style={{ cursor: 'pointer' }}
207
																	/>
206
																	/>
208
																}
207
																}