instituciones.js
2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import qs from 'query-string'
// import { tap } from 'ramda'
import { merge, isEmpty, tap } from 'ramda'
import { SENATICS_URL } from '../../constants'
export const REQUEST_INSTITUCIONES = 'REQUEST_INSTITUCIONES'
export const requestInstituciones = () => ({
type: REQUEST_INSTITUCIONES
})
export const RECEIVE_INSTITUCIONES = 'RECEIVE_INSTITUCIONES'
export const receiveInstituciones = (instituciones) => ({
type: RECEIVE_INSTITUCIONES,
instituciones: instituciones.results,
pages: instituciones.meta
})
export const ERROR_INSTITUCIONES = 'ERROR_INSTITUCIONES'
export const errorInstituciones = (error) => ({
type: ERROR_INSTITUCIONES,
error,
})
export const CAMBIAR_BUSQUEDA = 'CAMBIAR_BUSQUEDA'
export const cambiarBusqueda = (busqueda) => ({
type: CAMBIAR_BUSQUEDA,
busqueda,
})
export const fetchInstituciones = (token, params) => (dispatch) => {
dispatch(requestInstituciones())
const options = {
method: 'GET',
headers: {
Accept: 'application/json',
Authorization: `Bearer ${token}`
},
}
const url = `${SENATICS_URL}/instituciones?${qs.stringify(params)}`
const internal = () => fetch(url, options)
.then(response => response.text())
.then(tap(text => dispatch({ type: 'TEXT_RECEIVED', text })))
.then(JSON.parse)
.then(json => dispatch(receiveInstituciones(json)))
.catch(error => dispatch(errorInstituciones(error)))
return internal()
}
export const buscarInstituciones = (token, { text, page }) => (dispatch) => {
dispatch(requestInstituciones())
dispatch(cambiarBusqueda({ text, page }))
const options = {
method: 'GET',
headers: {
Accept: 'application/json',
Authorization: `Bearer ${token}`
},
}
const params = merge({ page }, isEmpty(text) ? {} : { text })
const url = `${SENATICS_URL}/instituciones?${qs.stringify(params)}`
const internal = () => fetch(url, options)
.then(response => response.text())
.then(tap(txt => dispatch({ type: 'TEXT_RECEIVED', text: txt })))
.then(JSON.parse)
.then(json => dispatch(receiveInstituciones(json)))
.catch(error => dispatch(errorInstituciones(error)))
return internal()
}