NCCollectionViewCommonSelectTabBar.swift 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. //
  2. // NCCollectionViewCommonSelectionTabBar.swift
  3. // Nextcloud
  4. //
  5. // Created by Milen on 01.02.24.
  6. // Copyright © 2024 Marino Faggiana. All rights reserved.
  7. //
  8. import Foundation
  9. import SwiftUI
  10. protocol NCCollectionViewCommonSelectTabBarDelegate: AnyObject {
  11. func selectAll()
  12. func delete(selectedMetadatas: [tableMetadata])
  13. func move(selectedMetadatas: [tableMetadata])
  14. func share(selectedMetadatas: [tableMetadata])
  15. func saveAsAvailableOffline(selectedMetadatas: [tableMetadata], isAnyOffline: Bool)
  16. func lock(selectedMetadatas: [tableMetadata], isAnyLocked: Bool)
  17. }
  18. class NCCollectionViewCommonSelectTabBar: NCSelectableViewTabBar, ObservableObject {
  19. var tabBarController: UITabBarController?
  20. var hostingController: UIViewController?
  21. open weak var delegate: NCCollectionViewCommonSelectTabBarDelegate?
  22. var selectedMetadatas: [tableMetadata] = []
  23. @Published var isAnyOffline = false
  24. @Published var canSetAsOffline = false
  25. @Published var isAnyDirectory = false
  26. @Published var isAllDirectory = false
  27. @Published var isAnyLocked = false
  28. @Published var canUnlock = true
  29. @Published var enableLock = false
  30. @Published var isSelectedEmpty = true
  31. init(tabBarController: UITabBarController? = nil, delegate: NCCollectionViewCommonSelectTabBarDelegate? = nil) {
  32. let rootView = NCCollectionViewCommonSelectTabBarView(tabBarSelect: self)
  33. hostingController = UIHostingController(rootView: rootView)
  34. self.tabBarController = tabBarController
  35. self.delegate = delegate
  36. guard let tabBarController, let hostingController else { return }
  37. tabBarController.view.addSubview(hostingController.view)
  38. hostingController.view.frame = tabBarController.tabBar.frame
  39. hostingController.view.autoresizingMask = [.flexibleWidth, .flexibleHeight]
  40. hostingController.view.backgroundColor = .clear
  41. hostingController.view.isHidden = true
  42. }
  43. func show() {
  44. guard let tabBarController, let hostingController else { return }
  45. tabBarController.tabBar.isHidden = true
  46. if hostingController.view.isHidden {
  47. hostingController.view.isHidden = false
  48. hostingController.view.transform = .init(translationX: 0, y: hostingController.view.frame.height)
  49. UIView.animate(withDuration: 0.2) {
  50. hostingController.view.transform = .init(translationX: 0, y: 0)
  51. }
  52. }
  53. }
  54. func hide() {
  55. guard let tabBarController, let hostingController else { return }
  56. hostingController.view.isHidden = true
  57. tabBarController.tabBar.isHidden = false
  58. }
  59. }
  60. struct NCCollectionViewCommonSelectTabBarView: View {
  61. @ObservedObject var tabBarSelect: NCCollectionViewCommonSelectTabBar
  62. @Environment(\.verticalSizeClass) var sizeClass
  63. var body: some View {
  64. VStack {
  65. Spacer().frame(height: sizeClass == .compact ? 5 : 10)
  66. HStack {
  67. Button {
  68. tabBarSelect.delegate?.share(selectedMetadatas: tabBarSelect.selectedMetadatas)
  69. } label: {
  70. Image(systemName: "square.and.arrow.up")
  71. .imageScale(sizeClass == .compact ? .medium : .large)
  72. }
  73. .frame(maxWidth: .infinity)
  74. .disabled(tabBarSelect.isSelectedEmpty || tabBarSelect.isAllDirectory)
  75. Button {
  76. tabBarSelect.delegate?.move(selectedMetadatas: tabBarSelect.selectedMetadatas)
  77. } label: {
  78. Image(systemName: "rectangle.portrait.and.arrow.right")
  79. .imageScale(sizeClass == .compact ? .medium : .large)
  80. }
  81. .frame(maxWidth: .infinity)
  82. .disabled(tabBarSelect.isSelectedEmpty)
  83. Button {
  84. tabBarSelect.delegate?.delete(selectedMetadatas: tabBarSelect.selectedMetadatas)
  85. } label: {
  86. Image(systemName: "trash")
  87. .imageScale(sizeClass == .compact ? .medium : .large)
  88. }
  89. .tint(.red)
  90. .frame(maxWidth: .infinity)
  91. .disabled(tabBarSelect.isSelectedEmpty)
  92. Menu {
  93. Button(action: {
  94. tabBarSelect.delegate?.saveAsAvailableOffline(selectedMetadatas: tabBarSelect.selectedMetadatas, isAnyOffline: tabBarSelect.isAnyOffline)
  95. }, label: {
  96. Label(NSLocalizedString(tabBarSelect.isAnyOffline ? "_remove_available_offline_" : "_set_available_offline_", comment: ""), systemImage: tabBarSelect.isAnyOffline ? "icloud.slash" : "icloud.and.arrow.down")
  97. if !tabBarSelect.canSetAsOffline && !tabBarSelect.isAnyOffline {
  98. Text(NSLocalizedString("_e2ee_set_as_offline_", comment: ""))
  99. }
  100. })
  101. .disabled(!tabBarSelect.isAnyOffline && (!tabBarSelect.canSetAsOffline || tabBarSelect.isSelectedEmpty))
  102. Button(action: {
  103. tabBarSelect.delegate?.lock(selectedMetadatas: tabBarSelect.selectedMetadatas, isAnyLocked: tabBarSelect.isAnyLocked)
  104. }, label: {
  105. Label(NSLocalizedString(tabBarSelect.isAnyLocked ? "_unlock_" : "_lock_", comment: ""), systemImage: tabBarSelect.isAnyLocked ? "lock.open" : "lock")
  106. if !tabBarSelect.enableLock {
  107. Text(NSLocalizedString("_lock_no_permissions_selected_", comment: ""))
  108. }
  109. })
  110. .disabled(!tabBarSelect.enableLock || tabBarSelect.isSelectedEmpty)
  111. Button(action: {
  112. tabBarSelect.delegate?.selectAll()
  113. }, label: {
  114. Label(NSLocalizedString("_select_all_", comment: ""), systemImage: "checkmark")
  115. })
  116. } label: {
  117. Image(systemName: "ellipsis.circle")
  118. .imageScale(sizeClass == .compact ? .medium : .large)
  119. }
  120. .frame(maxWidth: .infinity)
  121. }
  122. }
  123. .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading)
  124. .background(.thinMaterial)
  125. .overlay(Rectangle().frame(width: nil, height: 0.5, alignment: .top).foregroundColor(Color(UIColor.separator)), alignment: .top)
  126. }
  127. }
  128. #Preview {
  129. NCCollectionViewCommonSelectTabBarView(tabBarSelect: NCCollectionViewCommonSelectTabBar())
  130. }