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
|
import actions from '../../actions'
import { connect } from 'react-redux'
import CreateModal from '../../components/tools/CreateModal'
const mapStateToProps = (state, ownProps) => {
return {
disabled: ownProps.disabled,
modal: state.modal,
vehicleJourneys: state.vehicleJourneys,
status: state.status,
stopPointsList: state.stopPointsList,
missions: state.missions,
custom_fields: state.custom_fields,
}
}
const mapDispatchToProps = (dispatch) => {
return {
onModalClose: () =>{
dispatch(actions.closeModal())
},
onAddVehicleJourney: (data, selectedJourneyPattern, stopPointsList, selectedCompany) =>{
dispatch(actions.addVehicleJourney(data, selectedJourneyPattern, stopPointsList, selectedCompany))
},
onOpenCreateModal: () =>{
dispatch(actions.openCreateModal())
},
onSelect2JourneyPattern: (e) =>{
dispatch(actions.selectJPCreateModal(e.params.data))
},
onSelect2Company: (e) => {
dispatch(actions.select2Company(e.params.data))
},
onUnselect2Company: () => {
dispatch(actions.unselect2Company())
}
}
}
const AddVehicleJourney = connect(mapStateToProps, mapDispatchToProps)(CreateModal)
export default AddVehicleJourney
|