From 0ce1bf5ebc457a19d37a2d2357ec41276b469e80 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Tue, 31 Mar 2020 20:56:34 -0500 Subject: [PATCH] Added sync database integration --- .../Account/CloudKit/CloudKitAccountDelegate.swift | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Frameworks/Account/CloudKit/CloudKitAccountDelegate.swift b/Frameworks/Account/CloudKit/CloudKitAccountDelegate.swift index d0a1c0262..2521a4ff3 100644 --- a/Frameworks/Account/CloudKit/CloudKitAccountDelegate.swift +++ b/Frameworks/Account/CloudKit/CloudKitAccountDelegate.swift @@ -337,6 +337,17 @@ final class CloudKitAccountDelegate: AccountDelegate { } func markArticles(for account: Account, articles: Set
, statusKey: ArticleStatus.Key, flag: Bool) -> Set
? { + let syncStatuses = articles.map { article in + return SyncStatus(articleID: article.articleID, key: statusKey, flag: flag) + } + database.insertStatuses(syncStatuses) + + database.selectPendingCount { result in + if let count = try? result.get(), count > 100 { + self.sendArticleStatus(for: account) { _ in } + } + } + return try? account.update(articles, statusKey: statusKey, flag: flag) } @@ -377,10 +388,11 @@ final class CloudKitAccountDelegate: AccountDelegate { } func suspendDatabase() { - // Nothing to do + database.suspend() } func resume() { refresher.resume() + database.resume() } }