diff --git a/src/store/modules/feature_type.js b/src/store/modules/feature_type.js index 4c6c95f30e31260ce251b77314884c0b86c7c946..046d784a96ab51cd21d9930ea46d166c9050b6e7 100644 --- a/src/store/modules/feature_type.js +++ b/src/store/modules/feature_type.js @@ -167,13 +167,12 @@ const feature_type = { let { feature_type_slug, geojson } = payload; //* check if geojson then build a file if(!geojson && !state.fileToImport && state.fileToImport.size === 0 ) return - let formData = new FormData(); let fileToImport; const {name, type} = geojson || state.fileToImport; if (!rootGetters.project.moderation) { - if (state.fileToImport.size > 0) { //* if data in a binary file, read it as text + if (state.fileToImport && state.fileToImport.size > 0) { //* if data in a binary file, read it as text const textFile = await state.fileToImport.text(); geojson = JSON.parse(textFile); } @@ -183,7 +182,7 @@ const feature_type = { }; } fileToImport = new File([JSON.stringify(geojson)], name, {type}); - + formData.append('json_file', geojson ? fileToImport : state.fileToImport); formData.append('feature_type_slug', feature_type_slug); let url = @@ -206,7 +205,6 @@ const feature_type = { .catch((error) => { throw (error); }); - // } }, GET_IMPORTS({ commit }, { project_slug, feature_type }) { diff --git a/src/views/feature_type/Feature_type_detail.vue b/src/views/feature_type/Feature_type_detail.vue index c43b14d19fbae3676cc0dc229c43c8c00fe9b203..517fb08d19d60f55bb4169cda6323663f959eced 100644 --- a/src/views/feature_type/Feature_type_detail.vue +++ b/src/views/feature_type/Feature_type_detail.vue @@ -359,7 +359,7 @@ export default { importFeatureTypeData: { deep: true, - handler(newValue) { + handler(newValue, oldValue) { if (newValue && newValue.some(el => el.status === 'pending')) { setTimeout(() => { this.reloadingImport = true; @@ -371,6 +371,8 @@ export default { }, 1000); }) }, this.$store.state.configuration.VUE_APP_RELOAD_INTERVAL); + } else if (oldValue && oldValue.some(el => el.status === 'pending')) { + this.getFeatures(); } } }, @@ -503,8 +505,11 @@ export default { } if (this.$route.params.geojson) { payload["geojson"] = this.$route.params.geojson - } else { + } else if (this.fileToImport && !this.fileToImport.name) { payload["fileToImport"] = this.fileToImport; + } else { + this.importError = "La ressource n'a pas pu être récupéré." + return } this.$store.dispatch('feature_type/SEND_FEATURES_FROM_GEOJSON', payload) .then(() => {