NCCreateMenuAdd.swift 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. //
  2. // NCCreateMenuAdd.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 14/11/2018.
  6. // Copyright © 2018 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 Foundation
  24. import Sheeeeeeeeet
  25. class NCCreateMenuAdd: NSObject {
  26. // swiftlint:disable force_cast
  27. weak var appDelegate = UIApplication.shared.delegate as! AppDelegate
  28. // swiftlint:enable force_cast
  29. var isNextcloudTextAvailable = false
  30. @objc init(viewController: UIViewController, view: UIView) {
  31. super.init()
  32. if self.appDelegate.reachability.isReachable() && NCBrandBeta.shared.directEditing && NCManageDatabase.sharedInstance.getDirectEditingCreators(account: self.appDelegate.activeAccount) != nil {
  33. isNextcloudTextAvailable = true
  34. }
  35. var items = [MenuItem]()
  36. ActionSheetTableView.appearance().backgroundColor = NCBrandColor.sharedInstance.backgroundForm
  37. ActionSheetTableView.appearance().separatorColor = NCBrandColor.sharedInstance.separator
  38. ActionSheetItemCell.appearance().backgroundColor = NCBrandColor.sharedInstance.backgroundForm
  39. ActionSheetItemCell.appearance().titleColor = NCBrandColor.sharedInstance.textView
  40. items.append(MenuItem(title: NSLocalizedString("_upload_photos_videos_", comment: ""), value: 10, image: CCGraphics.changeThemingColorImage(UIImage(named: "file_photo"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)))
  41. items.append(MenuItem(title: NSLocalizedString("_upload_file_", comment: ""), value: 20, image: CCGraphics.changeThemingColorImage(UIImage(named: "file"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)))
  42. if NCBrandOptions.sharedInstance.use_imi_viewer {
  43. items.append(MenuItem(title: NSLocalizedString("_im_create_new_file", tableName: "IMLocalizable", bundle: Bundle.main, value: "", comment: ""), value: 21, image: CCGraphics.scale(UIImage(named: "imagemeter"), to: CGSize(width: 25, height: 25), isAspectRation: true)))
  44. }
  45. if isNextcloudTextAvailable {
  46. items.append(MenuItem(title: NSLocalizedString("_create_nextcloudtext_document_", comment: ""), value: 31, image: CCGraphics.changeThemingColorImage(UIImage(named: "file_txt"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)))
  47. } else {
  48. items.append(MenuItem(title: NSLocalizedString("_upload_file_text_", comment: ""), value: 30, image: CCGraphics.changeThemingColorImage(UIImage(named: "file_txt"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)))
  49. }
  50. #if !targetEnvironment(simulator)
  51. if #available(iOS 11.0, *) {
  52. items.append(MenuItem(title: NSLocalizedString("_scans_document_", comment: ""), value: 40, image: CCGraphics.changeThemingColorImage(UIImage(named: "scan"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)))
  53. }
  54. #endif
  55. items.append(MenuItem(title: NSLocalizedString("_create_voice_memo_", comment: ""), value: 50, image: CCGraphics.changeThemingColorImage(UIImage(named: "microphone"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)))
  56. items.append(MenuItem(title: NSLocalizedString("_create_folder_", comment: ""), value: 60, image: CCGraphics.changeThemingColorImage(UIImage(named: "folder"), width: 50, height: 50, color: NCBrandColor.sharedInstance.brandElement)))
  57. if let richdocumentsMimetypes = NCManageDatabase.sharedInstance.getRichdocumentsMimetypes(account: appDelegate.activeAccount) {
  58. if !richdocumentsMimetypes.isEmpty {
  59. items.append(MenuItem(title: NSLocalizedString("_create_new_document_", comment: ""), value: 70, image: UIImage(named: "create_file_document")))
  60. items.append(MenuItem(title: NSLocalizedString("_create_new_spreadsheet_", comment: ""), value: 80, image: UIImage(named: "create_file_xls")))
  61. items.append(MenuItem(title: NSLocalizedString("_create_new_presentation_", comment: ""), value: 90, image: UIImage(named: "create_file_ppt")))
  62. }
  63. }
  64. items.append(CancelButton(title: NSLocalizedString("_cancel_", comment: "")))
  65. let actionSheet = ActionSheet(menu: Menu(items: items), action: { _, item in
  66. if item.value as? Int == 10 { self.appDelegate.activeMain.openAssetsPickerController() }
  67. if item.value as? Int == 20 { self.appDelegate.activeMain.openImportDocumentPicker() }
  68. if item.value as? Int == 21 {
  69. _ = IMCreate(serverUrl: self.appDelegate.activeMain.serverUrl)
  70. }
  71. if item.value as? Int == 30 {
  72. let storyboard = UIStoryboard(name: "NCText", bundle: nil)
  73. let controller = storyboard.instantiateViewController(withIdentifier: "NCText")
  74. controller.modalPresentationStyle = UIModalPresentationStyle.pageSheet
  75. self.appDelegate.activeMain.present(controller, animated: true, completion: nil)
  76. }
  77. if item.value as? Int == 31 {
  78. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  79. return
  80. }
  81. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  82. let viewController = (navigationController as? UINavigationController)?.topViewController as? NCCreateFormUploadDocuments
  83. viewController.typeTemplate = k_template_document
  84. viewController.serverUrl = self.appDelegate.activeMain.serverUrl
  85. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  86. self.appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  87. }
  88. if item.value as? Int == 40 {
  89. if #available(iOS 11.0, *) {
  90. NCCreateScanDocument.sharedInstance.openScannerDocument(viewController: self.appDelegate.activeMain)
  91. }
  92. }
  93. if item.value as? Int == 50 { NCMainCommon.sharedInstance.startAudioRecorder() }
  94. if item.value as? Int == 60 { self.appDelegate.activeMain.createFolder() }
  95. if item.value as? Int == 70 {
  96. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  97. return
  98. }
  99. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  100. let viewController = (navigationController as? UINavigationController).topViewController as? NCCreateFormUploadDocuments
  101. viewController.typeTemplate = k_template_document
  102. viewController.serverUrl = self.appDelegate.activeMain.serverUrl
  103. viewController.titleForm = NSLocalizedString("_create_new_document_", comment: "")
  104. self.appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  105. }
  106. if item.value as? Int == 80 {
  107. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  108. return
  109. }
  110. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  111. let viewController = (navigationController as? UINavigationController).topViewController as? NCCreateFormUploadDocuments
  112. viewController.typeTemplate = k_template_spreadsheet
  113. viewController.serverUrl = self.appDelegate.activeMain.serverUrl
  114. viewController.titleForm = NSLocalizedString("_create_new_spreadsheet_", comment: "")
  115. self.appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  116. }
  117. if item.value as? Int == 90 {
  118. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  119. return
  120. }
  121. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  122. let viewController = (navigationController as? UINavigationController).topViewController as? NCCreateFormUploadDocuments
  123. viewController.typeTemplate = k_template_presentation
  124. viewController.serverUrl = self.appDelegate.activeMain.serverUrl
  125. viewController.titleForm = NSLocalizedString("_create_new_presentation_", comment: "")
  126. self.appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  127. }
  128. if item is CancelButton { print("Cancel buttons has the value `true`") }
  129. })
  130. actionSheet.present(in: viewController, from: view)
  131. }
  132. }