Compare commits

...

2 Commits

Author SHA1 Message Date
d705e37d85 feat(ui): toast bildirim sistemini ekle
Toast bileşeni ve store oluşturuldu. Ayarlar sayfasındaki işlem bildirimleri yeni sistemle gösterilmeye başlandı.
2026-02-03 12:34:49 +03:00
2f3dc72dcc chore(rclone): mailru transfer eşleşme debug logu ekle
MailRu yüklemelerinde transfer eşleşmesi bulunamadığında sorunun
teşhisi için job ve transfer detaylarını içeren uyarı logu eklendi.
2026-02-03 12:03:48 +03:00
5 changed files with 128 additions and 28 deletions

View File

@@ -4,6 +4,7 @@
import Sidebar from "./components/Sidebar.svelte";
import Topbar from "./components/Topbar.svelte";
import MiniPlayer from "./components/MiniPlayer.svelte";
import Toast from "./components/Toast.svelte";
import Files from "./routes/Files.svelte";
import Transfers from "./routes/Transfers.svelte";
import Trash from "./routes/Trash.svelte";
@@ -163,6 +164,7 @@
</div>
<MiniPlayer />
<Toast />
<!-- Sidebar dışına tıklayınca kapanma -->
{#if menuOpen}

View File

@@ -0,0 +1,86 @@
<script>
import { toast } from '../stores/toastStore.js';
import { fade } from 'svelte/transition';
let toastData = {
message: null,
type: 'success',
visible: false
};
toast.subscribe(value => {
toastData = value;
});
const icons = {
success: 'fa-solid fa-circle-check',
error: 'fa-solid fa-circle-exclamation',
info: 'fa-solid fa-circle-info'
};
</script>
{#if toastData.visible && toastData.message}
<div class="toast-container" transition:fade={{ duration: 200 }}>
<div class="toast {toastData.type}">
<i class="{icons[toastData.type] || icons.info}"></i>
<span>{toastData.message}</span>
</div>
</div>
{/if}
<style>
.toast-container {
position: fixed;
bottom: 24px;
right: 24px;
z-index: 9999;
max-width: min(350px, 90vw);
}
.toast {
display: flex;
align-items: center;
gap: 12px;
padding: 14px 18px;
border-radius: 10px;
font-size: 14px;
font-weight: 500;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.toast i {
font-size: 18px;
flex-shrink: 0;
}
.toast.success {
background: linear-gradient(135deg, rgba(0, 200, 83, 0.95), rgba(0, 150, 63, 0.95));
color: white;
}
.toast.error {
background: linear-gradient(135deg, rgba(220, 38, 38, 0.95), rgba(185, 28, 28, 0.95));
color: white;
}
.toast.info {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(37, 99, 235, 0.95));
color: white;
}
@media (max-width: 640px) {
.toast-container {
bottom: 16px;
right: 16px;
left: 16px;
max-width: none;
}
.toast {
padding: 12px 16px;
font-size: 13px;
}
}
</style>

View File

@@ -1,6 +1,7 @@
<script>
import { onMount } from "svelte";
import { apiFetch } from "../utils/api.js";
import { showToast } from "../stores/toastStore.js";
const tabs = [
{ id: "general", label: "General", icon: "fa-solid fa-sliders" },
@@ -20,7 +21,6 @@
let onlyAudio = false;
const resolutionOptions = ["1080p", "720p", "480p", "360p", "240p", "144p"];
let error = null;
let success = null;
let rcloneStatus = null;
let rcloneLoading = false;
@@ -34,7 +34,6 @@
async function loadCookies() {
loadingCookies = true;
error = null;
success = null;
try {
const resp = await apiFetch("/api/youtube/cookies");
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
@@ -51,7 +50,6 @@
async function saveCookies() {
if (savingCookies) return;
error = null;
success = null;
savingCookies = true;
try {
const payload = {
@@ -71,7 +69,7 @@
throw new Error(data?.error || `HTTP ${resp.status}`);
}
cookiesUpdatedAt = data.updatedAt || Date.now();
success = "Cookies kaydedildi.";
showToast("Cookies kaydedildi.", "success");
} catch (err) {
error = err?.message || "Cookies kaydedilemedi.";
} finally {
@@ -99,7 +97,6 @@
if (savingYtSettings) return;
savingYtSettings = true;
error = null;
success = null;
try {
const resp = await apiFetch("/api/youtube/settings", {
method: "POST",
@@ -113,7 +110,7 @@
if (!resp.ok || !data?.ok) {
throw new Error(data?.error || `HTTP ${resp.status}`);
}
success = "YouTube indirme ayarları kaydedildi.";
showToast("YouTube indirme ayarları kaydedildi.", "success");
} catch (err) {
error = err?.message || "YouTube ayarları kaydedilemedi.";
} finally {
@@ -156,7 +153,6 @@
if (rcloneSaving) return;
rcloneSaving = true;
error = null;
success = null;
try {
const resp = await apiFetch("/api/rclone/settings", {
method: "POST",
@@ -180,7 +176,7 @@
if (!confResp.ok || !confData?.ok) {
throw new Error(confData?.error || `HTTP ${confResp.status}`);
}
success = "Rclone ayarları kaydedildi.";
showToast("Rclone ayarları kaydedildi.", "success");
await loadRcloneStatus();
} catch (err) {
error = err?.message || "Rclone ayarları kaydedilemedi.";
@@ -191,7 +187,6 @@
async function startRcloneMount() {
error = null;
success = null;
try {
const resp = await apiFetch("/api/rclone/mount", { method: "POST" });
const data = await resp.json().catch(() => ({}));
@@ -200,16 +195,16 @@
}
// Mount başlatıldı, birkaç saniye bekleyip tekrar kontrol et
success = "Rclone mount başlatılıyor...";
showToast("Rclone mount başlatılıyor...", "info");
// 2 saniye sonra status güncelle
setTimeout(async () => {
await loadRcloneStatus();
// Status yüklendikten sonra mesajı güncelle
if (rcloneStatus?.mounted) {
success = "Rclone mount başarıyla başlatıldı.";
showToast("Rclone mount başarıyla başlatıldı.", "success");
} else if (rcloneStatus?.running) {
success = "Rclone mount başlatıldı, mount tamamlanıyor...";
showToast("Rclone mount başlatıldı, mount tamamlanıyor...", "info");
} else {
error = "Rclone mount başlatılamadı.";
}
@@ -224,14 +219,13 @@
async function stopRcloneMount() {
error = null;
success = null;
try {
const resp = await apiFetch("/api/rclone/unmount", { method: "POST" });
const data = await resp.json().catch(() => ({}));
if (!resp.ok || !data?.ok) {
throw new Error(data?.error || `HTTP ${resp.status}`);
}
success = "Rclone mount durduruldu.";
showToast("Rclone mount durduruldu.", "success");
await loadRcloneStatus();
} catch (err) {
error = err?.message || "Rclone mount durdurulamadı.";
@@ -240,14 +234,13 @@
async function cleanRcloneCache() {
error = null;
success = null;
try {
const resp = await apiFetch("/api/rclone/cache/clean", { method: "POST" });
const data = await resp.json().catch(() => ({}));
if (!resp.ok || !data?.ok) {
throw new Error(data?.error || `HTTP ${resp.status}`);
}
success = "Cache temizlendi.";
showToast("Cache temizlendi.", "success");
} catch (err) {
error = err?.message || "Cache temizlenemedi.";
}
@@ -371,12 +364,6 @@
{error}
</div>
{/if}
{#if success}
<div class="alert success">
<i class="fa-solid fa-circle-check"></i>
{success}
</div>
{/if}
</div>
{:else if activeTab === "general"}
<div class="card muted">Genel ayarlar burada yer alacak.</div>
@@ -456,12 +443,6 @@
{error}
</div>
{/if}
{#if success}
<div class="alert success" style="margin-top:10px;">
<i class="fa-solid fa-circle-check"></i>
{success}
</div>
{/if}
</div>
<!-- Mount Kontrol Kartı -->

View File

@@ -0,0 +1,24 @@
import { writable } from 'svelte/store';
export const toast = writable({
message: null,
type: 'success', // success, error, info
visible: false
});
let toastTimeout = null;
export function showToast(message, type = 'success', duration = 3000) {
// Önceki toast'ı temizle
if (toastTimeout) {
clearTimeout(toastTimeout);
}
// Yeni toast'ı göster
toast.update({ message, type, visible: true });
// Belirli süre sonra gizle
toastTimeout = setTimeout(() => {
toast.update({ message: null, type: 'success', visible: false });
}, duration);
}

View File

@@ -922,6 +922,13 @@ function updateMoveProgressFromStats(stats) {
RCLONE_REMOTE_PATH ? `${RCLONE_REMOTE_PATH}/${relRoot}` : null
];
if (relRoot) {
// Debug: MailRu transfer eşleşmesi
const matched = transfers.filter((t) =>
prefixes.filter(Boolean).some((p) => String(t.name || "").includes(p))
);
if (job.moveStatus === "uploading" && matched.length === 0) {
console.log(`⚠️ MailRu transfer eşleşme yok: job=${job.fileName}, relRoot=${relRoot}, prefixes=${JSON.stringify(prefixes)}, transfers=${transfers.map(t => t.name).join(",")}`);
}
applyProgress(job, prefixes, relRoot);
}
}