summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/data/topology.js
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-07-08 13:36:39 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2021-07-08 13:36:39 +0200
commit2c8d675c2cf140eac05988065a9d20fd2773399a (patch)
tree1bed18bb62d223be954faca87b0736d2a571b443 /opendc-web/opendc-web-ui/src/data/topology.js
parent29196842447d841d2e21462adcfc8c2ed1d851ad (diff)
ui: Combine fetching of project relations
This change updates the OpenDC frontend to combine the fetching of project relations. This means that for a single project, we make only one additional request to retrieve all its topologies.
Diffstat (limited to 'opendc-web/opendc-web-ui/src/data/topology.js')
-rw-r--r--opendc-web/opendc-web-ui/src/data/topology.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/opendc-web/opendc-web-ui/src/data/topology.js b/opendc-web/opendc-web-ui/src/data/topology.js
index 92911a70..8db75877 100644
--- a/opendc-web/opendc-web-ui/src/data/topology.js
+++ b/opendc-web/opendc-web-ui/src/data/topology.js
@@ -21,14 +21,17 @@
*/
import { useSelector } from 'react-redux'
-import { useQueries } from 'react-query'
-import { addTopology, deleteTopology, fetchTopology, updateTopology } from '../api/topologies'
+import { useQueries, useQuery } from 'react-query'
+import { addTopology, deleteTopology, fetchTopologiesOfProject, fetchTopology, updateTopology } from '../api/topologies'
/**
* Configure the query defaults for the topology endpoints.
*/
export function configureTopologyClient(queryClient, auth) {
queryClient.setQueryDefaults('topologies', { queryFn: ({ queryKey }) => fetchTopology(auth, queryKey[1]) })
+ queryClient.setQueryDefaults('project-topologies', {
+ queryFn: ({ queryKey }) => fetchTopologiesOfProject(auth, queryKey[1]),
+ })
queryClient.setMutationDefaults('addTopology', {
mutationFn: (data) => addTopology(auth, data),
@@ -64,8 +67,8 @@ export function useActiveTopology() {
}
/**
- * Return the scenarios with the specified identifiers.
+ * Return the topologies of the specified project.
*/
-export function useTopologies(topologyIds) {
- return useQueries(topologyIds.map((topologyId) => ({ queryKey: ['topologies', topologyId] })))
+export function useProjectTopologies(projectId) {
+ return useQuery(['project-topologies', projectId], { enabled: !!projectId })
}