Skip to content
Snippets Groups Projects
Commit 3d2b39bb authored by Timothee P's avatar Timothee P :sunflower:
Browse files

correct error message & reorder functions

parent 1d045a99
No related branches found
No related tags found
1 merge request!587REDMINE_ISSUE-17413 | Nouveau formulaire de création des listes de valeurs
......@@ -391,6 +391,22 @@ export default {
this.updateStore();
},
updateStore() {
const data = {
dataKey: this.customForm.dataKey,
isMandatory: this.form.isFieldMandatory,
label: this.form.label.value,
name: this.form.name.value,
position: this.form.position.value,
field_type: this.form.field_type.value,
options: this.form.options.value,
};
this.$store.commit('feature-type/UPDATE_CUSTOM_FORM', data);
if (this.customForm.name === this.selectedColorStyle ) {
this.$emit('update', this.form.options.value);
}
},
hasDuplicateOptions() {
this.form.options.errors = [];
const isDup =
......@@ -421,6 +437,16 @@ export default {
this.customForm.dataKey
);
},
initSortable() {
this.sortable = new Sortable(document.getElementById(`list-options-${this.customForm.dataKey}`), {
animation: 150,
handle: '.draggable-row', // The element that is active to drag
ghostClass: 'blue-background-class',
dragClass: 'white-opacity-background-class',
onEnd: this.updateOptionOrder,
});
},
updateOptionValue(index, e) {
this.form.options.value[index] = e.target.value;
......@@ -435,16 +461,6 @@ export default {
this.updateStore();
},
initSortable() {
this.sortable = new Sortable(document.getElementById(`list-options-${this.customForm.dataKey}`), {
animation: 150,
handle: '.draggable-row', // The element that is active to drag
ghostClass: 'blue-background-class',
dragClass: 'white-opacity-background-class',
onEnd: this.updateOptionOrder,
});
},
addOption() {
this.form.options.value.push('');
},
......@@ -453,22 +469,6 @@ export default {
this.form.options.value.splice(index, 1);
},
updateStore() {
const data = {
dataKey: this.customForm.dataKey,
isMandatory: this.form.isFieldMandatory,
label: this.form.label.value,
name: this.form.name.value,
position: this.form.position.value,
field_type: this.form.field_type.value,
options: this.form.options.value,
};
this.$store.commit('feature-type/UPDATE_CUSTOM_FORM', data);
if (this.customForm.name === this.selectedColorStyle ) {
this.$emit('update', this.form.options.value);
}
},
trimWhiteSpace(string) {
// TODO : supprimer les espaces pour chaque option au début et à la fin QUE à la validation
return string.replace(/\s*,\s*/gi, ',');
......@@ -497,7 +497,7 @@ export default {
}
if (this.form.field_type.value === 'pre_recorded_list') {
return this.form.options.value.length === 1 ?
'' : 'Veuillez renseigner une option.';
'' : 'Veuillez sélectionner une option.';
}
return '';
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment