nyk
feat: full i18n — 1752 keys across 10 languages, all panels translated (#326)
b180108 unverified
Raw
History Blame Contribute Delete
22.4 kB
'use client'
import { useState, useEffect } from 'react'
import { useTranslations } from 'next-intl'
import { Button } from '@/components/ui/button'
import { createClientLogger } from '@/lib/client-logger'
const log = createClientLogger('StandupPanel')
interface StandupReport {
date: string
generatedAt: string
summary: {
totalAgents: number
totalCompleted: number
totalInProgress: number
totalAssigned: number
totalReview: number
totalBlocked: number
totalActivity: number
overdue: number
}
agentReports: Array<{
agent: {
name: string
role: string
status: string
last_seen?: number
last_activity?: string
}
completedToday: Array<{
id: number
title: string
status: string
updated_at: number
}>
inProgress: Array<{
id: number
title: string
status: string
created_at: number
due_date?: number
}>
assigned: Array<{
id: number
title: string
status: string
created_at: number
due_date?: number
priority: string
}>
review: Array<{
id: number
title: string
status: string
updated_at: number
}>
blocked: Array<{
id: number
title: string
status: string
priority: string
created_at: number
metadata?: any
}>
activity: {
actionCount: number
commentsCount: number
}
}>
teamAccomplishments: Array<{
id: number
title: string
agent: string
updated_at: number
}>
teamBlockers: Array<{
id: number
title: string
priority: string
agent: string
created_at: number
}>
overdueTasks: Array<{
id: number
title: string
due_date: number
status: string
agent_name?: string
}>
}
interface StandupHistory {
id: number
date: string
generatedAt: string
summary: any
agentCount: number
}
export function StandupPanel() {
const t = useTranslations('standup')
const [standupReport, setStandupReport] = useState<StandupReport | null>(null)
const [standupHistory, setStandupHistory] = useState<StandupHistory[]>([])
const [loading, setLoading] = useState(false)
const [error, setError] = useState<string | null>(null)
const [selectedDate, setSelectedDate] = useState(new Date().toISOString().split('T')[0])
const [view, setView] = useState<'current' | 'history'>('current')
// Generate standup report
const generateStandup = async (date?: string) => {
try {
setLoading(true)
setError(null)
const response = await fetch('/api/standup', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ date: date || selectedDate })
})
if (!response.ok) throw new Error('Failed to generate standup')
const data = await response.json()
setStandupReport(data.standup)
} catch (err) {
setError(err instanceof Error ? err.message : 'An error occurred')
} finally {
setLoading(false)
}
}
// Fetch standup history
const fetchHistory = async () => {
try {
const response = await fetch('/api/standup/history')
if (!response.ok) throw new Error('Failed to fetch history')
const data = await response.json()
setStandupHistory(data.history || [])
} catch (err) {
log.error('Failed to fetch standup history:', err)
}
}
useEffect(() => {
if (view === 'history') {
fetchHistory()
}
}, [view])
// Format date for display
const formatDate = (dateStr: string) => {
return new Date(dateStr).toLocaleDateString('en-US', {
weekday: 'long',
year: 'numeric',
month: 'long',
day: 'numeric'
})
}
// Format time for display
const formatTime = (timestamp: number) => {
return new Date(timestamp * 1000).toLocaleTimeString('en-US', {
hour: '2-digit',
minute: '2-digit'
})
}
// Get priority color
const getPriorityColor = (priority: string) => {
const colors: Record<string, string> = {
low: 'text-green-400',
medium: 'text-yellow-400',
high: 'text-orange-400',
urgent: 'text-red-400'
}
return colors[priority] || 'text-muted-foreground'
}
// Export standup as text
const exportStandup = () => {
if (!standupReport) return
const lines = [
`# Daily Standup - ${formatDate(standupReport.date)}`,
`Generated: ${new Date(standupReport.generatedAt).toLocaleString()}`,
'',
'## Summary',
`- **Agents Active:** ${standupReport.summary.totalAgents}`,
`- **Completed Today:** ${standupReport.summary.totalCompleted}`,
`- **In Progress:** ${standupReport.summary.totalInProgress}`,
`- **Assigned:** ${standupReport.summary.totalAssigned}`,
`- **In Review:** ${standupReport.summary.totalReview}`,
`- **Blocked:** ${standupReport.summary.totalBlocked}`,
`- **Overdue:** ${standupReport.summary.overdue}`,
'',
]
// Add team accomplishments
if (standupReport.teamAccomplishments.length > 0) {
lines.push('## Team Accomplishments')
standupReport.teamAccomplishments.forEach(task => {
lines.push(`- **${task.agent}**: ${task.title}`)
})
lines.push('')
}
// Add team blockers
if (standupReport.teamBlockers.length > 0) {
lines.push('## Team Blockers')
standupReport.teamBlockers.forEach(task => {
lines.push(`- **${task.agent}** [${task.priority.toUpperCase()}]: ${task.title}`)
})
lines.push('')
}
// Add individual agent reports
lines.push('## Individual Reports')
standupReport.agentReports.forEach(report => {
lines.push(`### ${report.agent.name} (${report.agent.role})`)
if (report.completedToday.length > 0) {
lines.push('**Completed Today:**')
report.completedToday.forEach(task => {
lines.push(`- ${task.title}`)
})
}
if (report.inProgress.length > 0) {
lines.push('**In Progress:**')
report.inProgress.forEach(task => {
lines.push(`- ${task.title}`)
})
}
if (report.blocked.length > 0) {
lines.push('**Blocked:**')
report.blocked.forEach(task => {
lines.push(`- [${task.priority.toUpperCase()}] ${task.title}`)
})
}
lines.push('')
})
const text = lines.join('\n')
const blob = new Blob([text], { type: 'text/markdown' })
const url = URL.createObjectURL(blob)
const a = document.createElement('a')
a.href = url
a.download = `standup-${standupReport.date}.md`
document.body.appendChild(a)
a.click()
document.body.removeChild(a)
URL.revokeObjectURL(url)
}
return (
<div className="h-full flex flex-col">
{/* Header */}
<div className="flex justify-between items-center p-4 border-b border-border flex-shrink-0">
<h2 className="text-xl font-bold text-foreground">{t('title')}</h2>
<div className="flex items-center gap-3">
{/* View Toggle */}
<div className="flex bg-secondary rounded-lg p-1">
<Button
onClick={() => setView('current')}
variant={view === 'current' ? 'default' : 'ghost'}
size="sm"
>
{t('viewCurrent')}
</Button>
<Button
onClick={() => setView('history')}
variant={view === 'history' ? 'default' : 'ghost'}
size="sm"
>
{t('viewHistory')}
</Button>
</div>
{view === 'current' && (
<>
<input
type="date"
value={selectedDate}
onChange={(e) => setSelectedDate(e.target.value)}
className="bg-surface-1 text-foreground rounded-md px-3 py-1.5 text-sm focus:outline-none focus:ring-1 focus:ring-primary/50 border border-border"
/>
<Button
onClick={() => generateStandup()}
disabled={loading}
size="sm"
className="flex items-center gap-2"
>
{loading && <div className="animate-spin rounded-full h-3.5 w-3.5 border-2 border-primary-foreground/30 border-t-primary-foreground" />}
{loading ? t('generating') : t('generate')}
</Button>
{standupReport && (
<Button
onClick={exportStandup}
variant="success"
size="sm"
>
{t('export')}
</Button>
)}
</>
)}
</div>
</div>
{/* Error Display */}
{error && (
<div className="bg-red-500/10 border border-red-500/20 text-red-400 p-3 m-4 rounded-lg text-sm flex items-center justify-between">
<span>{error}</span>
<Button onClick={() => setError(null)} variant="ghost" size="icon-xs" className="text-red-400/60 hover:text-red-400 ml-2 w-5 h-5">×</Button>
</div>
)}
{/* Content */}
<div className="flex-1 overflow-y-auto">
{view === 'current' ? (
// Current Standup View
standupReport ? (
<div className="p-4 space-y-6">
{/* Report Header */}
<div className="bg-card rounded-lg p-4 border border-border">
<h3 className="text-lg font-semibold text-foreground mb-2">
{t('standupFor', { date: formatDate(standupReport.date) })}
</h3>
<p className="text-muted-foreground text-sm">
{t('generatedOn', { date: new Date(standupReport.generatedAt).toLocaleString() })}
</p>
</div>
{/* Summary Stats */}
<div className="grid grid-cols-2 md:grid-cols-4 gap-4">
<div className="bg-card rounded-lg p-4 border border-border text-center">
<div className="text-2xl font-bold text-foreground">{standupReport.summary.totalCompleted}</div>
<div className="text-sm text-green-400">{t('statCompleted')}</div>
</div>
<div className="bg-card rounded-lg p-4 border border-border text-center">
<div className="text-2xl font-bold text-foreground">{standupReport.summary.totalInProgress}</div>
<div className="text-sm text-yellow-400">{t('statInProgress')}</div>
</div>
<div className="bg-card rounded-lg p-4 border border-border text-center">
<div className="text-2xl font-bold text-foreground">{standupReport.summary.totalBlocked}</div>
<div className="text-sm text-red-400">{t('statBlocked')}</div>
</div>
<div className="bg-card rounded-lg p-4 border border-border text-center">
<div className="text-2xl font-bold text-foreground">{standupReport.summary.overdue}</div>
<div className="text-sm text-orange-400">{t('statOverdue')}</div>
</div>
</div>
{/* Team Accomplishments */}
{standupReport.teamAccomplishments.length > 0 && (
<div className="bg-card rounded-lg p-4 border border-border">
<h4 className="text-lg font-semibold text-foreground mb-3">🎉 {t('teamAccomplishments')}</h4>
<div className="space-y-2">
{standupReport.teamAccomplishments.map(task => (
<div key={task.id} className="flex justify-between items-center p-2 bg-green-900/20 rounded border-l-4 border-green-500">
<span className="text-foreground">{task.title}</span>
<span className="text-green-400 text-sm">{task.agent}</span>
</div>
))}
</div>
</div>
)}
{/* Team Blockers */}
{standupReport.teamBlockers.length > 0 && (
<div className="bg-card rounded-lg p-4 border border-border">
<h4 className="text-lg font-semibold text-foreground mb-3">🚫 {t('teamBlockers')}</h4>
<div className="space-y-2">
{standupReport.teamBlockers.map(task => (
<div key={task.id} className="flex justify-between items-center p-2 bg-red-900/20 rounded border-l-4 border-red-500">
<div>
<span className="text-foreground">{task.title}</span>
<span className={`ml-2 text-sm ${getPriorityColor(task.priority)}`}>
[{task.priority.toUpperCase()}]
</span>
</div>
<span className="text-red-400 text-sm">{task.agent}</span>
</div>
))}
</div>
</div>
)}
{/* Overdue Tasks */}
{standupReport.overdueTasks.length > 0 && (
<div className="bg-card rounded-lg p-4 border border-border">
<h4 className="text-lg font-semibold text-foreground mb-3">⏰ {t('overdueTasks')}</h4>
<div className="space-y-2">
{standupReport.overdueTasks.map(task => (
<div key={task.id} className="flex justify-between items-center p-2 bg-orange-900/20 rounded border-l-4 border-orange-500">
<div>
<span className="text-foreground">{task.title}</span>
<span className="text-orange-400 text-sm ml-2">
(Due: {new Date(task.due_date * 1000).toLocaleDateString()})
</span>
</div>
<span className="text-orange-400 text-sm">{task.agent_name || t('unassigned')}</span>
</div>
))}
</div>
</div>
)}
{/* Individual Agent Reports */}
<div className="space-y-4">
<h4 className="text-lg font-semibold text-foreground">👥 {t('individualReports')}</h4>
{standupReport.agentReports.map(report => (
<div key={report.agent.name} className="bg-card rounded-lg p-4 border border-border">
<div className="flex justify-between items-start mb-4">
<div>
<h5 className="font-semibold text-foreground">{report.agent.name}</h5>
<p className="text-muted-foreground text-sm">{report.agent.role}</p>
</div>
<div className="text-right text-sm">
<div className="text-muted-foreground">{t('activitySummary', { actions: report.activity.actionCount, comments: report.activity.commentsCount })}</div>
{report.agent.last_activity && (
<div className="text-muted-foreground/50">{report.agent.last_activity}</div>
)}
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4">
{/* Completed Today */}
<div>
<h6 className="text-green-400 font-medium mb-2">✅ {t('sectionCompleted', { count: report.completedToday.length })}</h6>
<div className="space-y-1">
{report.completedToday.map(task => (
<div key={task.id} className="text-sm text-foreground/80 truncate" title={task.title}>
{task.title}
</div>
))}
{report.completedToday.length === 0 && (
<div className="text-sm text-muted-foreground/50 italic">{t('none')}</div>
)}
</div>
</div>
{/* In Progress */}
<div>
<h6 className="text-yellow-400 font-medium mb-2">🔄 {t('sectionInProgress', { count: report.inProgress.length })}</h6>
<div className="space-y-1">
{report.inProgress.map(task => (
<div key={task.id} className="text-sm text-foreground/80 truncate" title={task.title}>
{task.title}
</div>
))}
{report.inProgress.length === 0 && (
<div className="text-sm text-muted-foreground/50 italic">{t('none')}</div>
)}
</div>
</div>
{/* Assigned */}
<div>
<h6 className="text-blue-400 font-medium mb-2">📋 {t('sectionAssigned', { count: report.assigned.length })}</h6>
<div className="space-y-1">
{report.assigned.map(task => (
<div key={task.id} className="text-sm text-foreground/80">
<div className="truncate" title={task.title}>{task.title}</div>
<div className={`text-xs ${getPriorityColor(task.priority)}`}>
[{task.priority}]
</div>
</div>
))}
{report.assigned.length === 0 && (
<div className="text-sm text-muted-foreground/50 italic">{t('none')}</div>
)}
</div>
</div>
{/* Blocked */}
<div>
<h6 className="text-red-400 font-medium mb-2">🚫 {t('sectionBlocked', { count: report.blocked.length })}</h6>
<div className="space-y-1">
{report.blocked.map(task => (
<div key={task.id} className="text-sm text-foreground/80">
<div className="truncate" title={task.title}>{task.title}</div>
<div className={`text-xs ${getPriorityColor(task.priority)}`}>
[{task.priority}]
</div>
</div>
))}
{report.blocked.length === 0 && (
<div className="text-sm text-muted-foreground/50 italic">{t('none')}</div>
)}
</div>
</div>
</div>
</div>
))}
</div>
</div>
) : (
// Empty state for current view
<div className="flex flex-col items-center justify-center h-full text-center">
<div className="w-14 h-14 rounded-lg bg-surface-2 flex items-center justify-center mx-auto mb-4">
<svg width="24" height="24" viewBox="0 0 16 16" fill="none" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" className="text-muted-foreground/40">
<path d="M2 12V4h3l2-2h2l2 2h3v8H2z" />
<path d="M5 8h6M8 5v6" />
</svg>
</div>
<h3 className="text-lg font-semibold text-foreground mb-2">{t('noStandupGenerated')}</h3>
<p className="text-sm text-muted-foreground mb-4">{t('selectDatePrompt')}</p>
<Button
onClick={() => generateStandup()}
disabled={loading}
>
{t('generateToday')}
</Button>
</div>
)
) : (
// History View
<div className="p-4">
{standupHistory.length === 0 ? (
<div className="flex flex-col items-center justify-center py-12 text-muted-foreground/50">
<svg width="24" height="24" viewBox="0 0 16 16" fill="none" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" className="mb-2">
<rect x="3" y="2" width="10" height="12" rx="1" />
<path d="M6 5h4M6 8h4M6 11h2" />
</svg>
<p className="text-sm">{t('noHistory')}</p>
</div>
) : (
<div className="space-y-4">
{standupHistory.map(history => (
<div key={history.id} className="bg-card rounded-lg p-4 border border-border hover:bg-surface-1 transition-smooth">
<div className="flex justify-between items-start">
<div>
<h4 className="text-foreground font-medium">{formatDate(history.date)}</h4>
<p className="text-muted-foreground text-sm">
{t('historyGenerated', { date: new Date(history.generatedAt).toLocaleString() })}
</p>
<p className="text-muted-foreground text-sm">
{t('historyAgentsParticipated', { count: history.agentCount })}
</p>
</div>
<div className="text-right">
{history.summary && (
<div className="text-sm text-muted-foreground">
<div>{t('historyCompleted', { count: history.summary.completed || 0 })}</div>
<div>{t('historyInProgress', { count: history.summary.inProgress || 0 })}</div>
<div>{t('historyBlocked', { count: history.summary.blocked || 0 })}</div>
</div>
)}
</div>
</div>
</div>
))}
</div>
)}
</div>
)}
</div>
</div>
)
}