Feat: Add Explore page (#13043)

### What problem does this PR solve?

Feat: Add Explore page

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2026-02-09 19:53:51 +08:00
committed by GitHub
parent 8ad7339448
commit db37804f10
21 changed files with 1105 additions and 31 deletions

View File

@@ -95,6 +95,13 @@ export const useNavigatePage = () => {
[navigate],
);
const navigateToAgentExplore = useCallback(
(id: string) => () => {
navigate(`${Routes.Agent}/${id}/explore`);
},
[navigate],
);
const navigateToAgentLogs = useCallback(
(id: string) => () => {
navigate(`${Routes.AgentLogPage}/${id}`);
@@ -176,7 +183,7 @@ export const useNavigatePage = () => {
const navigateToDataflowResult = useCallback(
(props: NavigateToDataflowResultProps) => () => {
let params: string[] = [];
const params: string[] = [];
Object.keys(props).forEach((key) => {
if (props[key as keyof typeof props]) {
params.push(`${key}=${props[key as keyof typeof props]}`);
@@ -203,6 +210,7 @@ export const useNavigatePage = () => {
navigateToChunk,
navigateToAgents,
navigateToAgent,
navigateToAgentExplore,
navigateToAgentLogs,
navigateToAgentTemplates,
navigateToSearchList,