NCTrash+Menu.swift 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //
  2. // NCTrash+Menu.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 03/03/2021.
  6. // Copyright © 2021 Marino Faggiana. All rights reserved.
  7. // Copyright © 2022 Henrik Storch. All rights reserved.
  8. //
  9. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  10. // Author Henrik Storch <henrik.storch@nextcloud.com>
  11. //
  12. // This program is free software: you can redistribute it and/or modify
  13. // it under the terms of the GNU General Public License as published by
  14. // the Free Software Foundation, either version 3 of the License, or
  15. // (at your option) any later version.
  16. //
  17. // This program is distributed in the hope that it will be useful,
  18. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. // GNU General Public License for more details.
  21. //
  22. // You should have received a copy of the GNU General Public License
  23. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. //
  25. import UIKit
  26. import FloatingPanel
  27. import NCCommunication
  28. extension NCTrash {
  29. func toggleMenuMoreHeader() {
  30. var actions: [NCMenuAction] = []
  31. actions.append(
  32. NCMenuAction(
  33. title: NSLocalizedString("_trash_restore_all_", comment: ""),
  34. icon: NCUtility.shared.loadImage(named: "restore"),
  35. action: { _ in
  36. self.datasource.forEach({ self.restoreItem(with: $0.fileId) })
  37. }
  38. )
  39. )
  40. actions.append(
  41. NCMenuAction(
  42. title: NSLocalizedString("_trash_delete_all_", comment: ""),
  43. icon: NCUtility.shared.loadImage(named: "trash"),
  44. action: { _ in
  45. let alert = UIAlertController(title: NSLocalizedString("_trash_delete_all_description_", comment: ""), message: "", preferredStyle: .alert)
  46. alert.addAction(UIAlertAction(title: NSLocalizedString("_trash_delete_all_", comment: ""), style: .destructive, handler: { _ in
  47. self.emptyTrash()
  48. }))
  49. alert.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel))
  50. self.present(alert, animated: true, completion: nil)
  51. }
  52. )
  53. )
  54. presentMenu(with: actions)
  55. }
  56. func toggleMenuMore(with objectId: String, image: UIImage?, isGridCell: Bool) {
  57. guard let tableTrash = NCManageDatabase.shared.getTrashItem(fileId: objectId, account: appDelegate.account) else {
  58. return
  59. }
  60. guard isGridCell else {
  61. let alert = UIAlertController(title: NSLocalizedString("_want_delete_", comment: ""), message: tableTrash.trashbinFileName, preferredStyle: .alert)
  62. alert.addAction(UIAlertAction(title: NSLocalizedString("_delete_", comment: ""), style: .destructive, handler: { _ in
  63. self.deleteItem(with: objectId)
  64. }))
  65. alert.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel))
  66. self.present(alert, animated: true, completion: nil)
  67. return
  68. }
  69. var actions: [NCMenuAction] = []
  70. var iconHeader: UIImage!
  71. if let icon = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(tableTrash.fileId, etag: tableTrash.fileName)) {
  72. iconHeader = icon
  73. } else {
  74. if tableTrash.directory {
  75. iconHeader = UIImage(named: "folder")!.image(color: NCBrandColor.shared.gray, size: 50)
  76. } else {
  77. iconHeader = UIImage(named: tableTrash.iconName)
  78. }
  79. }
  80. actions.append(
  81. NCMenuAction(
  82. title: tableTrash.trashbinFileName,
  83. icon: iconHeader,
  84. action: nil
  85. )
  86. )
  87. actions.append(
  88. NCMenuAction(
  89. title: NSLocalizedString("_restore_", comment: ""),
  90. icon: UIImage(named: "restore")!.image(color: NCBrandColor.shared.gray, size: 50),
  91. action: { _ in
  92. self.restoreItem(with: objectId)
  93. }
  94. )
  95. )
  96. actions.append(
  97. NCMenuAction(
  98. title: NSLocalizedString("_delete_", comment: ""),
  99. icon: NCUtility.shared.loadImage(named: "trash"),
  100. action: { _ in
  101. self.deleteItem(with: objectId)
  102. }
  103. )
  104. )
  105. presentMenu(with: actions)
  106. }
  107. }