Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 16, 2020 10:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save velotiotech/8d2f6990426dfa0c25fb9e7e197b35e6 to your computer and use it in GitHub Desktop.
Save velotiotech/8d2f6990426dfa0c25fb9e7e197b35e6 to your computer and use it in GitHub Desktop.
import {
GET_POSTS_BY_ID_REQUEST,
GET_POSTS_BY_ID_SUCCESS,
GET_POSTS_BY_ID_FAIL,
GET_POSTS_BULK_REQUEST,
GET_POSTS_BULK_SUCCESS,
GET_POSTS_BULK_FAIL
} from "./constants";
import {
getPostsById,
getPostsBulk
} from "./api";
const getPostById = async (dispatch, id) => {
dispatch({ type: GET_POSTS_BY_ID_REQUEST });
try {
const response = await getPostsById(id);
const res = await response.json();
dispatch({ type: GET_POSTS_BY_ID_SUCCESS, payload: res });
} catch (e) {
dispatch({ type: GET_POSTS_BY_ID_FAIL, payload: e });
}
};
const getPostBulk = async dispatch => {
dispatch({ type: GET_POSTS_BULK_REQUEST });
try {
const response = await getPostsBulk();
const res = await response.json();
dispatch({ type: GET_POSTS_BULK_SUCCESS, payload: res });
} catch (e) {
dispatch({ type: GET_POSTS_BULK_FAIL, payload: e });
}
};
export const getPostByIdFunc = dispatch => {
return id => getPostById(dispatch, id);
}
export const getPostsBulkFunc = dispatch => {
return () => getPostBulk(dispatch);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment