import type { TaskStateCell } from '../DistanceToDone'

export const RUN_TASK_CELLS: TaskStateCell[] = [
  { id: 't1', name: 'Negative DB guards', state: 'landed' },
  { id: 't2', name: 'Write-path validation', state: 'failed' },
  { id: 't3', name: 'Read-path validation', state: 'active' },
  { id: 't4', name: 'Backfill integrity', state: 'blocked' },
  { id: 't5', name: 'Land changes', state: 'queued' },
]

export const RUN_TASK_CELLS_ALARMED: TaskStateCell[] = RUN_TASK_CELLS.map((cell) =>
  cell.state === 'active' ? { ...cell, alarmed: true } : cell,
)
