Browse Source

improved widget

Signed-off-by: Marino Faggiana <marino@marinofaggiana.com>
Marino Faggiana 2 years ago
parent
commit
e1919eb2b2
2 changed files with 10 additions and 12 deletions
  1. 4 8
      Widget/Nextcloud/NextcloudData.swift
  2. 6 4
      Widget/Nextcloud/NextcloudWidgetView.swift

+ 4 - 8
Widget/Nextcloud/NextcloudData.swift

@@ -54,8 +54,8 @@ let recentDatasTest: [RecentData] = [
 
 func getNumberItems(height: CGFloat) -> Int {
     
-    let num: Int = Int((height - 120) / 40)
-    return num
+    //let num: Int = Int((height - 120) / 40)
+    return 4
 }
 
 func getDataEntry(isPreview: Bool, displaySize: CGSize, completion: @escaping (_ entry: NextcloudDataEntry) -> Void) {
@@ -205,17 +205,13 @@ func getDataEntry(isPreview: Bool, displaySize: CGSize, completion: @escaping (_
             if recentDatas.count == numItems { break}
         }
 
-        let fileInUpload = NCManageDatabase.shared.getNumMetadatasInUpload()
-        let footerText = (fileInUpload == 0) ? "last update \(Date().formatted())"  : "\(fileInUpload) files in uploading"
-        let footerImage = (fileInUpload == 0) ? "checkmark.icloud" : "arrow.triangle.2.circlepath"
-
         // Completion
         if error != .success {
             completion(NextcloudDataEntry(date: Date(), recentDatas: recentDatasPlaceholder, isPlaceholder: true, footerImage: "xmark.icloud", footerText: error.errorDescription))
         } else if recentDatas.isEmpty {
-            completion(NextcloudDataEntry(date: Date(), recentDatas: recentDatasPlaceholder, isPlaceholder: true, footerImage: footerImage, footerText: footerText))
+            completion(NextcloudDataEntry(date: Date(), recentDatas: recentDatasPlaceholder, isPlaceholder: true, footerImage: "checkmark.icloud", footerText: NCBrandOptions.shared.brand))
         } else {
-            completion(NextcloudDataEntry(date: Date(), recentDatas: recentDatas, isPlaceholder: false, footerImage: footerImage, footerText: footerText))
+            completion(NextcloudDataEntry(date: Date(), recentDatas: recentDatas, isPlaceholder: false, footerImage: "checkmark.icloud", footerText: NCBrandOptions.shared.brand))
         }
     }
 }

+ 6 - 4
Widget/Nextcloud/NextcloudWidgetView.swift

@@ -34,6 +34,7 @@ struct NextcloudWidgetView: View {
             
             ZStack(alignment: .topLeading) {
                 
+                /*
                 HStack(spacing: 5) {
                     
                     Text(NCBrandOptions.shared.brand)
@@ -43,6 +44,7 @@ struct NextcloudWidgetView: View {
                 }
                 .padding(.leading, 10)
                 .padding(.top, 10)
+                */
                 
                 VStack(alignment: .leading) {
                     
@@ -64,7 +66,7 @@ struct NextcloudWidgetView: View {
                                         .scaledToFill()
                                         .frame(width: imageSize+addSizeIcon, height: imageSize+addSizeIcon)
                                         .clipped()
-                                        .cornerRadius(4)
+                                        .cornerRadius(5)
                                     
                                     VStack(alignment: .leading, spacing: spacing) {
                                         
@@ -86,7 +88,7 @@ struct NextcloudWidgetView: View {
                         }
                     }
                 }
-                .padding(.top, 35)
+                .padding(.top, 10)
                 .redacted(reason: entry.isPlaceholder ? .placeholder : [])
 
                 HStack(spacing: 0) {
@@ -139,7 +141,7 @@ struct NextcloudWidgetView: View {
                             .frame(width: geo.size.width / 4, height: 50)
                     })
                 }
-                .frame(width: geo.size.width, height: geo.size.height - 25, alignment: .bottomTrailing)
+                .frame(width: geo.size.width, height: geo.size.height - 35, alignment: .bottomTrailing)
                 .redacted(reason: entry.isPlaceholder ? .placeholder : [])
 
                 HStack {
@@ -162,7 +164,7 @@ struct NextcloudWidgetView: View {
 
 struct NextcloudWidget_Previews: PreviewProvider {
     static var previews: some View {
-        let recentDatas = Array(recentDatasTest[0...4])
+        let recentDatas = Array(recentDatasTest[0...3])
         let entry = NextcloudDataEntry(date: Date(), recentDatas: recentDatas, isPlaceholder: false, footerImage: "checkmark.icloud", footerText: "Nextcloud widget")
         NextcloudWidgetView(entry: entry).previewContext(WidgetPreviewContext(family: .systemLarge))
     }