FitTrackee/mpwo_client/src/actions/index.js

74 lines
1.8 KiB
JavaScript
Raw Normal View History

2018-04-29 18:23:46 +02:00
import mpwoApi from '../mwpoApi/index'
2018-04-30 21:38:09 +02:00
import { history } from '../index'
2018-04-29 18:23:46 +02:00
export const setData = (target, data) => ({
type: 'SET_DATA',
data,
target,
})
2018-04-30 20:08:18 +02:00
export const setError = message => ({
2018-04-29 18:23:46 +02:00
type: 'SET_ERROR',
2018-04-30 20:08:18 +02:00
message,
2018-04-29 18:23:46 +02:00
})
2018-05-04 23:04:44 +02:00
export const getData = (target, id = null) => dispatch => {
if (id !== null && isNaN(id)) {
return dispatch(setError(target, `${target}: Incorrect id`))
2018-04-30 21:38:09 +02:00
}
2018-05-04 23:04:44 +02:00
return mpwoApi
.getData(target, id)
.then(ret => {
if (ret.status === 'success') {
dispatch(setData(target, ret.data))
} else {
dispatch(setError(`${target}: ${ret.status}`))
}
})
.catch(error => dispatch(setError(`${target}: ${error}`)))
2018-04-30 21:38:09 +02:00
}
2018-05-04 23:04:44 +02:00
export const addData = (target, data) => dispatch => mpwoApi
.addData(target, data)
.then(ret => {
if (ret.status === 'created') {
history.push(`/admin/${target}`)
} else {
dispatch(setError(`${target}: ${ret.status}`))
2018-04-30 20:08:18 +02:00
}
2018-05-04 23:04:44 +02:00
})
.catch(error => dispatch(setError(`${target}: ${error}`)))
export const updateData = (target, data) => dispatch => {
if (isNaN(data.id)) {
return dispatch(setError(target, `${target}: Incorrect id`))
2018-04-29 18:23:46 +02:00
}
2018-05-04 23:04:44 +02:00
return mpwoApi
.updateData(target, data)
.then(ret => {
if (ret.status === 'success') {
dispatch(setData(target, ret.data))
} else {
dispatch(setError(`${target}: ${ret.status}`))
}
})
.catch(error => dispatch(setError(`${target}: ${error}`)))
2018-04-29 18:23:46 +02:00
}
2018-04-30 21:38:09 +02:00
2018-05-04 23:04:44 +02:00
export const deleteData = (target, id) => dispatch => {
if (isNaN(id)) {
return dispatch(setError(target, `${target}: Incorrect id`))
2018-04-30 21:38:09 +02:00
}
2018-05-04 23:04:44 +02:00
return mpwoApi
.deleteData(target, id)
.then(ret => {
if (ret.status === 204) {
history.push(`/admin/${target}`)
} else {
dispatch(setError(`${target}: ${ret.status}`))
}
})
.catch(error => dispatch(setError(`${target}: ${error}`)))
2018-04-30 21:38:09 +02:00
}