Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 12015 | Rev 12017 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
11960 stevensc 1
/* eslint-disable no-mixed-spaces-and-tabs */
2
import React, { useState, useEffect } from 'react'
3
import { Card } from 'react-bootstrap'
4
import { LengthFilter, SearchInput, Table, TablePagination } from '../../../recruitment_and_selection/components/TableComponents'
5
import { addNotification } from '../../../redux/notification/notification.actions'
6
import DeleteModal from '../../../shared/DeleteModal'
7
import axios from 'axios'
8
import { useDispatch } from 'react-redux'
12012 stevensc 9
import { useHistory, useRouteMatch } from 'react-router-dom'
11960 stevensc 10
 
11
const headers = [
12
	{ key: 'name', label: 'Nombre', isSorteable: true },
13
	{ key: 'job_description', label: 'Descripción', isSorteable: true },
14
	{ key: 'status', label: 'Estatus', isSorteable: false },
15
	{ key: 'actions', label: 'Acciones', isSorteable: false }
16
]
17
 
12012 stevensc 18
const TableView = ({ add_link, table_link, permisions, actionLink, setActionLink }) => {
11960 stevensc 19
 
12015 stevensc 20
	const history = useHistory()
12016 stevensc 21
	const { url, path } = useRouteMatch()
11960 stevensc 22
	const dispatch = useDispatch()
23
	const [modalToShow, setModalToShow] = useState('')
24
	const [items, setItems] = useState([])
25
	const [total, setTotal] = useState(0)
26
	const [search, setSearch] = useState('')
27
	const [dataLength, setDataLength] = useState(10)
28
	const [pages, setPages] = useState({
29
		current: 1,
30
		last: 1
31
	})
32
 
12016 stevensc 33
	console.log(path, url)
34
 
11960 stevensc 35
	const getData = ({ url = '', params = {} }) => {
36
 
37
		axios.get(url, { params: { ...params } })
38
			.then(({ data }) => {
39
				if (!data.success) {
40
					return dispatch(addNotification({
41
						style: 'danger',
42
						msg: 'Ha ocurrido un error'
43
					}))
44
				}
45
 
46
				setItems(data.data.items)
47
				setTotal(data.data.total)
48
				setPages({ ...pages, last: Math.ceil(data.data.total / dataLength) })
49
			})
50
			.catch(() => dispatch(addNotification({
51
				style: 'danger',
52
				msg: 'Ha ocurrido un error'
53
			})))
54
	}
55
 
56
	useEffect(() => {
57
		getData({
58
			url: table_link,
59
			params: {
60
				search: search,
61
				length: dataLength,
62
				page: pages.current
63
			}
64
		})
65
	}, [search, dataLength, pages.current])
66
 
67
	return (
68
		<>
11965 stevensc 69
			<section className="content">
70
				<div className="container-fluid">
71
					<div className="row">
72
						<div className="col-12">
73
							<Card>
74
								<Card.Header>
75
									<div className="row justify-content-end" style={{ gap: '10px' }}>
76
										{
77
											permisions.allowAdd
78
											&&
79
											<label
80
												className='d-flex align-items-center'
81
												onClick={() => {
82
													setActionLink(add_link)
12015 stevensc 83
													history.push(`${url}/add`)
11965 stevensc 84
												}}
85
												style={{ cursor: 'pointer' }}
86
											>
87
												<i className="fa fa-plus mr-2" />
88
												Agregar
89
											</label>
90
										}
91
										<label
92
											className='d-flex align-items-center'
93
											onClick={() => getData({
94
												url: table_link,
95
												params: {
96
													search: search,
97
													length: dataLength,
98
													page: pages.current
99
												}
100
											})}
101
											style={{ cursor: 'pointer' }}
102
										>
103
											<i className='fa fa-refresh mr-2' />
104
											Actualizar
105
										</label>
106
									</div>
107
									<div className="row justify-content-between align-items-center">
108
										<LengthFilter onChange={(e) => setDataLength(e.target.value)} />
109
										<SearchInput onChange={(e) => setSearch(e.target.value)} />
110
									</div>
111
								</Card.Header>
112
								<Card.Body>
113
									<div className="table-responsive">
114
										<Table data={items} headers={headers} setData={setItems}>
115
											{
116
												items.length
117
												&&
118
												items.map((item, index) => (
119
													<tr key={index}>
120
														<td className='text-vertical-middle'>{item.name}</td>
121
														<td className='text-vertical-middle'>{item.job_description}</td>
122
														<td className='text-vertical-middle'>
123
															{
124
																item.status === 'a'
125
																	? 'Activo'
126
																	: 'Inactivo'
127
															}
128
														</td>
129
														<td>
130
															<div className="d-flex align-items-center" style={{ gap: '5px' }}>
131
																{
132
																	permisions.allowEdit
133
																	&&
134
																	<i
135
																		className='fa fa-pencil'
136
																		onClick={() => {
137
																			setActionLink(item.actions.link_edit)
12015 stevensc 138
																			history.push(`${url}/edit`)
11965 stevensc 139
																		}}
140
																		style={{ cursor: 'pointer' }}
141
																	/>
142
																}
143
																{
144
																	permisions.allowDelete
145
																	&&
146
																	<i
147
																		className='fa fa-trash'
148
																		onClick={() => {
149
																			setActionLink(item.actions.link_delete)
150
																			setModalToShow('delete')
151
																		}}
152
																		style={{ cursor: 'pointer' }}
153
																	/>
154
																}
155
																{
156
																	permisions.allowReport
157
																	&&
158
																	<a href={item.actions.link_report} target='_blank' rel="noreferrer" >
159
																		<i className='fa fa-fil' style={{ color: '#333' }} />
160
																	</a>
161
																}
162
															</div>
163
														</td>
164
													</tr>
165
												))
166
											}
167
										</Table>
168
									</div>
169
									<div className='row justify-content-between align-items-center'>
170
										<p className='mb-0'>
171
											{`Mostrando registros del ${(dataLength * pages.current) - (dataLength - 1) || 0} al ${(dataLength * pages.current) - (dataLength - total) || 0} de un total de ${total || 0} registros`}
172
										</p>
173
										<TablePagination
174
											onDecrement={() => setPages(prev => prev.current -= 1)}
175
											onIncrement={() => setPages(prev => prev.current += 1)}
176
											totalPages={pages.last}
177
											currentPage={pages.current}
178
										/>
179
									</div>
180
								</Card.Body>
181
							</Card>
182
						</div>
183
					</div >
184
				</div >
185
			</section >
186
			<DeleteModal
187
				url={actionLink}
188
				isOpen={modalToShow === 'delete'}
189
				closeModal={() => setModalToShow('')}
190
				title="Esta seguro de borrar este formulario?"
191
				onComplete={() => setItems(items.filter((item) => item.actions.link_delete !== actionLink))}
192
				message="Registro borrado"
193
			/>
11960 stevensc 194
		</>
195
	)
196
}
197
 
198
export default TableView