| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- import { groupBy } from 'lodash'
- import { ArrowLeft, ArrowRight } from 'lucide-react'
- import { useState } from 'react'
- import {
- Button,
- cn,
- Dialog,
- DialogContent,
- DialogDescription,
- DialogHeader,
- DialogSection,
- DialogSectionSeparator,
- DialogTitle,
- DialogTrigger,
- StatusIcon,
- } from 'ui'
- import { GenericSkeletonLoader, TimestampInfo } from 'ui-patterns'
- import { ActionStatusBadge, ActionStatusBadgeCondensed, STATUS_TO_LABEL } from './ActionStatusBadge'
- import BranchStatusBadge from './BranchStatusBadge'
- import AlertError from '@/components/ui/AlertError'
- import { ActionRunData } from '@/data/actions/action-detail-query'
- import { useActionRunLogsQuery } from '@/data/actions/action-logs-query'
- import {
- useActionsQuery,
- type ActionRunStep,
- type ActionStatus,
- } from '@/data/actions/action-runs-query'
- import type { Branch } from '@/data/branches/branches-query'
- interface WorkflowLogsProps {
- branch: Branch
- }
- type StatusType = Branch['status']
- const HEALTHY_STATUSES: StatusType[] = ['FUNCTIONS_DEPLOYED', 'MIGRATIONS_PASSED']
- const UNHEALTHY_STATUSES: StatusType[] = ['MIGRATIONS_FAILED', 'FUNCTIONS_FAILED']
- export const WorkflowLogs = ({ branch }: WorkflowLogsProps) => {
- const { project_ref: projectRef, status, name } = branch
- const [isOpen, setIsOpen] = useState(false)
- const {
- data: workflowRuns,
- isSuccess: isWorkflowRunsSuccess,
- isPending: isWorkflowRunsLoading,
- isError: isWorkflowRunsError,
- error: workflowRunsError,
- } = useActionsQuery({ ref: projectRef }, { enabled: isOpen })
- const [selectedWorkflowRun, setSelectedWorkflowRun] = useState<ActionRunData>()
- const {
- data: workflowRunLogs,
- isSuccess: isWorkflowRunLogsSuccess,
- isPending: isWorkflowRunLogsLoading,
- isError: isWorkflowRunLogsError,
- error: workflowRunLogsError,
- } = useActionRunLogsQuery(
- { projectRef, runId: selectedWorkflowRun?.id },
- { enabled: isOpen && Boolean(selectedWorkflowRun) }
- )
- const showStatusIcon = !HEALTHY_STATUSES.includes(status)
- const isUnhealthy = UNHEALTHY_STATUSES.includes(status)
- return (
- <Dialog open={isOpen} onOpenChange={setIsOpen}>
- <DialogTrigger asChild>
- <Button
- type="default"
- icon={
- showStatusIcon ? (
- <StatusIcon variant={isUnhealthy ? 'destructive' : 'default'} hideBackground />
- ) : undefined
- }
- onClick={(e) => e.stopPropagation()}
- >
- View Logs
- </Button>
- </DialogTrigger>
- <DialogContent size="xlarge">
- <DialogHeader>
- <DialogTitle>Workflow logs for {name}</DialogTitle>
- <DialogDescription>
- {!selectedWorkflowRun ? (
- 'Select a workflow run to view logs'
- ) : (
- <>
- Run created at{' '}
- <TimestampInfo className="text-sm" utcTimestamp={selectedWorkflowRun.created_at} />
- </>
- )}
- </DialogDescription>
- </DialogHeader>
- <DialogSectionSeparator />
- <DialogSection className={cn('px-0!', isWorkflowRunLogsSuccess ? 'py-0 pt-2' : 'py-0!')}>
- {!selectedWorkflowRun ? (
- <>
- {isWorkflowRunsLoading && <GenericSkeletonLoader className="py-4" />}
- {isWorkflowRunsError && (
- <div className="py-4">
- <AlertError error={workflowRunsError} />
- </div>
- )}
- {isWorkflowRunsSuccess &&
- (workflowRuns.length > 0 ? (
- <ul className="divide-y">
- {workflowRuns.map((workflowRun) => (
- <li key={workflowRun.id} className="px-4 py-3">
- <button
- type="button"
- disabled={workflowRun.id === projectRef}
- onClick={() => setSelectedWorkflowRun(workflowRun)}
- className="flex items-center gap-2 w-full justify-between"
- >
- <div className="flex items-center gap-4">
- {workflowRun.run_steps.length > 0 ? (
- <RunSteps steps={workflowRun.run_steps} />
- ) : (
- <BranchStatusBadge status={status} />
- )}
- <TimestampInfo
- className="text-sm"
- utcTimestamp={workflowRun.created_at}
- />
- </div>
- {workflowRun.id !== projectRef && <ArrowRight size={16} />}
- </button>
- </li>
- ))}
- </ul>
- ) : (
- <p className="text-center text-sm text-foreground-light py-4">
- No workflow runs found.
- </p>
- ))}
- </>
- ) : (
- <div className="px-4 flex flex-col gap-2 py-2">
- <Button
- onClick={() => setSelectedWorkflowRun(undefined)}
- type="text"
- icon={<ArrowLeft />}
- className="self-start"
- >
- Back to workflow runs
- </Button>
- {isWorkflowRunLogsLoading && <GenericSkeletonLoader className="py-2" />}
- {isWorkflowRunLogsError && (
- <div className="py-2">
- <AlertError
- className="rounded-none"
- subject="Failed to retrieve workflow logs"
- error={workflowRunLogsError}
- />
- </div>
- )}
- {isWorkflowRunLogsSuccess && (
- <pre className="whitespace-pre max-h-[500px] overflow-scroll pb-5 text-sm">
- {workflowRunLogs}
- </pre>
- )}
- </div>
- )}
- </DialogSection>
- </DialogContent>
- </Dialog>
- )
- }
- function RunSteps({ steps }: { steps: Array<ActionRunStep> }) {
- const stepsByStatus = groupBy(steps, 'status') as Record<ActionStatus, Array<ActionRunStep>>
- const firstFailedStep = stepsByStatus.DEAD?.[0]
- const numberFailedSteps = stepsByStatus.DEAD?.length ?? 0
- return (
- <>
- {firstFailedStep && (
- <ActionStatusBadge name={firstFailedStep.name} status={firstFailedStep.status} />
- )}
- {numberFailedSteps > 1 && (
- <ActionStatusBadgeCondensed status={'DEAD'} details={stepsByStatus.DEAD.slice(1)}>
- {numberFailedSteps - 1} more
- </ActionStatusBadgeCondensed>
- )}
- <div className="flex items-center gap-x-2">
- {(Object.keys(stepsByStatus) as Array<ActionStatus>)
- .filter((status) => status !== 'DEAD')
- .map((status) => (
- <ActionStatusBadgeCondensed
- key={status}
- status={status}
- details={stepsByStatus[status]}
- >
- {stepsByStatus[status].length} {STATUS_TO_LABEL[status]}
- </ActionStatusBadgeCondensed>
- ))}
- </div>
- </>
- )
- }
|