working leantime widget 132

This commit is contained in:
Alma 2025-04-12 23:23:36 +02:00
parent 99408bfc73
commit f00089de74

View File

@ -147,10 +147,10 @@ export function Flow() {
const dateStr = task.dateToFinish;
if (!dateStr || dateStr === '0000-00-00 00:00:00') {
return (
<>
<span className="text-xs text-gray-600 font-medium">NO</span>
<span className="text-lg text-gray-700 font-bold">DATE</span>
</>
<div className="flex flex-col items-center">
<span className="text-[10px] text-gray-600 font-medium">NO</span>
<span className="text-sm text-gray-700 font-bold">DATE</span>
</div>
);
}
@ -171,14 +171,14 @@ export function Flow() {
return (
<div className="flex flex-col items-center">
<div className="flex flex-col items-center">
<span className={`text-xs font-medium uppercase ${isPastDue ? 'text-red-600' : 'text-blue-600'}`}>
<span className={`text-[10px] font-medium uppercase ${isPastDue ? 'text-red-600' : 'text-blue-600'}`}>
{month}
</span>
<span className={`text-lg font-bold ${isPastDue ? 'text-red-700' : 'text-blue-700'}`}>
<span className={`text-sm font-bold ${isPastDue ? 'text-red-700' : 'text-blue-700'}`}>
{day}
</span>
</div>
<span className={`text-[10px] font-medium ${isPastDue ? 'text-red-500' : 'text-blue-500'}`}>
<span className={`text-[8px] font-medium ${isPastDue ? 'text-red-500' : 'text-blue-500'}`}>
{year}
</span>
</div>
@ -186,10 +186,10 @@ export function Flow() {
} catch (error) {
console.error('Error formatting date for task', task.id, error);
return (
<>
<span className="text-xs text-gray-600 font-medium">ERR</span>
<span className="text-lg text-gray-700 font-bold">DATE</span>
</>
<div className="flex flex-col items-center">
<span className="text-[10px] text-gray-600 font-medium">ERR</span>
<span className="text-sm text-gray-700 font-bold">DATE</span>
</div>
);
}
};
@ -197,47 +197,47 @@ export function Flow() {
return (
<Card className="transition-transform duration-500 ease-in-out transform hover:scale-105 bg-white/95 backdrop-blur-sm border-0 shadow-lg">
<CardHeader className="flex flex-row items-center justify-between pb-2 border-b border-gray-100">
<CardTitle className="text-xl font-semibold text-gray-800">Flow</CardTitle>
<CardTitle className="text-lg font-semibold text-gray-800">Flow</CardTitle>
<Button
variant="ghost"
size="icon"
onClick={() => fetchTasks()}
className="h-8 w-8 p-0 hover:bg-gray-100/50 rounded-full"
className="h-7 w-7 p-0 hover:bg-gray-100/50 rounded-full"
>
<RefreshCw className="h-4 w-4 text-gray-600" />
<RefreshCw className="h-3.5 w-3.5 text-gray-600" />
</Button>
</CardHeader>
<CardContent className="p-4">
<CardContent className="p-3">
{loading ? (
<div className="flex items-center justify-center py-8">
<div className="h-5 w-5 animate-spin rounded-full border-2 border-blue-500 border-t-transparent" />
<div className="flex items-center justify-center py-6">
<div className="h-4 w-4 animate-spin rounded-full border-2 border-blue-500 border-t-transparent" />
</div>
) : error ? (
<div className="text-sm text-red-500 text-center py-4">{error}</div>
<div className="text-xs text-red-500 text-center py-3">{error}</div>
) : tasks.length === 0 ? (
<div className="text-sm text-gray-500 text-center py-8">No tasks with due dates found</div>
<div className="text-xs text-gray-500 text-center py-6">No tasks with due dates found</div>
) : (
<div className="space-y-3 max-h-[460px] overflow-y-auto pr-2 scrollbar-thin scrollbar-thumb-gray-200 scrollbar-track-transparent">
<div className="space-y-2 max-h-[400px] overflow-y-auto pr-1 scrollbar-thin scrollbar-thumb-gray-200 scrollbar-track-transparent">
{tasks.map((task) => (
<div
key={task.id}
className="p-3 rounded-xl bg-white shadow-sm hover:shadow-md transition-all duration-200 border border-gray-100"
className="p-2 rounded-lg bg-white shadow-sm hover:shadow-md transition-all duration-200 border border-gray-100"
>
<div className="flex gap-3">
<div className="flex-shrink-0 w-14 h-14 rounded-lg bg-blue-50 flex flex-col items-center justify-center border border-blue-100">
<div className="flex gap-2">
<div className="flex-shrink-0 w-12 h-12 rounded-lg bg-blue-50 flex flex-col items-center justify-center border border-blue-100">
<TaskDate task={task} />
</div>
<div className="flex-1 min-w-0 space-y-1.5">
<div className="flex-1 min-w-0 space-y-1">
<a
href={`https://agilite.slm-lab.net/tickets/showTicket/${task.id}`}
target="_blank"
rel="noopener noreferrer"
className="text-blue-600 hover:text-blue-700 font-medium block text-base line-clamp-2"
className="text-blue-600 hover:text-blue-700 font-medium block text-sm line-clamp-2"
>
{task.headline}
</a>
<div className="flex items-center text-gray-500 text-xs bg-gray-50 px-2 py-1 rounded-md">
<Folder className="h-3 w-3 mr-1.5 opacity-70" />
<div className="flex items-center text-gray-500 text-[10px] bg-gray-50 px-1.5 py-0.5 rounded-md">
<Folder className="h-2.5 w-2.5 mr-1 opacity-70" />
<span className="truncate">{task.projectName}</span>
</div>
</div>