-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
87 lines (78 loc) · 2.37 KB
/
App.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
import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import './App.css';
import "react-loader-spinner/dist/loader/css/react-spinner-loader.css";
import Loader from "react-loader-spinner";
import Header from './components/Header';
import SurveyForm from './containers/SurveyForm';
import SuccessPage from './components/SuccessPage';
import { updateProperty } from './actions/creators';
import { submitFormAnswers } from './actions/networkCalls';
class App extends PureComponent {
render() {
const { data, errors } = this.props;
return (
<div className="App">
<Loader
visible={this.props.spinner} />
{!data.isSubmitted ?
<div>
<Header
attributes={data.attributes} />
<SurveyForm
data={data}
onFormSubmit={this.props.onFormSubmit}
updateProperty={this.props.updateProperty}
errors={errors}
/>
</div> :
<SuccessPage
answers={data.answers}
/>}
</div>
);
}
}
function mapStateToProps(state) {
return {
spinner: state.spinnerVisible,
data: state.surveyFormData,
errors: state.validationErrors
};
}
const mapDispatchToProps = (dispatch) => ({
updateProperty: (propertyName, value) => {
dispatch(updateProperty(propertyName, value));
},
onFormSubmit: () => {
dispatch(submitFormAnswers());
},
});
App.propTypes = {
errors: PropTypes.arrayOf(PropTypes.object).isRequired,
spinner: PropTypes.bool.isRequired,
data: PropTypes.shape({
type: PropTypes.string,
id: PropTypes.string,
attributes: PropTypes.shape({
title: PropTypes.string,
description: PropTypes.string,
questions: PropTypes.arrayOf(
PropTypes.shape({
questionId: PropTypes.string,
questionType: PropTypes.string,
label: PropTypes.string,
required: PropTypes.bool,
attributes: PropTypes.shape({
min: PropTypes.number,
max: PropTypes.number,
})
})
)
})
}),
onFormSubmit: PropTypes.func,
updateProperty: PropTypes.func
};
export default connect(mapStateToProps, mapDispatchToProps)(App);