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

toggle JSON import button

parent 8aa89a71
No related branches found
No related tags found
1 merge request!735REDMINE_ISSUE-19119 | Permettre la gestion de signalements non-géographiques (REDMINE_ISSUE-19667 | La recherche de doublon à l'import de signalement s'applique sur les signalements supprimés)
......@@ -219,7 +219,7 @@
style="margin-bottom: 1em;"
>
<option value="GeoJSON">
GeoJSON
{{ feature_type.geom_type === 'none' ? 'JSON' : 'GeoJSON' }}
</option>
<option
v-if="feature_type.geom_type === 'point' || feature_type.geom_type === 'none'"
......@@ -446,12 +446,6 @@ export default {
};
},
watch: {
feature_type(newValue) {
this.toggleJsonUploadOption(newValue);
}
},
computed: {
...mapGetters([
'permissions',
......@@ -497,6 +491,12 @@ export default {
},
},
watch: {
feature_type(newValue) {
this.toggleJsonUploadOption(newValue);
}
},
created() {
if (!this.project) {
this.$store.dispatch('projects/GET_PROJECT', this.slug);
......@@ -515,7 +515,7 @@ export default {
}
// empty prerecorded lists in case the list has been previously loaded with a limit in other component like FeatureExtraForm
this.SET_PRERECORDED_LISTS([]);
// This function is already called by watcher at this stage, but to be safe in edge case
// This function is also called by watcher at this stage, but to be safe in edge case
this.toggleJsonUploadOption(this.feature_type);
},
......@@ -566,7 +566,10 @@ export default {
*/
toggleJsonUploadOption(featureType) {
if (featureType && featureType.geom_type === 'none') {
this.geojsonFileToImport.name = 'Sélectionner un fichier JSON ...';
this.geojsonFileToImport = {
name: 'Sélectionner un fichier JSON ...',
size: 0,
};
}
},
......@@ -906,15 +909,16 @@ export default {
exportFeatures() {
this.exportLoading = true;
let exportFormat = this.feature_type.geom_type === 'none' && this.exportFormat === 'GeoJSON' ? 'json' : this.exportFormat.toLowerCase();
const url = `
${this.$store.state.configuration.VUE_APP_DJANGO_API_BASE}projects/${this.slug}/feature-type/${this.featureTypeSlug}/export/?format_export=${this.exportFormat.toLowerCase()}
${this.$store.state.configuration.VUE_APP_DJANGO_API_BASE}projects/${this.slug}/feature-type/${this.featureTypeSlug}/export/?format_export=${exportFormat}
`;
featureAPI.getFeaturesBlob(url)
.then((blob) => {
if (blob) {
const link = document.createElement('a');
link.href = URL.createObjectURL(blob);
link.download = `${this.project.title}-${this.feature_type.title}.${this.exportFormat === 'GeoJSON' ? 'json' : 'csv'}`;
link.download = `${this.project.title}-${this.feature_type.title}.${exportFormat}`;
link.click();
setTimeout(function(){
URL.revokeObjectURL(link.href);
......
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