enquiryAction.js
1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import axios from "axios";
import { CLEAR_ERRORS, ENQUIRY_SUBMIT_FAIL, ENQUIRY_SUBMIT_REQUEST, ENQUIRY_SUBMIT_SUCCESS } from "../constants/enquiryConstants";
export const postEnqiryDetails = enquiryData => async dispatch => {
try {
dispatch({
type: ENQUIRY_SUBMIT_REQUEST
});
const config = {
headers: {
"Content-Type": "application/json"
}
};
const response = await axios.post(
`${process.env.NEXT_PUBLIC_BACKEND_API_URL}/api/leads`,
{
data: {
fullName: enquiryData.fullName,
mobileNumber: enquiryData.mobileNumber,
email: enquiryData.email,
projects: enquiryData.projects,
comments: enquiryData.comments
}
},
config
);
dispatch({
type: ENQUIRY_SUBMIT_SUCCESS,
payload: response.data
});
} catch (error) {
console.log("Error while submitting enquiry details: ");
console.log(error);
dispatch({
type: ENQUIRY_SUBMIT_FAIL,
payload: error.response.data
});
}
};
// Clear errors
export const clearErrors = () => async dispatch => {
dispatch({
type: CLEAR_ERRORS
});
};