mirror of
https://github.com/langgenius/dify.git
synced 2025-07-14 12:41:35 +00:00
19 lines
559 B
TypeScript
19 lines
559 B
TypeScript
import { useCallback } from 'react'
|
|
import { useWorkflowStore } from '@/app/components/workflow/store'
|
|
|
|
export const useGetRunAndTraceUrl = () => {
|
|
const workflowStore = useWorkflowStore()
|
|
const getWorkflowRunAndTraceUrl = useCallback((runId: string) => {
|
|
const { pipelineId } = workflowStore.getState()
|
|
|
|
return {
|
|
runUrl: `/rag/pipelines/${pipelineId}/workflow-runs/${runId}`,
|
|
traceUrl: `/rag/pipelines/${pipelineId}/workflow-runs/${runId}/node-executions`,
|
|
}
|
|
}, [workflowStore])
|
|
|
|
return {
|
|
getWorkflowRunAndTraceUrl,
|
|
}
|
|
}
|