123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- //
- // NCContentPresenter.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 23/12/2019.
- // Copyright (c) 2019 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import SwiftEntryKit
- import UIKit
- import CFNetwork
- import NextcloudKit
- class NCContentPresenter: NSObject {
- typealias MainFont = Font.HelveticaNeue
- enum Font {
- enum HelveticaNeue: String {
- case ultraLightItalic = "UltraLightItalic"
- case medium = "Medium"
- case mediumItalic = "MediumItalic"
- case ultraLight = "UltraLight"
- case italic = "Italic"
- case light = "Light"
- case thinItalic = "ThinItalic"
- case lightItalic = "LightItalic"
- case bold = "Bold"
- case thin = "Thin"
- case condensedBlack = "CondensedBlack"
- case condensedBold = "CondensedBold"
- case boldItalic = "BoldItalic"
- func with(size: CGFloat) -> UIFont {
- return UIFont(name: "HelveticaNeue-\(rawValue)", size: size)!
- }
- }
- }
- @objc enum messageType: Int {
- case error
- case success
- case info
- }
- // MARK: - Message
- func showError(error: NKError, priority: EKAttributes.Precedence.Priority = .normal) {
- messageNotification(
- "_error_",
- error: error,
- delay: NCGlobal.shared.dismissAfterSecond,
- type: .error,
- priority: priority)
- }
- func showInfo(error: NKError, priority: EKAttributes.Precedence.Priority = .normal) {
- messageNotification(
- "_info_",
- error: error,
- delay: NCGlobal.shared.dismissAfterSecond,
- type: .info,
- priority: priority)
- }
- func showInfo(title: String = "", description: String = "") {
- self.flatTop(title: NSLocalizedString(title, comment: ""), description: NSLocalizedString(description, comment: ""), delay: NCGlobal.shared.dismissAfterSecond, type: .info, priority: .normal)
- }
- func showWarning(error: NKError, priority: EKAttributes.Precedence.Priority = .normal) {
- messageNotification(
- "_warning_",
- error: error,
- delay: NCGlobal.shared.dismissAfterSecond,
- type: .info,
- priority: priority)
- }
- @objc func messageNotification(_ title: String, error: NKError, delay: TimeInterval, type: messageType, afterDelay: TimeInterval = 0) {
- messageNotification(title, error: error, delay: delay, type: type, priority: .normal, dropEnqueuedEntries: false, afterDelay: afterDelay)
- }
- func messageNotification(_ title: String, error: NKError, delay: TimeInterval, type: messageType, priority: EKAttributes.Precedence.Priority = .normal, dropEnqueuedEntries: Bool = false, afterDelay: TimeInterval = 0) {
- // No notification message for:
- if error.errorCode == NSURLErrorCancelled || error.errorCode == NCGlobal.shared.errorRequestExplicityCancelled { return } else if error == .success && type == messageType.error { return }
- // Hardcode change type
- var type = type
- if error.errorCode == NCGlobal.shared.errorE2EEUploadInProgress {
- type = .info
- }
- DispatchQueue.main.asyncAfter(deadline: .now() + afterDelay) {
- switch error.errorCode {
- case Int(CFNetworkErrors.cfurlErrorNotConnectedToInternet.rawValue):
- let image = UIImage(named: "InfoNetwork")?.image(color: .white, size: 20)
- self.noteTop(text: NSLocalizedString("_network_not_available_", comment: ""), image: image, color: .lightGray, delay: delay, priority: .max)
- default:
- var responseMessage = ""
- if let data = error.responseData {
- do {
- if let json = try JSONSerialization.jsonObject(with: data, options: .mutableContainers) as? [String: Any],
- let message = json["message"] as? String {
- responseMessage = "\n\n" + message
- }
- } catch {
- print("Something went wrong")
- }
- }
- if error.errorDescription.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty { return }
- var description = NSLocalizedString(error.errorDescription, comment: "")
- description = description.replacingOccurrences(of: "\t", with: "\n")
- self.flatTop(title: NSLocalizedString(title, comment: ""), description: description + responseMessage, delay: delay, type: type, priority: priority, dropEnqueuedEntries: dropEnqueuedEntries)
- }
- }
- }
- func showProcessingNote() {
- DispatchQueue.main.async {
- var attributes = EKAttributes.topFloat
- let text = "Waiting for the goodies to arrive!"
- let style = EKProperty.LabelStyle(
- font: MainFont.light.with(size: 14),
- color: .white,
- alignment: .center,
- displayMode: EKAttributes.DisplayMode.inferred
- )
- let labelContent = EKProperty.LabelContent(
- text: text,
- style: style
- )
- let contentView = EKProcessingNoteMessageView(
- with: labelContent,
- activityIndicator: .medium
- )
- attributes.windowLevel = .normal
- attributes.entryBackground = .color(color: EKColor(self.getBackgroundColorFromType(.info)))
- attributes.displayDuration = .infinity
- attributes.positionConstraints.verticalOffset = 20
- attributes.positionConstraints.size = .init(width: .offset(value: 20), height: .intrinsic)
- attributes.positionConstraints.maxSize = .init(width: .constant(value: min(UIScreen.main.bounds.width, UIScreen.main.bounds.height)), height: .intrinsic)
- attributes.shadow = .active(with: .init(color: .black, opacity: 0.5, radius: 10, offset: .zero))
- attributes.scroll = .enabled(swipeable: true, pullbackAnimation: .jolt)
- attributes.popBehavior = .animated(animation: .init(translate: .init(duration: 0.2)))
- SwiftEntryKit.display(entry: contentView, using: attributes)
- }
- }
- // MARK: - Flat message
- private func flatTop(title: String, description: String, delay: TimeInterval, type: messageType, priority: EKAttributes.Precedence.Priority = .normal, dropEnqueuedEntries: Bool = false) {
- if SwiftEntryKit.isCurrentlyDisplaying(entryNamed: title + description) { return }
- var attributes = EKAttributes.topFloat
- attributes.windowLevel = .normal
- attributes.displayDuration = delay
- attributes.name = title + description
- attributes.entryBackground = .color(color: EKColor(getBackgroundColorFromType(type)))
- attributes.popBehavior = .animated(animation: .init(translate: .init(duration: 0.3), scale: .init(from: 1, to: 0.7, duration: 0.7)))
- attributes.shadow = .active(with: .init(color: .black, opacity: 0.5, radius: 10, offset: .zero))
- attributes.scroll = .enabled(swipeable: true, pullbackAnimation: .jolt)
- attributes.precedence = .override(priority: priority, dropEnqueuedEntries: dropEnqueuedEntries)
- let title = EKProperty.LabelContent(text: title, style: .init(font: MainFont.bold.with(size: 16), color: .white))
- let description = EKProperty.LabelContent(text: description, style: .init(font: MainFont.medium.with(size: 13), color: .white))
- let imageMessage = EKProperty.ImageContent(image: getImageFromType(type), size: CGSize(width: 35, height: 35))
- let simpleMessage = EKSimpleMessage(image: imageMessage, title: title, description: description)
- let notificationMessage = EKNotificationMessage(simpleMessage: simpleMessage)
- let contentView = EKNotificationMessageView(with: notificationMessage)
- DispatchQueue.main.async { SwiftEntryKit.display(entry: contentView, using: attributes) }
- }
- // MARK: -
- func alertAction(image: UIImage, contentModeImage: UIView.ContentMode = .scaleToFill, sizeImage: CGSize = CGSize(width: 34, height: 34), backgroundColor: UIColor, textColor: UIColor, title: String, description: String, textCancelButton: String, textOkButton: String, attributes: EKAttributes, completion: @escaping (_ identifier: String) -> Void) {
- var buttonAttributes: EKAttributes {
- var attributes = attributes
- attributes.hapticFeedbackType = .success
- attributes.displayDuration = .infinity
- attributes.entryBackground = .color(color: EKColor(backgroundColor))
- attributes.shadow = .active(with: .init(color: .black, opacity: 0.3, radius: 8))
- attributes.screenInteraction = .dismiss
- attributes.entryInteraction = .absorbTouches
- attributes.scroll = .enabled(swipeable: true, pullbackAnimation: .jolt)
- attributes.roundCorners = .all(radius: 25)
- attributes.entranceAnimation = .init(translate: .init(duration: 0.7, spring: .init(damping: 1, initialVelocity: 0)), scale: .init(from: 1.05, to: 1, duration: 0.4, spring: .init(damping: 1, initialVelocity: 0)))
- attributes.exitAnimation = .init(translate: .init(duration: 0.2))
- attributes.popBehavior = .animated(animation: .init(translate: .init(duration: 0.2)))
- attributes.positionConstraints.verticalOffset = 20
- attributes.positionConstraints.size = .init(width: .offset(value: 20), height: .intrinsic)
- attributes.positionConstraints.maxSize = .init(width: .constant(value: min(UIScreen.main.bounds.width, UIScreen.main.bounds.height)), height: .intrinsic)
- attributes.statusBar = .dark
- return attributes
- }
- let simpleMessage = EKSimpleMessage(image: EKProperty.ImageContent(image: image, size: sizeImage, contentMode: contentModeImage),
- title: EKProperty.LabelContent(text: NSLocalizedString(title, comment: ""), style: .init(font: MainFont.medium.with(size: 15), color: EKColor(textColor)), accessibilityIdentifier: "title"),
- description: EKProperty.LabelContent(text: NSLocalizedString(description, comment: ""), style: .init( font: MainFont.light.with(size: 13), color: EKColor(textColor)), accessibilityIdentifier: "description"))
- let cancelButton = EKProperty.ButtonContent(
- label: EKProperty.LabelContent(text: NSLocalizedString(textCancelButton, comment: ""), style: EKProperty.LabelStyle(font: MainFont.medium.with(size: 16), color: EKColor(textColor))),
- backgroundColor: .clear,
- highlightedBackgroundColor: EKColor(UIColor.lightGray),
- accessibilityIdentifier: "close") {
- SwiftEntryKit.dismiss()
- completion("close")
- }
- let okButton = EKProperty.ButtonContent(
- label: EKProperty.LabelContent(text: NSLocalizedString(textOkButton, comment: ""), style: EKProperty.LabelStyle(font: MainFont.medium.with(size: 16), color: EKColor(textColor))),
- backgroundColor: .clear,
- highlightedBackgroundColor: EKColor(UIColor.lightGray),
- displayMode: EKAttributes.DisplayMode.inferred,
- accessibilityIdentifier: "ok") {
- SwiftEntryKit.dismiss()
- completion("ok")
- }
- let buttonsBarContent = EKProperty.ButtonBarContent(with: cancelButton, okButton, separatorColor: EKColor(textColor), buttonHeight: 60, expandAnimatedly: true)
- let alertMessage = EKAlertMessage(simpleMessage: simpleMessage, imagePosition: .left, buttonBarContent: buttonsBarContent)
- let contentView = EKAlertMessageView(with: alertMessage)
- SwiftEntryKit.display(entry: contentView, using: buttonAttributes)
- }
- // MARK: - Note Message
- func noteTop(text: String, image: UIImage?, color: UIColor? = nil, type: messageType? = nil, delay: TimeInterval, priority: EKAttributes.Precedence.Priority = .normal, dropEnqueuedEntries: Bool = false) {
- if SwiftEntryKit.isCurrentlyDisplaying(entryNamed: text) { return }
- DispatchQueue.main.async {
- var attributes = EKAttributes.topNote
- attributes.windowLevel = .normal
- attributes.displayDuration = delay
- attributes.name = text
- if let color = color {
- attributes.entryBackground = .color(color: EKColor(color))
- }
- if let type = type {
- attributes.entryBackground = .color(color: EKColor(self.getBackgroundColorFromType(type)))
- }
- attributes.precedence = .override(priority: priority, dropEnqueuedEntries: dropEnqueuedEntries)
- let style = EKProperty.LabelStyle(font: MainFont.light.with(size: 14), color: .white, alignment: .center)
- let labelContent = EKProperty.LabelContent(text: text, style: style)
- if let image = image {
- let imageContent = EKProperty.ImageContent(image: image, size: CGSize(width: 17, height: 17))
- let contentView = EKImageNoteMessageView(with: labelContent, imageContent: imageContent)
- SwiftEntryKit.display(entry: contentView, using: attributes)
- } else {
- let contentView = EKNoteMessageView(with: labelContent)
- SwiftEntryKit.display(entry: contentView, using: attributes)
- }
- }
- }
- func dismiss(after: TimeInterval = 0) {
- DispatchQueue.main.asyncAfter(deadline: .now() + after) {
- SwiftEntryKit.dismiss()
- }
- }
- // MARK: - Private
- private func getBackgroundColorFromType(_ type: messageType) -> UIColor {
- switch type {
- case .info:
- return NCBrandColor.shared.customer
- case .error:
- return UIColor(red: 1, green: 0, blue: 0, alpha: 0.9)
- case .success:
- return UIColor(red: 0.588, green: 0.797, blue: 0, alpha: 0.9)
- default:
- return .white
- }
- }
- private func getImageFromType(_ type: messageType) -> UIImage {
- switch type {
- case .info:
- return UIImage(named: "iconInfo")!
- case .error:
- return UIImage(named: "iconError")!
- case .success:
- return UIImage(named: "iconSuccess")!
- default:
- return UIImage(named: "iconInfo")!
- }
- }
- }
|