Complete semantic color token migration for background and border variants: - bg-kodo-red → bg-destructive - border-kodo-red → border-destructive - bg-kodo-lime → bg-success - border-kodo-lime → border-success Covers UI primitives (badge, alert), forms, settings, social, playlists, admin, education, and marketplace components. Co-authored-by: Cursor <cursoragent@cursor.com>
138 lines
4.9 KiB
TypeScript
138 lines
4.9 KiB
TypeScript
import React, { useState, useEffect } from 'react';
|
|
import { Card } from '../../ui/card';
|
|
import { Button } from '../../ui/button';
|
|
import { Smartphone, Monitor, Clock } from 'lucide-react';
|
|
import { useToast } from '../../../components/feedback/ToastProvider';
|
|
import { sessionService, Session } from '../../../services/sessionService';
|
|
import { logger } from '@/utils/logger';
|
|
|
|
export const SessionManagement: React.FC = () => {
|
|
const { addToast } = useToast();
|
|
const [sessions, setSessions] = useState<Session[]>([]);
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
useEffect(() => {
|
|
loadSessions();
|
|
}, []);
|
|
|
|
const loadSessions = async () => {
|
|
try {
|
|
setLoading(true);
|
|
const res = await sessionService.getSessions();
|
|
setSessions(res.sessions);
|
|
} catch (error) {
|
|
logger.error('Error loading sessions', {
|
|
error: error instanceof Error ? error.message : String(error),
|
|
stack: error instanceof Error ? error.stack : undefined,
|
|
});
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
const handleRevoke = async (id: string) => {
|
|
try {
|
|
await sessionService.revokeSession(id);
|
|
setSessions((prev) => prev.filter((s) => s.id !== id));
|
|
addToast('Session revoked successfully', 'success');
|
|
} catch (error) {
|
|
addToast('Failed to revoke session', 'error');
|
|
}
|
|
};
|
|
|
|
const handleRevokeAll = async () => {
|
|
try {
|
|
await sessionService.logoutAll();
|
|
// Ideally reload or clear all except current, but for safety re-fetch
|
|
loadSessions();
|
|
addToast('All other sessions have been logged out', 'success');
|
|
} catch (error) {
|
|
addToast('Failed to log out all devices', 'error');
|
|
}
|
|
};
|
|
|
|
if (loading)
|
|
return (
|
|
<div className="text-center p-4 text-muted-foreground">Loading sessions...</div>
|
|
);
|
|
|
|
return (
|
|
<Card variant="default">
|
|
<div className="flex justify-between items-center mb-6">
|
|
<div>
|
|
<h3 className="text-xl font-bold text-white">Active Sessions</h3>
|
|
<p className="text-sm text-muted-foreground">
|
|
Manage devices logged into your account.
|
|
</p>
|
|
</div>
|
|
<Button
|
|
variant="ghost"
|
|
className="text-destructive hover:bg-destructive/10 border-destructive/30"
|
|
onClick={handleRevokeAll}
|
|
>
|
|
Log Out All Other Devices
|
|
</Button>
|
|
</div>
|
|
|
|
<div className="space-y-4">
|
|
{sessions.map((session) => {
|
|
// Simple heuristics for icon since backend might not provide device type explicitly yet
|
|
const isMobile = session.user_agent.toLowerCase().includes('mobile');
|
|
return (
|
|
<div
|
|
key={session.id}
|
|
className="flex flex-col md:flex-row md:items-center justify-between p-4 bg-card rounded-xl border border-border hover:border-border/50 transition-colors"
|
|
>
|
|
<div className="flex items-start gap-4">
|
|
<div
|
|
className={`p-4 rounded-full ${session.is_current ? 'bg-primary/10 text-primary' : 'bg-muted text-muted-foreground'}`}
|
|
>
|
|
{isMobile ? (
|
|
<Smartphone className="w-6 h-6" />
|
|
) : (
|
|
<Monitor className="w-6 h-6" />
|
|
)}
|
|
</div>
|
|
<div>
|
|
<div className="flex items-center gap-2">
|
|
<h4 className="font-bold text-white text-sm">
|
|
{session.ip_address}
|
|
</h4>
|
|
{session.is_current && (
|
|
<span className="bg-success/10 text-success text-xs px-2 py-0.5 rounded border border-success/30 font-bold">
|
|
CURRENT DEVICE
|
|
</span>
|
|
)}
|
|
</div>
|
|
<p className="text-xs text-muted-foreground mt-1 truncate max-w-xs">
|
|
{session.user_agent}
|
|
</p>
|
|
<div className="flex items-center gap-4 mt-2 text-xs text-muted-foreground">
|
|
<span className="flex items-center gap-1">
|
|
<Clock className="w-3 h-3" /> Active:{' '}
|
|
{new Date(session.last_activity).toLocaleString()}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{!session.is_current && (
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
className="mt-4 md:mt-0 text-muted-foreground hover:text-foreground border border-border hover:bg-muted"
|
|
onClick={() => handleRevoke(session.id)}
|
|
>
|
|
Revoke Access
|
|
</Button>
|
|
)}
|
|
</div>
|
|
);
|
|
})}
|
|
{sessions.length === 0 && (
|
|
<p className="text-center text-muted-foreground text-sm py-8">No active sessions found.</p>
|
|
)}
|
|
</div>
|
|
</Card>
|
|
);
|
|
};
|