feat(ios): tab tabanlı navigasyon ve okuma durumu takibi ekle

This commit is contained in:
2026-02-11 18:26:17 +03:00
parent 52212f015b
commit 362b9b7d1b
16 changed files with 976 additions and 442 deletions

View File

@@ -37,7 +37,9 @@ final class BookDetailViewModel: ObservableObject {
summary: book.description,
language: book.language,
sourceLocale: book.sourceLocale,
remotePayloadJson: nil
remotePayloadJson: nil,
statusRaw: (book.readingStatus ?? .wantToRead).rawValue,
readingProgress: book.readingProgress ?? 0
)
context.insert(local)
isInLibrary = true

View File

@@ -55,7 +55,9 @@ final class HomeViewModel: ObservableObject {
language: local.language,
description: local.summary,
categories: local.categories,
sourceLocale: local.sourceLocale
sourceLocale: local.sourceLocale,
readingStatus: local.status,
readingProgress: local.readingProgressValue
)
}
}