Files
livedash-node/components/SessionDetails.tsx
Kaj Kowalski 93fbb44eec feat: comprehensive Biome linting fixes and code quality improvements
Major code quality overhaul addressing 58% of all linting issues:

• Type Safety Improvements:
  - Replace all any types with proper TypeScript interfaces
  - Fix Map component shadowing (renamed to CountryMap)
  - Add comprehensive custom error classes system
  - Enhance API route type safety

• Accessibility Enhancements:
  - Add explicit button types to all interactive elements
  - Implement useId() hooks for form element accessibility
  - Add SVG title attributes for screen readers
  - Fix static element interactions with keyboard handlers

• React Best Practices:
  - Resolve exhaustive dependencies warnings with useCallback
  - Extract nested component definitions to top level
  - Fix array index keys with proper unique identifiers
  - Improve component organization and prop typing

• Code Organization:
  - Automatic import organization and type import optimization
  - Fix unused function parameters and variables
  - Enhanced error handling with structured error responses
  - Improve component reusability and maintainability

Results: 248 → 104 total issues (58% reduction)
- Fixed all critical type safety and security issues
- Enhanced accessibility compliance significantly
- Improved code maintainability and performance
2025-06-29 07:35:45 +02:00

200 lines
6.7 KiB
TypeScript

"use client";
import { ExternalLink } from "lucide-react";
import { Badge } from "@/components/ui/badge";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Separator } from "@/components/ui/separator";
import { formatCategory } from "@/lib/format-enums";
import type { ChatSession } from "../lib/types";
import CountryDisplay from "./CountryDisplay";
import LanguageDisplay from "./LanguageDisplay";
interface SessionDetailsProps {
session: ChatSession;
}
/**
* Component to display session details with formatted country and language names
*/
export default function SessionDetails({ session }: SessionDetailsProps) {
// Using centralized formatCategory utility
return (
<Card>
<CardHeader>
<CardTitle>Session Information</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div className="space-y-3">
<div>
<p className="text-sm text-muted-foreground">Session ID</p>
<code className="text-sm font-mono bg-muted px-2 py-1 rounded">
{session.id.slice(0, 8)}...
</code>
</div>
<div>
<p className="text-sm text-muted-foreground">Start Time</p>
<p className="font-medium">
{new Date(session.startTime).toLocaleString()}
</p>
</div>
{session.endTime && (
<div>
<p className="text-sm text-muted-foreground">End Time</p>
<p className="font-medium">
{new Date(session.endTime).toLocaleString()}
</p>
</div>
)}
{session.category && (
<div>
<p className="text-sm text-muted-foreground">Category</p>
<Badge variant="secondary">
{formatCategory(session.category)}
</Badge>
</div>
)}
{session.language && (
<div>
<p className="text-sm text-muted-foreground">Language</p>
<div className="flex items-center gap-2">
<LanguageDisplay languageCode={session.language} />
<Badge variant="outline" className="text-xs">
{session.language.toUpperCase()}
</Badge>
</div>
</div>
)}
{session.country && (
<div>
<p className="text-sm text-muted-foreground">Country</p>
<div className="flex items-center gap-2">
<CountryDisplay countryCode={session.country} />
<Badge variant="outline" className="text-xs">
{session.country}
</Badge>
</div>
</div>
)}
</div>
<div className="space-y-3">
{session.sentiment !== null && session.sentiment !== undefined && (
<div>
<p className="text-sm text-muted-foreground">Sentiment</p>
<Badge
variant={
session.sentiment === "positive"
? "default"
: session.sentiment === "negative"
? "destructive"
: "secondary"
}
>
{session.sentiment.charAt(0).toUpperCase() +
session.sentiment.slice(1)}
</Badge>
</div>
)}
<div>
<p className="text-sm text-muted-foreground">Messages Sent</p>
<p className="font-medium">{session.messagesSent || 0}</p>
</div>
{session.avgResponseTime !== null &&
session.avgResponseTime !== undefined && (
<div>
<p className="text-sm text-muted-foreground">
Avg Response Time
</p>
<p className="font-medium">
{session.avgResponseTime.toFixed(2)}s
</p>
</div>
)}
{session.escalated !== null && session.escalated !== undefined && (
<div>
<p className="text-sm text-muted-foreground">Escalated</p>
<Badge variant={session.escalated ? "destructive" : "default"}>
{session.escalated ? "Yes" : "No"}
</Badge>
</div>
)}
{session.forwardedHr !== null &&
session.forwardedHr !== undefined && (
<div>
<p className="text-sm text-muted-foreground">
Forwarded to HR
</p>
<Badge
variant={session.forwardedHr ? "secondary" : "default"}
>
{session.forwardedHr ? "Yes" : "No"}
</Badge>
</div>
)}
{session.ipAddress && (
<div>
<p className="text-sm text-muted-foreground">IP Address</p>
<code className="text-sm font-mono bg-muted px-2 py-1 rounded">
{session.ipAddress}
</code>
</div>
)}
</div>
</div>
{(session.summary || session.initialMsg) && <Separator />}
{session.summary && (
<div>
<p className="text-sm text-muted-foreground mb-2">AI Summary</p>
<div className="bg-muted p-3 rounded-md text-sm">
{session.summary}
</div>
</div>
)}
{!session.summary && session.initialMsg && (
<div>
<p className="text-sm text-muted-foreground mb-2">
Initial Message
</p>
<div className="bg-muted p-3 rounded-md text-sm italic">
&quot;{session.initialMsg}&quot;
</div>
</div>
)}
{session.fullTranscriptUrl && (
<>
<Separator />
<div>
<a
href={session.fullTranscriptUrl}
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center gap-2 text-primary hover:underline focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-2 rounded-sm"
aria-label="Open full transcript in new tab"
>
<ExternalLink className="h-4 w-4" aria-hidden="true" />
View Full Transcript
</a>
</div>
</>
)}
</CardContent>
</Card>
);
}