Эх сурвалжийг харах

normalized

Signed-off-by: Marino Faggiana <marino@marinofaggiana.com>
Marino Faggiana 2 жил өмнө
parent
commit
f127dc8606

+ 12 - 4
Widget/Dashboard/DashboardData.swift

@@ -111,8 +111,16 @@ func getDashboardDataEntry(isPreview: Bool, displaySize: CGSize, completion: @es
         NKCommon.shared.writeLog("Start \(NCBrandOptions.shared.brand) dashboard widget session with level \(levelLog) " + versionNextcloudiOS)
     }
     
-    let datas = [DashboardData]()
-    
-    completion(DashboardDataEntry(date: Date(), datas: datas, isPlaceholder: false, title: getTitleDashboard(), footerImage: "checkmark.icloud", footerText: NCBrandOptions.shared.brand + " dashboard"))
-    
+    NextcloudKit.shared.getDashboard { account, dashboardResults, json, error in
+        
+        var datas = [DashboardData]()
+        
+        if error != .success {
+            completion(DashboardDataEntry(date: Date(), datas: datasPlaceholder, isPlaceholder: true, title: getTitleDashboard(), footerImage: "xmark.icloud", footerText: error.errorDescription))
+        } else if datas.isEmpty {
+            completion(DashboardDataEntry(date: Date(), datas: datasPlaceholder, isPlaceholder: true, title: getTitleDashboard(), footerImage: "checkmark.icloud", footerText: NCBrandOptions.shared.brand + " dashboard"))
+        } else {
+            completion(DashboardDataEntry(date: Date(), datas: datas, isPlaceholder: false, title: getTitleDashboard(), footerImage: "checkmark.icloud", footerText: NCBrandOptions.shared.brand + " dashboard"))
+        }
+    }
 }

+ 1 - 2
Widget/Nextcloud/NextcloudData.swift

@@ -169,8 +169,8 @@ func getNextcloudDataEntry(isPreview: Bool, displaySize: CGSize, completion: @es
     
     NextcloudKit.shared.searchBodyRequest(serverUrl: account.urlBase, requestBody: requestBody, showHiddenFiles: CCUtility.getShowHiddenFiles()) { _, files, error in
 
-        // Get recent files
         var datas: [NextcloudRecentData] = []
+        
         for file in files {
             guard !file.directory else { continue }
             guard !isLive(file: file, files: files) else { continue }
@@ -196,7 +196,6 @@ func getNextcloudDataEntry(isPreview: Bool, displaySize: CGSize, completion: @es
             if datas.count == nextcloudItems { break}
         }
 
-        // Completion
         if error != .success {
             completion(NextcloudDataEntry(date: Date(), datas: datasPlaceholder, isPlaceholder: true, footerImage: "xmark.icloud", footerText: error.errorDescription))
         } else if datas.isEmpty {