Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15061 Rev 15310
Línea 23... Línea 23...
23
	const dispatch = useDispatch()
23
	const dispatch = useDispatch()
24
	const [showDeleteModal, setShowDeleteModal] = useState(false)
24
	const [showDeleteModal, setShowDeleteModal] = useState(false)
25
	const [isShowAddModal, setIsShowAddModal] = useState(false)
25
	const [isShowAddModal, setIsShowAddModal] = useState(false)
26
	const [currentEditLink, setCurrentEditLink] = useState('')
26
	const [currentEditLink, setCurrentEditLink] = useState('')
27
	const [isShowEditModal, setIsShowEditModal] = useState(false)
27
	const [isShowEditModal, setIsShowEditModal] = useState(false)
28
	const [currentVacancy, setCurrentVacancy] = useState((vacancies.length > 0)? vacancies[0].uuid : '')
28
	const [currentVacancy, setCurrentVacancy] = useState((vacancies.length > 0) ? vacancies[0].uuid : '')
29
	const [actionLink, setActionLink] = useState('')
29
	const [actionLink, setActionLink] = useState('')
30
	const [items, setItems] = useState([])
30
	const [items, setItems] = useState([])
31
	const [total, setTotal] = useState(0)
31
	const [total, setTotal] = useState(0)
32
	const [search, setSearch] = useState('')
32
	const [search, setSearch] = useState('')
33
	const [dataLength, setDataLength] = useState(10)
33
	const [dataLength, setDataLength] = useState(10)
Línea 112... Línea 112...
112
												}
112
												}
113
											</select>
113
											</select>
114
										</div>
114
										</div>
115
									</div>
115
									</div>
116
									<div className="row justify-content-end" style={{ gap: '10px' }}>
116
									<div className="row justify-content-end" style={{ gap: '10px' }}>
117
										{
-
 
118
											permisions.allowAdd
117
										{permisions.allowAdd &&
119
											&&
-
 
120
											<label
118
											<label
121
												className='d-flex align-items-center'
119
												className='d-flex align-items-center'
122
												onClick={() => setIsShowAddModal(true)}
120
												onClick={() => setIsShowAddModal(true)}
123
												style={{ cursor: 'pointer' }}
121
												style={{ cursor: 'pointer' }}
124
											>
122
											>
Línea 162... Línea 160...
162
																	? <i className='fa fa-check' style={{ color: '#5cb85c' }} />
160
																	? <i className='fa fa-check' style={{ color: '#5cb85c' }} />
163
																	: <i className='fa fa-close' style={{ color: 'red' }} />
161
																	: <i className='fa fa-close' style={{ color: 'red' }} />
164
															}
162
															}
165
														</td>
163
														</td>
166
														<td className='d-flex' style={{ gap: '10px' }}>
164
														<td className='d-flex' style={{ gap: '10px' }}>
167
															{
-
 
168
																permisions.allowEdit
165
															{permisions.allowEdit &&
169
																&&
-
 
170
																<i
166
																<i
171
																	className='fa fa-pencil'
167
																	className='fa fa-pencil'
172
																	style={{ cursor: 'pointer' }}
168
																	style={{ cursor: 'pointer' }}
173
																	onClick={() => {
169
																	onClick={() => {
174
																		setCurrentEditLink(item.actions.link_edit)
170
																		setCurrentEditLink(item.actions.link_edit)
175
																		setIsShowEditModal(true)
171
																		setIsShowEditModal(true)
176
																	}}
172
																	}}
177
																/>
173
																/>
178
															}
174
															}
179
															{
-
 
180
																permisions.allowDelete
175
															{permisions.allowDelete &&
181
																&&
-
 
182
																<i
176
																<i
183
																	className='fa fa-trash'
177
																	className='fa fa-trash'
184
																	onClick={() => {
178
																	onClick={() => {
185
																		setShowDeleteModal(true)
179
																		setShowDeleteModal(true)
186
																		setActionLink(item.actions.link_delete)
180
																		setActionLink(item.actions.link_delete)
Línea 214... Línea 208...
214
			<AddModal
208
			<AddModal
215
				email_link={email_link}
209
				email_link={email_link}
216
				add_link={add_link.replace('UUID_PLACEHOLDER', currentVacancy)}
210
				add_link={add_link.replace('UUID_PLACEHOLDER', currentVacancy)}
217
				closeModal={() => setIsShowAddModal(false)}
211
				closeModal={() => setIsShowAddModal(false)}
218
				isOpen={isShowAddModal}
212
				isOpen={isShowAddModal}
219
				onComplete={()=> getData({url: table_link})}
213
				onComplete={() => getData({ url: table_link })}
220
			/>
214
			/>
221
			<EditModal
215
			<EditModal
222
				edit_link={currentEditLink}
216
				edit_link={currentEditLink}
223
				closeModal={() => setIsShowEditModal(false)}
217
				closeModal={() => setIsShowEditModal(false)}
224
				isOpen={isShowEditModal}
218
				isOpen={isShowEditModal}
Línea 226... Línea 220...
226
			/>
220
			/>
227
			<DeleteModal
221
			<DeleteModal
228
				url={actionLink}
222
				url={actionLink}
229
				isOpen={showDeleteModal}
223
				isOpen={showDeleteModal}
230
				closeModal={() => setShowDeleteModal(false)}
224
				closeModal={() => setShowDeleteModal(false)}
231
				title="Esta seguro de borrar esta vacante?"
225
				title="Esta seguro de borrar este candidato?"
232
				onComplete={() => setItems(items.filter((item) => item.actions.link_delete !== actionLink))}
226
				onComplete={() => setItems(items.filter((item) => item.actions.link_delete !== actionLink))}
233
				message="Vacante eliminada"
227
				message="Candidato eliminado"
234
			/>
228
			/>
235
		</ContentTitle>
229
		</ContentTitle>
236
	)
230
	)
237
}
231
}
238
export default MainView
232
export default MainView
239
233