@geode/opengeodeweb-front 10.0.3 → 10.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/components/FeedBack/Snackers.vue +1 -1
- package/app/components/Viewer/BreadCrumb.vue +4 -3
- package/app/components/Viewer/TreeComponent.vue +2 -0
- package/app/components/Viewer/TreeObject.vue +2 -0
- package/app/utils/treeview.js +7 -0
- package/package.json +1 -1
- package/tests/integration/microservices/back/requirements.txt +1 -1
|
@@ -37,7 +37,10 @@
|
|
|
37
37
|
</template>
|
|
38
38
|
|
|
39
39
|
<script setup>
|
|
40
|
+
import { useDataBaseStore } from "@ogw_front/stores/data_base"
|
|
40
41
|
import { useTreeviewStore } from "@ogw_front/stores/treeview"
|
|
42
|
+
|
|
43
|
+
const dataBaseStore = useDataBaseStore()
|
|
41
44
|
const treeviewStore = useTreeviewStore()
|
|
42
45
|
|
|
43
46
|
const selectedTree = computed(() => treeviewStore.selectedTree)
|
|
@@ -48,9 +51,7 @@
|
|
|
48
51
|
|
|
49
52
|
const model_id = computed(() => treeviewStore.model_id)
|
|
50
53
|
|
|
51
|
-
const metaDatas = computed(() =>
|
|
52
|
-
useDataBaseStore().itemMetaDatas(model_id.value),
|
|
53
|
-
)
|
|
54
|
+
const metaDatas = computed(() => dataBaseStore.itemMetaDatas(model_id.value))
|
|
54
55
|
</script>
|
|
55
56
|
|
|
56
57
|
<style scoped>
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
import { useDataBaseStore } from "@ogw_front/stores/data_base"
|
|
19
19
|
import { useHybridViewerStore } from "@ogw_front/stores/hybrid_viewer"
|
|
20
20
|
|
|
21
|
+
import { compareSelections } from "@ogw_front/utils/treeview"
|
|
22
|
+
|
|
21
23
|
const dataStyleStore = useDataStyleStore()
|
|
22
24
|
const dataBaseStore = useDataBaseStore()
|
|
23
25
|
const hybridViewerStore = useHybridViewerStore()
|
|
@@ -41,6 +41,8 @@
|
|
|
41
41
|
import { useDataBaseStore } from "@ogw_front/stores/data_base"
|
|
42
42
|
import { useHybridViewerStore } from "@ogw_front/stores/hybrid_viewer"
|
|
43
43
|
|
|
44
|
+
import { compareSelections } from "@ogw_front/utils/treeview"
|
|
45
|
+
|
|
44
46
|
const treeviewStore = useTreeviewStore()
|
|
45
47
|
const dataStyleStore = useDataStyleStore()
|
|
46
48
|
const dataBaseStore = useDataBaseStore()
|
package/package.json
CHANGED