FilesWidgetView.swift 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. //
  2. // FilesWidgetView.swift
  3. // Widget
  4. //
  5. // Created by Marino Faggiana on 25/08/22.
  6. // Copyright © 2022 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import SwiftUI
  24. import WidgetKit
  25. struct FilesWidgetView: View {
  26. var entry: FilesDataEntry
  27. var body: some View {
  28. GeometryReader { geo in
  29. ZStack(alignment: .topLeading) {
  30. HStack() {
  31. Text(entry.tile)
  32. .font(.system(size: 12))
  33. .fontWeight(.bold)
  34. .multilineTextAlignment(.center)
  35. .textCase(.uppercase)
  36. .lineLimit(1)
  37. }
  38. .frame(width: geo.size.width - 20)
  39. .padding([.top, .leading, .trailing], 10)
  40. VStack(alignment: .leading) {
  41. VStack(spacing: 0) {
  42. ForEach(entry.datas, id: \.id) { element in
  43. Link(destination: element.url) {
  44. HStack {
  45. Image(uiImage: element.image)
  46. .resizable()
  47. .scaledToFill()
  48. .frame(width: 35, height: 35)
  49. .clipped()
  50. .cornerRadius(5)
  51. VStack(alignment: .leading, spacing: 2) {
  52. Text(element.title)
  53. .font(.system(size: 12))
  54. .fontWeight(.regular)
  55. Text(element.subTitle)
  56. .font(.system(size: CGFloat(10)))
  57. .foregroundColor(Color(.systemGray))
  58. }
  59. Spacer()
  60. }
  61. .padding(.leading, 10)
  62. .frame(height: 50)
  63. }
  64. Divider()
  65. .padding(.leading, 54)
  66. }
  67. }
  68. }
  69. .padding(.top, 30)
  70. .redacted(reason: entry.isPlaceholder ? .placeholder : [])
  71. HStack(spacing: 0) {
  72. let sizeButton: CGFloat = 40
  73. Link(destination: entry.isPlaceholder ? NCGlobal.shared.widgetActionNoAction : NCGlobal.shared.widgetActionUploadAsset, label: {
  74. Image("addImage")
  75. .resizable()
  76. .renderingMode(.template)
  77. .foregroundColor(entry.isPlaceholder ? Color(.systemGray4) : Color(NCBrandColor.shared.brandText))
  78. .padding(11)
  79. .background(entry.isPlaceholder ? Color(.systemGray4) : Color(NCBrandColor.shared.brand))
  80. .clipShape(Circle())
  81. .scaledToFit()
  82. .frame(width: geo.size.width / 4, height: sizeButton)
  83. })
  84. Link(destination: entry.isPlaceholder ? NCGlobal.shared.widgetActionNoAction : NCGlobal.shared.widgetActionScanDocument, label: {
  85. Image("scan")
  86. .resizable()
  87. .renderingMode(.template)
  88. .foregroundColor(entry.isPlaceholder ? Color(.systemGray4) : Color(NCBrandColor.shared.brandText))
  89. .padding(11)
  90. .background(entry.isPlaceholder ? Color(.systemGray4) : Color(NCBrandColor.shared.brand))
  91. .clipShape(Circle())
  92. .scaledToFit()
  93. .frame(width: geo.size.width / 4, height: sizeButton)
  94. })
  95. Link(destination: entry.isPlaceholder ? NCGlobal.shared.widgetActionNoAction : NCGlobal.shared.widgetActionTextDocument, label: {
  96. Image("note.text")
  97. .resizable()
  98. .renderingMode(.template)
  99. .foregroundColor(entry.isPlaceholder ? Color(.systemGray4) : Color(NCBrandColor.shared.brandText))
  100. .padding(11)
  101. .background(entry.isPlaceholder ? Color(.systemGray4) : Color(NCBrandColor.shared.brand))
  102. .clipShape(Circle())
  103. .scaledToFit()
  104. .frame(width: geo.size.width / 4, height: sizeButton)
  105. })
  106. Link(destination: entry.isPlaceholder ? NCGlobal.shared.widgetActionNoAction : NCGlobal.shared.widgetActionVoiceMemo, label: {
  107. Image("microphone")
  108. .resizable()
  109. .renderingMode(.template)
  110. .foregroundColor(entry.isPlaceholder ? Color(.systemGray4) : Color(NCBrandColor.shared.brandText))
  111. .padding(11)
  112. .background(entry.isPlaceholder ? Color(.systemGray4) : Color(NCBrandColor.shared.brand))
  113. .clipShape(Circle())
  114. .scaledToFit()
  115. .frame(width: geo.size.width / 4, height: sizeButton)
  116. })
  117. }
  118. .frame(width: geo.size.width, height: geo.size.height - 25, alignment: .bottomTrailing)
  119. .redacted(reason: entry.isPlaceholder ? .placeholder : [])
  120. HStack {
  121. Image(systemName: entry.footerImage)
  122. .resizable()
  123. .scaledToFit()
  124. .frame(width: 15, height: 15)
  125. .foregroundColor(entry.isPlaceholder ? Color(.systemGray4) : Color(NCBrandColor.shared.brand))
  126. Text(entry.footerText)
  127. .font(.caption2)
  128. .padding(.trailing, 13.0)
  129. .foregroundColor(entry.isPlaceholder ? Color(.systemGray4) : Color(NCBrandColor.shared.brand))
  130. }
  131. .frame(maxWidth: geo.size.width - 5, maxHeight: geo.size.height - 2, alignment: .bottomTrailing)
  132. }
  133. }
  134. }
  135. }
  136. struct FilesWidget_Previews: PreviewProvider {
  137. static var previews: some View {
  138. let datas = Array(filesDatasTest[0...4])
  139. let entry = FilesDataEntry(date: Date(), datas: datas, isPlaceholder: false, tile: "Good afternoon, Marino Faggiana", footerImage: "checkmark.icloud", footerText: "Nextcloud files")
  140. FilesWidgetView(entry: entry).previewContext(WidgetPreviewContext(family: .systemLarge))
  141. }
  142. }