35 lines
937 B
JavaScript
35 lines
937 B
JavaScript
import axios from 'axios';
|
|
import * as ActionTypes from '../../../constants';
|
|
import { startLoader, stopLoader } from './loader';
|
|
|
|
const __process = (typeof global !== 'undefined' ? global : window).process;
|
|
const ROOT_URL = __process.env.API_URL;
|
|
|
|
// eslint-disable-next-line
|
|
export function getProjects(username) {
|
|
return (dispatch) => {
|
|
dispatch(startLoader());
|
|
let url;
|
|
if (username) {
|
|
url = `${ROOT_URL}/${username}/projects`;
|
|
} else {
|
|
url = `${ROOT_URL}/projects`;
|
|
}
|
|
axios.get(url, { withCredentials: true })
|
|
.then((response) => {
|
|
dispatch({
|
|
type: ActionTypes.SET_PROJECTS,
|
|
projects: response.data
|
|
});
|
|
dispatch(stopLoader());
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
dispatch({
|
|
type: ActionTypes.ERROR,
|
|
error: response.data
|
|
});
|
|
dispatch(stopLoader());
|
|
});
|
|
};
|
|
}
|