Anchorage API reference
    Preparing search index...
    interface QueueViewProps {
        nowMs: number;
        onSelect: (id: string) => void;
        onToggleSelect?: (id: string) => void;
        presence?: PresenceMember[];
        records: readonly ApprovalRecord[];
        selectedId: string | null;
        selectedIds?: readonly string[];
    }
    Index

    Properties

    nowMs: number
    onSelect: (id: string) => void
    onToggleSelect?: (id: string) => void
    presence?: PresenceMember[]

    Reviewers currently connected to the live stream. When non-empty, a presence badge leads the queue. Omit / empty in poll-only mode.

    records: readonly ApprovalRecord[]

    Pre-sorted (the dashboard hook applies sortQueue).

    selectedId: string | null
    selectedIds?: readonly string[]

    Batch-triage mode: when BOTH batch props are provided, a selection column leads the table — a Checkbox per OPEN (decidable) row, an empty cell for decided ones. Omit both to keep the plain queue.