diff --git a/public/config/config.json b/public/config/config.json index 9651190e5aa2d349aead14b9d85304d92d6f2356..fd6f71da8051b71ffbfc8c55193bc9160b7124d3 100644 --- a/public/config/config.json +++ b/public/config/config.json @@ -9,6 +9,7 @@ "VUE_APP_LOGO_PATH":"/geocontrib/img/logo-neogeo-circle.png", "VUE_APP_DJANGO_BASE":"http://localhost:8010", "VUE_APP_DJANGO_API_BASE":"http://localhost:8010/api/", + "VUE_APP_IDGO": false, "VUE_APP_RELOAD_INTERVAL": 15000, "VUE_APP_DISABLE_LOGIN_BUTTON":false, "VUE_APP_LOGIN_URL":"", diff --git a/src/views/feature_type/Feature_type_detail.vue b/src/views/feature_type/Feature_type_detail.vue index bae93743c7a6f3c88d330129f2fd46a9d4cf654c..85d6831bed91ff5f0ac8c29499024036b1da5322 100644 --- a/src/views/feature_type/Feature_type_detail.vue +++ b/src/views/feature_type/Feature_type_detail.vue @@ -88,6 +88,7 @@ <router-link v-if=" + IDGO && permissions && permissions.can_create_feature " @@ -101,7 +102,7 @@ class="ui icon button import-catalog" >Créer un nouveau type de signalement à partir du catalogue Datasud </router-link> - <div v-if="$route.params.geojson" class="ui button import-catalog basic active teal"> + <div v-if="$route.params.geojson" class="ui button import-catalog basic active teal no-hover"> Ressource {{$route.params.geojson.name}} </div> <ul v-if="importError" class="errorlist"> @@ -289,6 +290,9 @@ export default { 'feature_types', 'importFeatureTypeData' ]), + IDGO() { + return this.$store.state.configuration.VUE_APP_IDGO; + }, structure: function () { if (Object.keys(this.feature_types).length) { let st = this.feature_types.find( @@ -503,4 +507,8 @@ export default { .import-catalog { margin-bottom: 1em; } + +.no-hover { + cursor: default; +} </style> \ No newline at end of file diff --git a/src/views/project/Project_detail.vue b/src/views/project/Project_detail.vue index 419469b6377ef871a30953952136633fed8c6d69..d5a42d06559f0cd551a81a58823221e22673e476 100644 --- a/src/views/project/Project_detail.vue +++ b/src/views/project/Project_detail.vue @@ -327,6 +327,7 @@ <div class="nouveau-type-signalement"> <router-link v-if=" + IDGO && permissions && permissions.can_update_project && isOffline() !== true @@ -683,7 +684,7 @@ export default { ...mapState([ 'last_comments', 'user', - 'reloadIntervalId' + 'reloadIntervalId', ]), ...mapState('map', [ 'map' @@ -694,6 +695,9 @@ export default { API_BASE_URL() { return this.$store.state.configuration.VUE_APP_DJANGO_API_BASE; }, + IDGO() { + return this.$store.state.configuration.VUE_APP_IDGO; + }, fileSize() { return fileConvertSizeToMo(this.fileToImport.size); }