-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[UI v2] feat: Adds query to join filtered flow runs with flow API
- Loading branch information
1 parent
27e85f9
commit c6145f3
Showing
3 changed files
with
176 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
ui-v2/src/api/flow-runs/use-filter-flow-runs-with-flows/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { useFilterFlowRunswithFlows } from "./use-filter-flow-runs-with-flows"; |
95 changes: 95 additions & 0 deletions
95
...src/api/flow-runs/use-filter-flow-runs-with-flows/use-filter-flow-runs-with-flows.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
import { createFakeFlow, createFakeFlowRun } from "@/mocks"; | ||
|
||
import type { FlowRun } from "@/api/flow-runs"; | ||
import type { Flow } from "@/api/flows"; | ||
|
||
import { QueryClient } from "@tanstack/react-query"; | ||
import { renderHook, waitFor } from "@testing-library/react"; | ||
import { buildApiUrl, createWrapper, server } from "@tests/utils"; | ||
import { http, HttpResponse } from "msw"; | ||
import { describe, expect, it } from "vitest"; | ||
import { useFilterFlowRunswithFlows } from "./use-filter-flow-runs-with-flows"; | ||
|
||
describe("useFilterFlowRunswithFlows", () => { | ||
const mockFilterFlowRunsAPI = (flowRuns: Array<FlowRun>) => { | ||
server.use( | ||
http.post(buildApiUrl("/flow_runs/filter"), () => { | ||
return HttpResponse.json(flowRuns); | ||
}), | ||
); | ||
}; | ||
|
||
const mockFilterFlowsAPI = (flows: Array<Flow>) => { | ||
server.use( | ||
http.post(buildApiUrl("/flows/filter"), () => { | ||
return HttpResponse.json(flows); | ||
}), | ||
); | ||
}; | ||
|
||
it("returns a list with no results", async () => { | ||
// SETUP | ||
const queryClient = new QueryClient(); | ||
|
||
mockFilterFlowRunsAPI([]); | ||
|
||
// TEST | ||
const { result } = renderHook( | ||
() => useFilterFlowRunswithFlows({ offset: 0, sort: "START_TIME_ASC" }), | ||
{ wrapper: createWrapper({ queryClient }) }, | ||
); | ||
|
||
await waitFor(() => expect(result.current.status).toEqual("success")); | ||
expect(result.current.data).toHaveLength(0); | ||
}); | ||
|
||
it("returns a list with joined flows and flow runs", async () => { | ||
// SETUP | ||
const queryClient = new QueryClient(); | ||
const MOCK_FLOW_RUN_0 = createFakeFlowRun({ | ||
id: "0", | ||
flow_id: "flow-id-0", | ||
}); | ||
const MOCK_FLOW_RUN_1 = createFakeFlowRun({ | ||
id: "0", | ||
flow_id: "flow-id-0", | ||
}); | ||
const MOCK_FLOW_RUN_2 = createFakeFlowRun({ | ||
id: "0", | ||
flow_id: "flow-id-1", | ||
}); | ||
const MOCK_FLOW_0 = createFakeFlow({ id: "flow-id-0" }); | ||
const MOCK_FLOW_1 = createFakeFlow({ id: "flow-id-1" }); | ||
|
||
const mockFlowRuns = [MOCK_FLOW_RUN_0, MOCK_FLOW_RUN_1, MOCK_FLOW_RUN_2]; | ||
const mockFlows = [MOCK_FLOW_0, MOCK_FLOW_1]; | ||
mockFilterFlowRunsAPI(mockFlowRuns); | ||
mockFilterFlowsAPI(mockFlows); | ||
|
||
// TEST | ||
const { result } = renderHook( | ||
() => useFilterFlowRunswithFlows({ offset: 0, sort: "NAME_ASC" }), | ||
{ wrapper: createWrapper({ queryClient }) }, | ||
); | ||
|
||
await waitFor(() => expect(result.current.status).toEqual("success")); | ||
|
||
// ASSERT | ||
const EXPECTED = [ | ||
{ | ||
...MOCK_FLOW_RUN_0, | ||
flow: MOCK_FLOW_0, | ||
}, | ||
{ | ||
...MOCK_FLOW_RUN_1, | ||
flow: MOCK_FLOW_0, | ||
}, | ||
{ | ||
...MOCK_FLOW_RUN_2, | ||
flow: MOCK_FLOW_1, | ||
}, | ||
]; | ||
|
||
expect(result.current.data).toEqual(EXPECTED); | ||
}); | ||
}); |
80 changes: 80 additions & 0 deletions
80
ui-v2/src/api/flow-runs/use-filter-flow-runs-with-flows/use-filter-flow-runs-with-flows.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import { FlowRunsFilter, buildFilterFlowRunsQuery } from "@/api/flow-runs"; | ||
import { Flow, buildListFlowsQuery } from "@/api/flows"; | ||
import { useQuery } from "@tanstack/react-query"; | ||
import { useMemo } from "react"; | ||
|
||
/** | ||
* | ||
* @param filter | ||
* @returns a simplified query object that joins a flow run's pagination data with it's parent flow | ||
*/ | ||
export const useFilterFlowRunswithFlows = (filter: FlowRunsFilter) => { | ||
const { data: flowRunsData, error: flowRunsError } = useQuery( | ||
buildFilterFlowRunsQuery(filter), | ||
); | ||
|
||
const flowIds = useMemo(() => { | ||
if (!flowRunsData) { | ||
return []; | ||
} | ||
return flowRunsData.map((flowRun) => flowRun.flow_id); | ||
}, [flowRunsData]); | ||
|
||
const { data: flows, error: flowsError } = useQuery( | ||
buildListFlowsQuery( | ||
{ | ||
flows: { id: { any_: flowIds }, operator: "and_" }, | ||
offset: 0, | ||
sort: "CREATED_DESC", | ||
}, | ||
{ enabled: flowIds.length > 0 }, | ||
), | ||
); | ||
|
||
const flowMap = useMemo(() => { | ||
if (!flows) { | ||
return new Map<string, Flow>(); | ||
} | ||
return new Map(flows.map((flow) => [flow.id, flow])); | ||
}, [flows]); | ||
|
||
// If there's no results from the query, return empty | ||
if (flowRunsData && flowRunsData.length === 0) { | ||
return { | ||
status: "success" as const, | ||
error: null, | ||
data: [], | ||
}; | ||
} | ||
|
||
if (flowRunsData && flowMap.size > 0) { | ||
return { | ||
status: "success" as const, | ||
error: null, | ||
data: flowRunsData.map((flowRun) => { | ||
const flow = flowMap.get(flowRun.flow_id); | ||
if (!flow) { | ||
throw new Error("Expecting parent flow to be found"); | ||
} | ||
return { | ||
...flowRun, | ||
flow, | ||
}; | ||
}), | ||
}; | ||
} | ||
|
||
if (flowRunsError || flowsError) { | ||
return { | ||
status: "error" as const, | ||
error: flowRunsError || flowsError, | ||
data: undefined, | ||
}; | ||
} | ||
|
||
return { | ||
status: "pending" as const, | ||
error: null, | ||
data: undefined, | ||
}; | ||
}; |