feat(ui): çalışan durumu ve profil adı göstergeleri ekle
Torrent tablosunda aktif profil adı ve durum ikonları gösterilir. Döngü kurulum kartında çalışan profil durumu görüntülenir ve durdurma/çalıştırma butonu duruma göre değişir. Layout oranları ve responsive davranış iyileştirilir.
This commit is contained in:
@@ -7,16 +7,18 @@ import { LogsPanel } from "../components/loop/LogsPanel";
|
||||
export const DashboardPage = () => {
|
||||
return (
|
||||
<>
|
||||
<div className="grid grid-cols-1 gap-6 lg:grid-cols-[1.2fr_1fr]">
|
||||
<TorrentTable />
|
||||
<div className="space-y-4">
|
||||
<div className="grid w-full grid-cols-1 gap-6 lg:grid-cols-[1.3fr_0.7fr]">
|
||||
<div className="min-w-0">
|
||||
<TorrentTable />
|
||||
</div>
|
||||
<div className="min-w-0 space-y-4">
|
||||
<TorrentDetailsCard />
|
||||
<LoopStatsCard />
|
||||
<LoopSetupCard />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 gap-6">
|
||||
<div className="grid w-full grid-cols-1 gap-6">
|
||||
<LogsPanel />
|
||||
</div>
|
||||
</>
|
||||
|
||||
@@ -270,8 +270,8 @@ export const TimerPage = () => {
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="grid grid-cols-1 gap-6 lg:grid-cols-[1.25fr_0.9fr]">
|
||||
<div className="space-y-6">
|
||||
<div className="grid w-full grid-cols-1 gap-6 lg:grid-cols-[1.3fr_0.7fr]">
|
||||
<div className="min-w-0 space-y-6">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle className="flex items-center gap-2">
|
||||
@@ -310,7 +310,7 @@ export const TimerPage = () => {
|
||||
<div>Kural: {formatDuration(rule.seedLimitSeconds)}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-2 grid grid-cols-2 gap-2 text-xs text-slate-600">
|
||||
<div className="mt-2 flex items-center gap-1 text-xs text-slate-600">
|
||||
<div className="truncate">
|
||||
Hash: {torrent.hash.slice(0, 12)}...
|
||||
</div>
|
||||
@@ -375,7 +375,7 @@ export const TimerPage = () => {
|
||||
</Card>
|
||||
</div>
|
||||
|
||||
<div className="space-y-6">
|
||||
<div className="min-w-0 space-y-6">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle className="flex items-center gap-2">
|
||||
|
||||
Reference in New Issue
Block a user