NCContentPresenter.swift 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. //
  2. // NCContentPresenter.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 23/12/2019.
  6. // Copyright (c) 2019 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 SwiftEntryKit
  24. import UIKit
  25. import CFNetwork
  26. import NextcloudKit
  27. class NCContentPresenter: NSObject {
  28. @objc static let shared: NCContentPresenter = {
  29. let instance = NCContentPresenter()
  30. return instance
  31. }()
  32. typealias MainFont = Font.HelveticaNeue
  33. enum Font {
  34. enum HelveticaNeue: String {
  35. case ultraLightItalic = "UltraLightItalic"
  36. case medium = "Medium"
  37. case mediumItalic = "MediumItalic"
  38. case ultraLight = "UltraLight"
  39. case italic = "Italic"
  40. case light = "Light"
  41. case thinItalic = "ThinItalic"
  42. case lightItalic = "LightItalic"
  43. case bold = "Bold"
  44. case thin = "Thin"
  45. case condensedBlack = "CondensedBlack"
  46. case condensedBold = "CondensedBold"
  47. case boldItalic = "BoldItalic"
  48. func with(size: CGFloat) -> UIFont {
  49. return UIFont(name: "HelveticaNeue-\(rawValue)", size: size)!
  50. }
  51. }
  52. }
  53. @objc enum messageType: Int {
  54. case error
  55. case success
  56. case info
  57. }
  58. // MARK: - Message
  59. func showError(error: NKError, priority: EKAttributes.Precedence.Priority = .normal) {
  60. messageNotification(
  61. "_error_",
  62. error: error,
  63. delay: NCGlobal.shared.dismissAfterSecond,
  64. type: .error,
  65. priority: priority)
  66. }
  67. func showInfo(error: NKError, priority: EKAttributes.Precedence.Priority = .normal) {
  68. messageNotification(
  69. "_info_",
  70. error: error,
  71. delay: NCGlobal.shared.dismissAfterSecond,
  72. type: .info,
  73. priority: priority)
  74. }
  75. func showWarning(error: NKError, priority: EKAttributes.Precedence.Priority = .normal) {
  76. messageNotification(
  77. "_warning_",
  78. error: error,
  79. delay: NCGlobal.shared.dismissAfterSecond,
  80. type: .info,
  81. priority: priority)
  82. }
  83. @objc func messageNotification(_ title: String, error: NKError, delay: TimeInterval, type: messageType) {
  84. messageNotification(title, error: error, delay: delay, type: type, priority: .normal, dropEnqueuedEntries: false)
  85. }
  86. func messageNotification(_ title: String, error: NKError, delay: TimeInterval, type: messageType, priority: EKAttributes.Precedence.Priority = .normal, dropEnqueuedEntries: Bool = false) {
  87. // No notification message for:
  88. if error.errorCode == -999 { return } // Cancelled transfer
  89. else if error.errorCode == 200 { return } // Transfer stopped
  90. else if error.errorCode == 207 { return } // WebDAV multistatus
  91. else if error.errorCode == NCGlobal.shared.errorNoError && type == messageType.error { return }
  92. DispatchQueue.main.async {
  93. switch error.errorCode {
  94. case Int(CFNetworkErrors.cfurlErrorNotConnectedToInternet.rawValue):
  95. let image = UIImage(named: "networkInProgress")!.image(color: .white, size: 20)
  96. self.noteTop(text: NSLocalizedString(title, comment: ""), image: image, color: .lightGray, delay: delay, priority: .max)
  97. default:
  98. if error.errorDescription.trimmingCharacters(in: .whitespacesAndNewlines) == "" { return }
  99. let description = NSLocalizedString(error.errorDescription, comment: "")
  100. self.flatTop(title: NSLocalizedString(title, comment: ""), description: description, delay: delay, imageName: nil, type: type, priority: priority, dropEnqueuedEntries: dropEnqueuedEntries)
  101. }
  102. }
  103. }
  104. // MARK: - Flat message
  105. private func flatTop(title: String, description: String, delay: TimeInterval, imageName: String?, type: messageType, priority: EKAttributes.Precedence.Priority = .normal, dropEnqueuedEntries: Bool = false) {
  106. if SwiftEntryKit.isCurrentlyDisplaying(entryNamed: title + description) { return }
  107. var attributes = EKAttributes.topFloat
  108. var image: UIImage?
  109. attributes.windowLevel = .normal
  110. attributes.displayDuration = delay
  111. attributes.name = title + description
  112. attributes.entryBackground = .color(color: EKColor(getBackgroundColorFromType(type)))
  113. attributes.popBehavior = .animated(animation: .init(translate: .init(duration: 0.3), scale: .init(from: 1, to: 0.7, duration: 0.7)))
  114. attributes.shadow = .active(with: .init(color: .black, opacity: 0.5, radius: 10, offset: .zero))
  115. attributes.scroll = .enabled(swipeable: true, pullbackAnimation: .jolt)
  116. attributes.precedence = .override(priority: priority, dropEnqueuedEntries: dropEnqueuedEntries)
  117. let title = EKProperty.LabelContent(text: title, style: .init(font: MainFont.bold.with(size: 16), color: .white))
  118. let description = EKProperty.LabelContent(text: description, style: .init(font: MainFont.medium.with(size: 13), color: .white))
  119. if imageName == nil {
  120. image = getImageFromType(type)
  121. } else {
  122. image = UIImage(named: imageName!)
  123. }
  124. let imageMessage = EKProperty.ImageContent(image: image!, size: CGSize(width: 35, height: 35))
  125. let simpleMessage = EKSimpleMessage(image: imageMessage, title: title, description: description)
  126. let notificationMessage = EKNotificationMessage(simpleMessage: simpleMessage)
  127. let contentView = EKNotificationMessageView(with: notificationMessage)
  128. DispatchQueue.main.async { SwiftEntryKit.display(entry: contentView, using: attributes) }
  129. }
  130. // MARK: - Note Message
  131. func noteTop(text: String, image: UIImage?, color: UIColor? = nil, type: messageType? = nil, delay: TimeInterval, priority: EKAttributes.Precedence.Priority = .normal, dropEnqueuedEntries: Bool = false) {
  132. if SwiftEntryKit.isCurrentlyDisplaying(entryNamed: text) { return }
  133. DispatchQueue.main.async {
  134. var attributes = EKAttributes.topNote
  135. attributes.windowLevel = .normal
  136. attributes.displayDuration = delay
  137. attributes.name = text
  138. if let color = color {
  139. attributes.entryBackground = .color(color: EKColor(color))
  140. }
  141. if let type = type {
  142. attributes.entryBackground = .color(color: EKColor(self.getBackgroundColorFromType(type)))
  143. }
  144. attributes.precedence = .override(priority: priority, dropEnqueuedEntries: dropEnqueuedEntries)
  145. let style = EKProperty.LabelStyle(font: MainFont.light.with(size: 14), color: .white, alignment: .center)
  146. let labelContent = EKProperty.LabelContent(text: text, style: style)
  147. if let image = image {
  148. let imageContent = EKProperty.ImageContent(image: image, size: CGSize(width: 17, height: 17))
  149. let contentView = EKImageNoteMessageView(with: labelContent, imageContent: imageContent)
  150. SwiftEntryKit.display(entry: contentView, using: attributes)
  151. } else {
  152. let contentView = EKNoteMessageView(with: labelContent)
  153. SwiftEntryKit.display(entry: contentView, using: attributes)
  154. }
  155. }
  156. }
  157. func dismiss(after: TimeInterval = 0) {
  158. DispatchQueue.main.asyncAfter(deadline: .now() + after) {
  159. SwiftEntryKit.dismiss()
  160. }
  161. }
  162. // MARK: - Private
  163. private func getBackgroundColorFromType(_ type: messageType) -> UIColor {
  164. switch type {
  165. case .info:
  166. return NCBrandColor.shared.brandElement
  167. case .error:
  168. return UIColor(red: 1, green: 0, blue: 0, alpha: 0.9)
  169. case .success:
  170. return UIColor(red: 0.588, green: 0.797, blue: 0, alpha: 0.9)
  171. default:
  172. return .white
  173. }
  174. }
  175. private func getImageFromType(_ type: messageType) -> UIImage? {
  176. switch type {
  177. case .info:
  178. return UIImage(named: "iconInfo")
  179. case .error:
  180. return UIImage(named: "iconError")
  181. case .success:
  182. return UIImage(named: "iconSuccess")
  183. default:
  184. return nil
  185. }
  186. }
  187. }