Break new-application JS component into form steps
This commit is contained in:
parent
8914419dac
commit
1a11182eef
@ -1,11 +1,11 @@
|
|||||||
import FormMixin from '../../mixins/form'
|
import FormMixin from '../../../mixins/form'
|
||||||
import textinput from '../text_input'
|
import textinput from '../../text_input'
|
||||||
import * as R from 'ramda'
|
import * as R from 'ramda'
|
||||||
|
|
||||||
const createEnvironment = name => ({ name })
|
const createEnvironment = name => ({ name })
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'new-application',
|
name: 'application-environments',
|
||||||
|
|
||||||
mixins: [FormMixin],
|
mixins: [FormMixin],
|
||||||
|
|
||||||
@ -18,7 +18,6 @@ export default {
|
|||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
},
|
},
|
||||||
modalName: String,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
data: function() {
|
data: function() {
|
||||||
@ -47,16 +46,18 @@ export default {
|
|||||||
errors: [],
|
errors: [],
|
||||||
environments,
|
environments,
|
||||||
name,
|
name,
|
||||||
readyToSubmit: false,
|
changed: true,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted: function() {
|
mounted: function() {
|
||||||
this.$root.$on('onEnvironmentAdded', this.addEnvironment)
|
this.$root.$on('onEnvironmentAdded', this.addEnvironment)
|
||||||
|
this.validate()
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
addEnvironment: function(event) {
|
addEnvironment: function(_event) {
|
||||||
|
this.changed = false
|
||||||
this.environments.push(createEnvironment(''))
|
this.environments.push(createEnvironment(''))
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -64,6 +65,7 @@ export default {
|
|||||||
if (this.environments.length > 1) {
|
if (this.environments.length > 1) {
|
||||||
this.environments.splice(index, 1)
|
this.environments.splice(index, 1)
|
||||||
}
|
}
|
||||||
|
this.validate()
|
||||||
},
|
},
|
||||||
|
|
||||||
validate: function() {
|
validate: function() {
|
||||||
@ -75,6 +77,7 @@ export default {
|
|||||||
R.filter(Boolean),
|
R.filter(Boolean),
|
||||||
R.take(1)
|
R.take(1)
|
||||||
)(this.validations)
|
)(this.validations)
|
||||||
|
this.invalid = this.errors.length > 0
|
||||||
},
|
},
|
||||||
|
|
||||||
hasEnvironments: function() {
|
hasEnvironments: function() {
|
||||||
@ -99,34 +102,9 @@ export default {
|
|||||||
return names.every((n, index) => names.indexOf(n) === index)
|
return names.every((n, index) => names.indexOf(n) === index)
|
||||||
},
|
},
|
||||||
|
|
||||||
handleSubmit: function(event) {
|
onInput: function(e) {
|
||||||
if (!this.readyToSubmit) {
|
this.changed = true
|
||||||
event.preventDefault()
|
|
||||||
this.validateAndOpenModal()
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
handleCancelSubmit: function() {
|
|
||||||
this.readyToSubmit = false
|
|
||||||
this.closeModal(this.modalName)
|
|
||||||
},
|
|
||||||
|
|
||||||
validateAndOpenModal: function() {
|
|
||||||
let isValid = this.$children.reduce((previous, newVal) => {
|
|
||||||
// display textInput error if it is not valid
|
|
||||||
if (!newVal.showValid) {
|
|
||||||
newVal.showError = true
|
|
||||||
}
|
|
||||||
|
|
||||||
return newVal.showValid && previous
|
|
||||||
}, true)
|
|
||||||
this.validate()
|
this.validate()
|
||||||
isValid = this.errors.length == 0 && isValid
|
|
||||||
|
|
||||||
if (isValid) {
|
|
||||||
this.readyToSubmit = true
|
|
||||||
this.openModal(this.modalName)
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
19
js/components/forms/new_application/name_and_description.js
Normal file
19
js/components/forms/new_application/name_and_description.js
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import FormMixin from '../../../mixins/form'
|
||||||
|
import textinput from '../../text_input'
|
||||||
|
import * as R from 'ramda'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'application-name-and-description',
|
||||||
|
|
||||||
|
mixins: [FormMixin],
|
||||||
|
|
||||||
|
components: {
|
||||||
|
textinput,
|
||||||
|
},
|
||||||
|
|
||||||
|
data: function() {
|
||||||
|
return {
|
||||||
|
errors: [],
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
@ -17,7 +17,8 @@ import EditOfficerForm from './components/forms/edit_officer_form'
|
|||||||
import poc from './components/forms/poc'
|
import poc from './components/forms/poc'
|
||||||
import oversight from './components/forms/oversight'
|
import oversight from './components/forms/oversight'
|
||||||
import toggler from './components/toggler'
|
import toggler from './components/toggler'
|
||||||
import NewApplication from './components/forms/new_application'
|
import ApplicationNameAndDescription from './components/forms/new_application/name_and_description'
|
||||||
|
import ApplicationEnvironments from './components/forms/new_application/environments'
|
||||||
import { EditEnvironmentRole } from './components/forms/edit_environment_role'
|
import { EditEnvironmentRole } from './components/forms/edit_environment_role'
|
||||||
import EditApplicationRoles from './components/forms/edit_application_roles'
|
import EditApplicationRoles from './components/forms/edit_application_roles'
|
||||||
import MultiStepModalForm from './components/forms/multi_step_modal_form'
|
import MultiStepModalForm from './components/forms/multi_step_modal_form'
|
||||||
@ -60,7 +61,8 @@ const app = new Vue({
|
|||||||
checkboxinput,
|
checkboxinput,
|
||||||
poc,
|
poc,
|
||||||
oversight,
|
oversight,
|
||||||
NewApplication,
|
ApplicationNameAndDescription,
|
||||||
|
ApplicationEnvironments,
|
||||||
selector,
|
selector,
|
||||||
BudgetChart,
|
BudgetChart,
|
||||||
SpendTable,
|
SpendTable,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user