Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/ios.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Storch <henrik.storch@nextcloud.com>2022-05-11 17:16:41 +0300
committerHenrik Storch <henrik.storch@nextcloud.com>2022-05-11 17:21:35 +0300
commitbad3c5bd0fc2db1cf683194cd9850abe36f8bf6a (patch)
tree5088e24e32b87b124760a5c72462db04122c1e6c
parent447185c31bfc14efa15048f93bd75eeec23ac8ff (diff)
Fix quick actionsfeature/quick-actions
- activities -> Notifications - fix dismissing detail views (discard changes) - use `guard` Signed-off-by: Henrik Storch <henrik.storch@nextcloud.com>
-rw-r--r--iOSClient/AppDelegate.swift59
-rw-r--r--iOSClient/NCGlobal.swift2
2 files changed, 31 insertions, 30 deletions
diff --git a/iOSClient/AppDelegate.swift b/iOSClient/AppDelegate.swift
index 65e96b9eb..2b25a151a 100644
--- a/iOSClient/AppDelegate.swift
+++ b/iOSClient/AppDelegate.swift
@@ -328,32 +328,32 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
}
let shortcutItmes = UIApplication.shared.shortcutItems
- if shortcutItmes == nil || shortcutItmes?.isEmpty == true {
- let uploadFileItem = UIApplicationShortcutItem(
- type: NCGlobal.QuickAction.uploadFile.rawValue,
- localizedTitle: NSLocalizedString("_upload_file_", comment: ""),
- localizedSubtitle: nil,
- icon: UIApplicationShortcutIcon(templateImageName: "file"))
- let favoritesItem = UIApplicationShortcutItem(
- type: NCGlobal.QuickAction.favorites.rawValue,
- localizedTitle: NSLocalizedString("_favorites_", comment: ""),
- localizedSubtitle: nil,
- icon: UIApplicationShortcutIcon(type: .favorite))
- let activitiesItem = UIApplicationShortcutItem(
- type: NCGlobal.QuickAction.activities.rawValue,
- localizedTitle: NSLocalizedString("_activity_", comment: ""),
- localizedSubtitle: nil,
- icon: UIApplicationShortcutIcon(templateImageName: "bolt"))
- UIApplication.shared.shortcutItems = [uploadFileItem, favoritesItem, activitiesItem]
-
- if #available(iOS 13.0, *) {
- let scanItem = UIApplicationShortcutItem(
- type: NCGlobal.QuickAction.scan.rawValue,
- localizedTitle: NSLocalizedString("_scans_document_", comment: ""),
- localizedSubtitle: nil,
- icon: UIApplicationShortcutIcon(systemImageName: "doc.text.viewfinder"))
- UIApplication.shared.shortcutItems?.insert(scanItem, at: 1)
- }
+ guard shortcutItmes == nil || shortcutItmes?.isEmpty == true else { return }
+
+ let uploadFileItem = UIApplicationShortcutItem(
+ type: NCGlobal.QuickAction.uploadFile.rawValue,
+ localizedTitle: NSLocalizedString("_upload_file_", comment: ""),
+ localizedSubtitle: nil,
+ icon: UIApplicationShortcutIcon(templateImageName: "file"))
+ let favoritesItem = UIApplicationShortcutItem(
+ type: NCGlobal.QuickAction.favorites.rawValue,
+ localizedTitle: NSLocalizedString("_favorites_", comment: ""),
+ localizedSubtitle: nil,
+ icon: UIApplicationShortcutIcon(type: .favorite))
+ let activitiesItem = UIApplicationShortcutItem(
+ type: NCGlobal.QuickAction.notifications.rawValue,
+ localizedTitle: NSLocalizedString("_notifications_", comment: ""),
+ localizedSubtitle: nil,
+ icon: UIApplicationShortcutIcon(templateImageName: "bell"))
+ UIApplication.shared.shortcutItems = [uploadFileItem, favoritesItem, activitiesItem]
+
+ guard #available(iOS 13.0, *) else { return }
+ let scanItem = UIApplicationShortcutItem(
+ type: NCGlobal.QuickAction.scan.rawValue,
+ localizedTitle: NSLocalizedString("_scans_document_", comment: ""),
+ localizedSubtitle: nil,
+ icon: UIApplicationShortcutIcon(systemImageName: "doc.text.viewfinder"))
+ UIApplication.shared.shortcutItems?.insert(scanItem, at: 1)
}
// MARK: - Background Task
@@ -453,7 +453,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
func application(_ application: UIApplication, performActionFor shortcutItem: UIApplicationShortcutItem, completionHandler: @escaping (Bool) -> Void) {
guard let tabBarCtrl = window?.rootViewController as? UITabBarController else { return }
let currentMain = tabBarCtrl.selectedViewController as? NCMainNavigationController
- currentMain?.topViewController?.presentedViewController?.dismiss(animated: false, completion: nil)
+ currentMain?.dismiss(animated: false, completion: nil)
+ currentMain?.popToRootViewController(animated: false)
let quickAction = NCGlobal.QuickAction(rawValue: shortcutItem.type)
switch quickAction {
@@ -465,11 +466,11 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
}
case .uploadFile:
NCDocumentPickerViewController(tabBarController: tabBarCtrl)
- case .activities:
+ case .notifications:
tabBarCtrl.selectedIndex = 4
guard let ncNav = tabBarCtrl.viewControllers?.last as? NCMainNavigationController,
let ncMore = ncNav.topViewController as? NCMore else { return }
- let indexPath = IndexPath(row: 3, section: 1)
+ let indexPath = IndexPath(row: 2, section: 1)
DispatchQueue.main.asyncAfter(deadline: .now() + 0.25) {
//delay needed else `tableView` is nil
ncMore.tableView.delegate?.tableView?(ncMore.tableView, didSelectRowAt: indexPath)
diff --git a/iOSClient/NCGlobal.swift b/iOSClient/NCGlobal.swift
index 31ec1560e..e96d06cf9 100644
--- a/iOSClient/NCGlobal.swift
+++ b/iOSClient/NCGlobal.swift
@@ -99,7 +99,7 @@ class NCGlobal: NSObject {
case favorites = "FavoritesQuickAction"
case scan = "ScanQuickAction"
case uploadFile = "UploadFileQuickAction"
- case activities = "ActivitiesQuickAction"
+ case notifications = "NotificationsQuickAction"
}
// Service