Blame view

redux/actions/categoriesAction.js 3.05 KB
jaymehta committed
1 2 3 4 5 6 7 8 9 10 11 12
import axios from "axios";
import qs from "qs";
import {
  GET_CATEGORIES_FAIL,
  GET_CATEGORIES_REQUEST,
  GET_CATEGORIES_SUCCESS,
  GET_SUB_CATEGORIES_FAIL,
  GET_SUB_CATEGORIES_REQUEST,
  GET_SUB_CATEGORIES_SUCCESS
} from "../constants/categoryConstants";

export const getAllCategories = () => async dispatch => {
jaymehta committed
13
  // console.log("here >");
jaymehta committed
14
  try {
jaymehta committed
15
  // console.log("here >>");
16

jaymehta committed
17 18 19
    dispatch({
      type: GET_CATEGORIES_REQUEST
    });
20

jaymehta committed
21 22 23 24 25
    const config = {
      headers: {
        "Content-Type": "application/json"
      }
    };
26 27 28
    const query = {
      populate: ["image"]
    };
jaymehta committed
29

30 31 32
    const queryString = qs.stringify(query, {
      encodeValuesOnly: true
    });
jaymehta committed
33

34
    const response = await axios.get(`${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/categories?${queryString}`, config);
jaymehta committed
35
    // console.log("response > ", response);
jaymehta committed
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
    dispatch({
      type: GET_CATEGORIES_SUCCESS,
      payload: response.data
    });

    return response.data;
  } catch (error) {
    dispatch({
      type: GET_CATEGORIES_FAIL,
      payload: error.response.data
    });
  }
};

export const getAllSubCategories = categoryName => async dispatch => {
  try {
    dispatch({
      type: GET_SUB_CATEGORIES_REQUEST
    });
    const config = {
      headers: {
        "Content-Type": "application/json"
      }
    };

jaymehta committed
61
    let query = {
jaymehta committed
62 63 64 65 66
      filters: {
        category: {
          name: {}
        }
      },
jaymehta committed
67 68 69
      populate: ["category"]
    };

jaymehta committed
70
    if (categoryName) {
jaymehta committed
71
      // console.log("here 1", query.filters.category);
jaymehta committed
72 73
      query.filters.category.name = { $eq: categoryName };
    }
jaymehta committed
74
    // console.log(">>>", query);
jaymehta committed
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
    const queryString = qs.stringify(query, {
      encodeValuesOnly: true
    });

    const response = await axios.get(`${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/sub-categories/?${queryString}`, config);

    dispatch({
      type: GET_SUB_CATEGORIES_SUCCESS,
      payload: response.data
    });

    return response.data;
  } catch (error) {
    dispatch({
      type: GET_SUB_CATEGORIES_FAIL,
      payload: error.response.data
    });
  }
};
jaymehta committed
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142



export const getSubCategoriesByCategoryId = categoryId => async dispatch => {
  try {
    dispatch({
      type: GET_SUB_CATEGORIES_REQUEST,
      loading: true
    });
    const config = {
      headers: {
        "Content-Type": "application/json"
      }
    };

    let query = {
      filters: {
        category: {
          id: {}
        }
      },
      populate: ["category"]
    };

    if (categoryId) {
      // console.log("here 1", query.filters.category);
      query.filters.category.id = { $eq: categoryId };
    }
    // console.log(">>>", query);
    const queryString = qs.stringify(query, {
      encodeValuesOnly: true
    });

    const response = await axios.get(`${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/sub-categories/?${queryString}`, config);

    dispatch({
      type: GET_SUB_CATEGORIES_SUCCESS,
      payload: response.data,
      loading: false
    });

    return response.data;
  } catch (error) {
    dispatch({
      type: GET_SUB_CATEGORIES_FAIL,
      payload: error.response.data
    });
  }
};