1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
import { useNavigate } from "react-router";
import { useSupervisorQuestions } from "../contexts/SupervisorQuestionsContext";
import { useUserSettings } from "../hooks/useUserSettings";
import { PhaseConfirmationModal, type PhaseConfirmationData } from "./contracts/PhaseConfirmationModal";
import type { PendingQuestion } from "../lib/api";
/**
* Notification component for phase confirmation requests.
* Shows a modal when there are pending phase_confirmation type questions.
* Uses the same question infrastructure as supervisor questions.
*/
export function PhaseConfirmationNotification() {
const { notificationQuestions, submitAnswer, dismissNotification } =
useSupervisorQuestions();
// Filter for phase_confirmation type questions
const phaseConfirmationQuestions = notificationQuestions.filter(
(q) => q.questionType === "phase_confirmation"
);
if (phaseConfirmationQuestions.length === 0) {
return null;
}
// Show the first phase confirmation question as a modal
const question = phaseConfirmationQuestions[0];
// Build phase confirmation data from the question
const data: PhaseConfirmationData = {
questionId: question.questionId,
contractId: question.contractId,
contractName: question.phaseConfirmation?.contractName,
currentPhase: question.phaseConfirmation?.currentPhase || "research",
nextPhase: question.phaseConfirmation?.nextPhase || "specify",
summary: question.phaseConfirmation?.summary,
deliverables: question.phaseConfirmation?.deliverables,
};
const handleApprove = async (questionId: string) => {
const success = await submitAnswer(questionId, "APPROVE");
if (success) {
dismissNotification(questionId);
}
};
const handleRequestChanges = async (questionId: string, feedback: string) => {
const success = await submitAnswer(
questionId,
`CHANGES_REQUESTED: ${feedback}`
);
if (success) {
dismissNotification(questionId);
}
};
const handleDismiss = () => {
// Dismiss to notification (user can still respond via task output)
dismissNotification(question.questionId);
};
return (
<PhaseConfirmationModal
data={data}
onApprove={handleApprove}
onRequestChanges={handleRequestChanges}
onDismiss={handleDismiss}
/>
);
}
/**
* Alternative: Notification toast-style for phase confirmations
* Shows as a small notification in the corner (like regular supervisor questions)
*/
export function PhaseConfirmationToast() {
const navigate = useNavigate();
const { notificationQuestions, dismissNotification } = useSupervisorQuestions();
const { settings } = useUserSettings();
const documentMode = settings?.documentModeEnabled ?? false;
// Filter for phase_confirmation type questions
const phaseConfirmationQuestions = notificationQuestions.filter(
(q) => q.questionType === "phase_confirmation"
);
if (phaseConfirmationQuestions.length === 0) {
return null;
}
const handleGoToTask = (question: PendingQuestion) => {
dismissNotification(question.questionId);
if (documentMode && question.directiveId) {
navigate(`/directives/${question.directiveId}?task=${question.taskId}`);
} else {
navigate(`/exec/${question.taskId}`);
}
};
return (
<div className="fixed bottom-4 right-4 z-50 max-w-md space-y-2">
{phaseConfirmationQuestions.map((question) => (
<div
key={question.questionId}
className="bg-[#0d1b2d] border border-[rgba(117,170,252,0.5)] rounded-lg shadow-lg overflow-hidden"
>
{/* Header */}
<div className="flex items-center justify-between px-4 py-3 bg-[rgba(117,170,252,0.1)]">
<div className="flex items-center gap-2">
<span className="text-[#75aafc] text-lg">?</span>
<span className="font-mono text-sm text-[#9bc3ff] uppercase">
Phase Transition
</span>
</div>
<button
onClick={() => handleGoToTask(question)}
className="px-3 py-1 font-mono text-xs text-[#75aafc] border border-[rgba(117,170,252,0.3)] hover:border-[rgba(117,170,252,0.5)] hover:bg-[rgba(117,170,252,0.1)] transition-colors uppercase"
>
Review
</button>
</div>
{/* Content preview */}
<div className="px-4 py-3">
{question.phaseConfirmation && (
<div className="flex items-center gap-2 mb-2">
<span className="font-mono text-xs text-purple-400">
{question.phaseConfirmation.currentPhase}
</span>
<span className="text-[#555] font-mono text-xs">→</span>
<span className="font-mono text-xs text-green-400">
{question.phaseConfirmation.nextPhase}
</span>
</div>
)}
<p className="text-sm text-[#dbe7ff] font-mono line-clamp-2">
{question.question}
</p>
{question.phaseConfirmation?.contractName && (
<p className="text-xs text-[#555] font-mono mt-1">
Contract: {question.phaseConfirmation.contractName}
</p>
)}
</div>
</div>
))}
</div>
);
}
|