tipoRespuestas.js 1.22 KB
import { tap } from 'ramda'
import { SENATICS_URL } from '../../constants'


export const REQUEST_TIPO_RESPUESTAS = 'REQUEST_TIPO_RESPUESTAS'
export const requestTipoRespuestas = () => ({
    type: REQUEST_TIPO_RESPUESTAS
  })


export const RECEIVE_TIPO_RESPUESTAS = 'RECEIVE_TIPO_RESPUESTAS'
export const receiveTipoRespuestas = (tipoRespuestas) => ({
  type: RECEIVE_TIPO_RESPUESTAS,
  tipoRespuestas: tipoRespuestas.results,
  pages: tipoRespuestas.meta
})


export const ERROR_TIPO_RESPUESTAS = 'ERROR_TIPO_RESPUESTAS'
export const errorTipoRespuestas = (error) => ({
  type: ERROR_TIPO_RESPUESTAS,
  error,
})


export const fetchTipoRespuestas = (token) => (dispatch) => {
    dispatch(requestTipoRespuestas())
    const options = {
      method: 'GET',
      headers: {
        Accept: 'application/json',
        Authorization: `Bearer ${token}`
      },
    }

    const url = `${SENATICS_URL}/tipos-respuesta`

    const internal = () => fetch(url, options)
      .then(response => response.text())
      .then(tap(text => dispatch({ type: 'TEXT_RECEIVED', text })))
      .then(JSON.parse)
      .then(json => dispatch(receiveTipoRespuestas(json)))
      .catch(error => dispatch(errorTipoRespuestas(error)))
    return internal()
  }