-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
98 lines (90 loc) · 2.89 KB
/
index.js
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import React, { useReducer } from "react";
import { useValidator } from "./useValidator";
import * as Mapper from "./mapper";
import { actions, reducer } from "./reducer";
import * as API from "../../api/automatedWorkflowAPI";
import { useAPI } from "../../api/apiHooks";
import { ClickWrap, loadClickwrapApi } from "./components/Clickwrap";
import { RecipientForm } from "./components/RecipientForm";
import { ApiDescription } from "./components/ApiDescription";
import { ConfirmationComplete } from "./components/ConfirmationComplete";
const initialState = {
clickWrap: {
environment: "",
accountId: "",
clickwrapId: "",
clientUserId: "",
},
userData: {
fullName: "",
email: "",
},
agreed: false,
showClickwrap: false,
errors: {},
};
export function AutomatedWorkflow() {
const [state, dispatch] = useReducer(reducer, initialState);
const formIsValid = useValidator();
const [isLoading, apiCalls] = useAPI({ ...API, loadClickwrapApi });
const handleSubmit = async (event) => {
event.preventDefault();
const [isValid, errors] = formIsValid(state.userData);
dispatch(actions.setErrors(errors));
if (!isValid) {
return;
}
const response = await apiCalls.getInitParams();
await apiCalls.loadClickwrapApi(response.clickwrap_environment);
dispatch(actions.handleGetClickWrapResponse(response));
};
const handleChange = (event) => {
const { name, value } = event.target;
dispatch(actions.handleRecipientChange({ name, value }));
};
const handleAgreed = async (agreementData) => {
if(agreementData.clientUserId == state.clickWrap.clientUserId){
const request = Mapper.createStoreDataRequest(
state.userData,
agreementData
);
await apiCalls.storeData(request);
dispatch(actions.handleAgreed({ agreementData }));
}
};
const handleDeclined = (agreementData) => {
dispatch(actions.handleDeclined(agreementData));
};
return (
<section className="automated-workflow-page">
<div className="container">
<div className="row">
{state.agreed ? (
<ConfirmationComplete />
) : (
<RecipientForm
userData={state.userData}
onChange={handleChange}
onSubmit={handleSubmit}
errors={state.errors}
loading={isLoading}
/>
)}
<ApiDescription />
<div id="ds-clickWrap" />
{state.showClickwrap && (
<ClickWrap
elementId="ds-clickWrap"
accountId={state.clickWrap.accountId}
clickwrapId={state.clickWrap.clickwrapId}
clientUserId={state.clickWrap.clientUserId}
baseUrl={state.clickWrap.environment}
onAgreed={handleAgreed}
onDeclined={handleDeclined}
/>
)}
</div>
</div>
</section>
);
}