|
@@ -1,8 +1,8 @@
|
|
//
|
|
//
|
|
-// NCCollectionCommon.swift
|
|
|
|
|
|
+// NCCollectionViewCommon.swift
|
|
// Nextcloud
|
|
// Nextcloud
|
|
//
|
|
//
|
|
-// Created by Marino Faggiana on 08/09/2020.
|
|
|
|
|
|
+// Created by Marino Faggiana on 12/09/2020.
|
|
// Copyright © 2020 Marino Faggiana. All rights reserved.
|
|
// Copyright © 2020 Marino Faggiana. All rights reserved.
|
|
//
|
|
//
|
|
// Author Marino Faggiana <marino.faggiana@nextcloud.com>
|
|
// Author Marino Faggiana <marino.faggiana@nextcloud.com>
|
|
@@ -22,466 +22,6 @@
|
|
//
|
|
//
|
|
|
|
|
|
import Foundation
|
|
import Foundation
|
|
-import TLPhotoPicker
|
|
|
|
-import ZIPFoundation
|
|
|
|
-import NCCommunication
|
|
|
|
-
|
|
|
|
-class NCCollectionCommon: NSObject {
|
|
|
|
-
|
|
|
|
- @objc static let shared: NCCollectionCommon = {
|
|
|
|
- let instance = NCCollectionCommon()
|
|
|
|
- instance.createImagesThemingColor()
|
|
|
|
- return instance
|
|
|
|
- }()
|
|
|
|
-
|
|
|
|
- struct NCCollectionCommonImages {
|
|
|
|
- static var cellSharedImage = UIImage()
|
|
|
|
- static var cellCanShareImage = UIImage()
|
|
|
|
- static var cellShareByLinkImage = UIImage()
|
|
|
|
- static var cellFavouriteImage = UIImage()
|
|
|
|
- static var cellMoreImage = UIImage()
|
|
|
|
- static var cellCommentImage = UIImage()
|
|
|
|
- static var cellLivePhotoImage = UIImage()
|
|
|
|
-
|
|
|
|
- static var cellFolderEncryptedImage = UIImage()
|
|
|
|
- static var cellFolderSharedWithMeImage = UIImage()
|
|
|
|
- static var cellFolderPublicImage = UIImage()
|
|
|
|
- static var cellFolderGroupImage = UIImage()
|
|
|
|
- static var cellFolderExternalImage = UIImage()
|
|
|
|
- static var cellFolderAutomaticUploadImage = UIImage()
|
|
|
|
- static var cellFolderImage = UIImage()
|
|
|
|
-
|
|
|
|
- static var cellPlayImage = UIImage()
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // MARK: -
|
|
|
|
-
|
|
|
|
- @objc func createImagesThemingColor() {
|
|
|
|
- NCCollectionCommonImages.cellSharedImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), width: 100, height: 100, color: NCBrandColor.sharedInstance.textView)
|
|
|
|
- NCCollectionCommonImages.cellCanShareImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), width: 100, height: 100, color: NCBrandColor.sharedInstance.optionItem)
|
|
|
|
- NCCollectionCommonImages.cellShareByLinkImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "sharebylink"), width: 100, height: 100, color: NCBrandColor.sharedInstance.optionItem)
|
|
|
|
- NCCollectionCommonImages.cellFavouriteImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "favorite"), width: 100, height: 100, color: NCBrandColor.sharedInstance.yellowFavorite)
|
|
|
|
- NCCollectionCommonImages.cellMoreImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "more"), width: 50, height: 50, color: NCBrandColor.sharedInstance.optionItem)
|
|
|
|
- NCCollectionCommonImages.cellCommentImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "comment"), width: 30, height: 30, color: NCBrandColor.sharedInstance.graySoft)
|
|
|
|
- NCCollectionCommonImages.cellLivePhotoImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "livePhoto"), width: 100, height: 100, color: NCBrandColor.sharedInstance.textView)
|
|
|
|
-
|
|
|
|
- NCCollectionCommonImages.cellFolderEncryptedImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folderEncrypted"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
|
|
|
|
- NCCollectionCommonImages.cellFolderSharedWithMeImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_shared_with_me"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
|
|
|
|
- NCCollectionCommonImages.cellFolderPublicImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_public"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
|
|
|
|
- NCCollectionCommonImages.cellFolderGroupImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_group"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
|
|
|
|
- NCCollectionCommonImages.cellFolderExternalImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_external"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
|
|
|
|
- NCCollectionCommonImages.cellFolderAutomaticUploadImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folderAutomaticUpload"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
|
|
|
|
- NCCollectionCommonImages.cellFolderImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
|
|
|
|
-
|
|
|
|
- NCCollectionCommonImages.cellPlayImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "play"), width: 100, height: 100, color: .white)
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // MARK: -
|
|
|
|
-
|
|
|
|
- func cellForItemAt(indexPath: IndexPath, collectionView: UICollectionView, cell: UICollectionViewCell, metadata: tableMetadata, metadataFolder: tableMetadata?, serverUrl: String, isEditMode: Bool, selectocId: [String], autoUploadFileName: String, autoUploadDirectory: String, hideButtonMore: Bool, downloadThumbnail: Bool, shares: [tableShare]?, source: UIViewController, dataSource: NCDataSource?) {
|
|
|
|
-
|
|
|
|
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
|
|
|
|
- var tableShare: tableShare?
|
|
|
|
-
|
|
|
|
- // Share
|
|
|
|
- if shares != nil {
|
|
|
|
- for share in shares! {
|
|
|
|
- if share.fileName == metadata.fileName {
|
|
|
|
- tableShare = share
|
|
|
|
- break
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Download preview
|
|
|
|
- if downloadThumbnail {
|
|
|
|
- NCOperationQueue.shared.downloadThumbnail(metadata: metadata, urlBase: appDelegate.urlBase, view: collectionView, indexPath: indexPath)
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- var isShare = false
|
|
|
|
- var isMounted = false
|
|
|
|
-
|
|
|
|
- if metadataFolder != nil {
|
|
|
|
- isShare = metadata.permissions.contains(k_permission_shared) && !metadataFolder!.permissions.contains(k_permission_shared)
|
|
|
|
- isMounted = metadata.permissions.contains(k_permission_mounted) && !metadataFolder!.permissions.contains(k_permission_mounted)
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- if cell is NCListCell {
|
|
|
|
-
|
|
|
|
- let cell = cell as! NCListCell
|
|
|
|
-
|
|
|
|
- cell.delegate = source as? NCListCellDelegate
|
|
|
|
-
|
|
|
|
- cell.objectId = metadata.ocId
|
|
|
|
- cell.indexPath = indexPath
|
|
|
|
- cell.labelTitle.text = metadata.fileNameView
|
|
|
|
- cell.labelTitle.textColor = NCBrandColor.sharedInstance.textView
|
|
|
|
- cell.imageStatus.image = nil
|
|
|
|
- cell.imageLocal.image = nil
|
|
|
|
- cell.imageFavorite.image = nil
|
|
|
|
- cell.imageShared.image = nil
|
|
|
|
-
|
|
|
|
- cell.imageItem.image = nil
|
|
|
|
- cell.imageItem.backgroundColor = nil
|
|
|
|
-
|
|
|
|
- if metadata.directory {
|
|
|
|
-
|
|
|
|
- if metadata.e2eEncrypted {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderEncryptedImage
|
|
|
|
- } else if isShare {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
|
|
|
|
- } else if (tableShare != nil && tableShare!.shareType != 3) {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
|
|
|
|
- } else if (tableShare != nil && tableShare!.shareType == 3) {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderPublicImage
|
|
|
|
- } else if metadata.mountType == "group" {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderGroupImage
|
|
|
|
- } else if isMounted {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderExternalImage
|
|
|
|
- } else if metadata.fileName == autoUploadFileName && serverUrl == autoUploadDirectory {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderAutomaticUploadImage
|
|
|
|
- } else {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderImage
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date)
|
|
|
|
-
|
|
|
|
- let lockServerUrl = CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)!
|
|
|
|
- let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, lockServerUrl))
|
|
|
|
-
|
|
|
|
- // Local image: offline
|
|
|
|
- if tableDirectory != nil && tableDirectory!.offline {
|
|
|
|
- cell.imageLocal.image = UIImage.init(named: "offlineFlag")
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- } else {
|
|
|
|
-
|
|
|
|
- if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
|
|
|
|
- cell.imageItem.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
|
|
|
|
- } else {
|
|
|
|
- if metadata.hasPreview {
|
|
|
|
- cell.imageItem.backgroundColor = .lightGray
|
|
|
|
- } else {
|
|
|
|
- if metadata.iconName.count > 0 {
|
|
|
|
- cell.imageItem.image = UIImage.init(named: metadata.iconName)
|
|
|
|
- } else {
|
|
|
|
- cell.imageItem.image = UIImage.init(named: "file")
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date) + " · " + CCUtility.transformedSize(metadata.size)
|
|
|
|
-
|
|
|
|
- // image local
|
|
|
|
- let size = CCUtility.fileProviderStorageSize(metadata.ocId, fileNameView: metadata.fileNameView)
|
|
|
|
- if size > 0 {
|
|
|
|
- let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
|
|
|
|
- if tableLocalFile == nil && size == metadata.size {
|
|
|
|
- NCManageDatabase.sharedInstance.addLocalFile(metadata: metadata)
|
|
|
|
- }
|
|
|
|
- if tableLocalFile?.offline ?? false {
|
|
|
|
- cell.imageLocal.image = UIImage.init(named: "offlineFlag")
|
|
|
|
- } else{
|
|
|
|
- cell.imageLocal.image = UIImage.init(named: "local")
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // image Favorite
|
|
|
|
- if metadata.favorite {
|
|
|
|
- cell.imageFavorite.image = NCCollectionCommonImages.cellFavouriteImage
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Share image
|
|
|
|
- if (isShare) {
|
|
|
|
- cell.imageShared.image = NCCollectionCommonImages.cellSharedImage
|
|
|
|
- } else if (tableShare != nil && tableShare!.shareType == 3) {
|
|
|
|
- cell.imageShared.image = NCCollectionCommonImages.cellShareByLinkImage
|
|
|
|
- } else if (tableShare != nil && tableShare!.shareType != 3) {
|
|
|
|
- cell.imageShared.image = NCCollectionCommonImages.cellSharedImage
|
|
|
|
- } else {
|
|
|
|
- cell.imageShared.image = NCCollectionCommonImages.cellCanShareImage
|
|
|
|
- }
|
|
|
|
- if metadata.ownerId.count > 0 && metadata.ownerId != appDelegate.userID {
|
|
|
|
- // Load avatar
|
|
|
|
- let fileNameSource = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.user, urlBase: appDelegate.urlBase) + "-" + metadata.ownerId + ".png"
|
|
|
|
- let fileNameSourceAvatar = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.user, urlBase: appDelegate.urlBase) + "-avatar-" + metadata.ownerId + ".png"
|
|
|
|
- if FileManager.default.fileExists(atPath: fileNameSourceAvatar) {
|
|
|
|
- cell.imageShared.image = UIImage(contentsOfFile: fileNameSourceAvatar)
|
|
|
|
- } else if FileManager.default.fileExists(atPath: fileNameSource) {
|
|
|
|
- cell.imageShared.image = NCUtility.shared.createAvatar(fileNameSource: fileNameSource, fileNameSourceAvatar: fileNameSourceAvatar)
|
|
|
|
- } else {
|
|
|
|
- NCCommunication.shared.downloadAvatar(userID: metadata.ownerId, fileNameLocalPath: fileNameSource, size: Int(k_avatar_size)) { (account, data, errorCode, errorMessage) in
|
|
|
|
- if errorCode == 0 && account == appDelegate.account {
|
|
|
|
- cell.imageShared.image = NCUtility.shared.createAvatar(fileNameSource: fileNameSource, fileNameSourceAvatar: fileNameSourceAvatar)
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- if isEditMode {
|
|
|
|
- cell.imageItemLeftConstraint.constant = 45
|
|
|
|
- cell.imageSelect.isHidden = false
|
|
|
|
-
|
|
|
|
- if selectocId.contains(metadata.ocId) {
|
|
|
|
- cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedYes"), to: CGSize(width: 50, height: 50), isAspectRation: true)
|
|
|
|
- cell.backgroundView = NCUtility.shared.cellBlurEffect(with: cell.bounds)
|
|
|
|
- } else {
|
|
|
|
- cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedNo"), to: CGSize(width: 50, height: 50), isAspectRation: true)
|
|
|
|
- cell.backgroundView = nil
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- cell.imageItemLeftConstraint.constant = 10
|
|
|
|
- cell.imageSelect.isHidden = true
|
|
|
|
- cell.backgroundView = nil
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Transfer
|
|
|
|
- if metadata.status == k_metadataStatusInDownload || metadata.status == k_metadataStatusDownloading || metadata.status >= k_metadataStatusTypeUpload {
|
|
|
|
- cell.progressView.isHidden = false
|
|
|
|
- cell.setButtonMore(named: "stop")
|
|
|
|
- } else {
|
|
|
|
- cell.progressView.isHidden = true
|
|
|
|
- cell.progressView.progress = 0.0
|
|
|
|
- cell.setButtonMore(named: "more")
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Remove last separator
|
|
|
|
- if collectionView.numberOfItems(inSection: indexPath.section) == indexPath.row + 1 {
|
|
|
|
- cell.separator.isHidden = true
|
|
|
|
- } else {
|
|
|
|
- cell.separator.isHidden = false
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- } else if cell is NCGridCell {
|
|
|
|
-
|
|
|
|
- let cell = cell as! NCGridCell
|
|
|
|
-
|
|
|
|
- cell.delegate = source as? NCGridCellDelegate
|
|
|
|
-
|
|
|
|
- cell.objectId = metadata.ocId
|
|
|
|
- cell.indexPath = indexPath
|
|
|
|
- cell.labelTitle.text = metadata.fileNameView
|
|
|
|
- cell.labelTitle.textColor = NCBrandColor.sharedInstance.textView
|
|
|
|
- cell.imageStatus.image = nil
|
|
|
|
- cell.imageLocal.image = nil
|
|
|
|
- cell.imageFavorite.image = nil
|
|
|
|
-
|
|
|
|
- cell.imageItem.image = nil
|
|
|
|
- cell.imageItem.backgroundColor = nil
|
|
|
|
-
|
|
|
|
- if metadata.directory {
|
|
|
|
-
|
|
|
|
- if metadata.e2eEncrypted {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderEncryptedImage
|
|
|
|
- } else if isShare {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
|
|
|
|
- } else if (tableShare != nil && tableShare!.shareType != 3) {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
|
|
|
|
- } else if (tableShare != nil && tableShare!.shareType == 3) {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderPublicImage
|
|
|
|
- } else if metadata.mountType == "group" {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderGroupImage
|
|
|
|
- } else if isMounted {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderExternalImage
|
|
|
|
- } else if metadata.fileName == autoUploadFileName && serverUrl == autoUploadDirectory {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderAutomaticUploadImage
|
|
|
|
- } else {
|
|
|
|
- cell.imageItem.image = NCCollectionCommonImages.cellFolderImage
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- let lockServerUrl = CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)!
|
|
|
|
- let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, lockServerUrl))
|
|
|
|
-
|
|
|
|
- // Local image: offline
|
|
|
|
- if tableDirectory != nil && tableDirectory!.offline {
|
|
|
|
- cell.imageLocal.image = UIImage.init(named: "offlineFlag")
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- } else {
|
|
|
|
-
|
|
|
|
- if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
|
|
|
|
- cell.imageItem.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
|
|
|
|
- } else {
|
|
|
|
- if metadata.hasPreview {
|
|
|
|
- cell.imageItem.backgroundColor = .lightGray
|
|
|
|
- } else {
|
|
|
|
- if metadata.iconName.count > 0 {
|
|
|
|
- cell.imageItem.image = UIImage.init(named: metadata.iconName)
|
|
|
|
- } else {
|
|
|
|
- cell.imageItem.image = UIImage.init(named: "file")
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // image Local
|
|
|
|
- let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
|
|
|
|
- if tableLocalFile != nil && CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
|
|
|
|
- if tableLocalFile!.offline { cell.imageLocal.image = UIImage.init(named: "offlineFlag") }
|
|
|
|
- else { cell.imageLocal.image = UIImage.init(named: "local") }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // image Favorite
|
|
|
|
- if metadata.favorite {
|
|
|
|
- cell.imageFavorite.image = NCCollectionCommonImages.cellFavouriteImage
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- if isEditMode {
|
|
|
|
- cell.imageSelect.isHidden = false
|
|
|
|
- if selectocId.contains(metadata.ocId) {
|
|
|
|
- cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedYes"), to: CGSize(width: 50, height: 50), isAspectRation: true)
|
|
|
|
- cell.backgroundView = NCUtility.shared.cellBlurEffect(with: cell.bounds)
|
|
|
|
- } else {
|
|
|
|
- cell.imageSelect.isHidden = true
|
|
|
|
- cell.backgroundView = nil
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- cell.imageSelect.isHidden = true
|
|
|
|
- cell.backgroundView = nil
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Transfer
|
|
|
|
- if metadata.status == k_metadataStatusInDownload || metadata.status == k_metadataStatusDownloading || metadata.status >= k_metadataStatusTypeUpload {
|
|
|
|
- cell.progressView.isHidden = false
|
|
|
|
- cell.setButtonMore(named: "stop")
|
|
|
|
- } else {
|
|
|
|
- cell.progressView.isHidden = true
|
|
|
|
- cell.progressView.progress = 0.0
|
|
|
|
- cell.setButtonMore(named: "more")
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-// MARK: - List Layout
|
|
|
|
-
|
|
|
|
-class NCListLayout: UICollectionViewFlowLayout {
|
|
|
|
-
|
|
|
|
- let itemHeight: CGFloat = 60
|
|
|
|
-
|
|
|
|
- override init() {
|
|
|
|
- super.init()
|
|
|
|
-
|
|
|
|
- sectionHeadersPinToVisibleBounds = false
|
|
|
|
-
|
|
|
|
- minimumInteritemSpacing = 0
|
|
|
|
- minimumLineSpacing = 1
|
|
|
|
-
|
|
|
|
- self.scrollDirection = .vertical
|
|
|
|
- self.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- required init?(coder aDecoder: NSCoder) {
|
|
|
|
- fatalError("init(coder:) has not been implemented")
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- override var itemSize: CGSize {
|
|
|
|
- get {
|
|
|
|
- if let collectionView = collectionView {
|
|
|
|
- let itemWidth: CGFloat = collectionView.frame.width
|
|
|
|
- return CGSize(width: itemWidth, height: self.itemHeight)
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Default fallback
|
|
|
|
- return CGSize(width: 100, height: 100)
|
|
|
|
- }
|
|
|
|
- set {
|
|
|
|
- super.itemSize = newValue
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
|
|
|
|
- return proposedContentOffset
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-// MARK: - Grid Layout
|
|
|
|
-
|
|
|
|
-class NCGridLayout: UICollectionViewFlowLayout {
|
|
|
|
-
|
|
|
|
- var heightLabelPlusButton: CGFloat = 45
|
|
|
|
- var marginLeftRight: CGFloat = 6
|
|
|
|
- var itemForLine: CGFloat = 3
|
|
|
|
-
|
|
|
|
- override init() {
|
|
|
|
- super.init()
|
|
|
|
-
|
|
|
|
- sectionHeadersPinToVisibleBounds = false
|
|
|
|
-
|
|
|
|
- minimumInteritemSpacing = 1
|
|
|
|
- minimumLineSpacing = marginLeftRight
|
|
|
|
-
|
|
|
|
- self.scrollDirection = .vertical
|
|
|
|
- self.sectionInset = UIEdgeInsets(top: 10, left: marginLeftRight, bottom: 0, right: marginLeftRight)
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- required init?(coder aDecoder: NSCoder) {
|
|
|
|
- fatalError("init(coder:) has not been implemented")
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- override var itemSize: CGSize {
|
|
|
|
- get {
|
|
|
|
- if let collectionView = collectionView {
|
|
|
|
-
|
|
|
|
- let itemWidth: CGFloat = (collectionView.frame.width - marginLeftRight * 2 - marginLeftRight * (itemForLine - 1)) / itemForLine
|
|
|
|
- let itemHeight: CGFloat = itemWidth + heightLabelPlusButton
|
|
|
|
-
|
|
|
|
- return CGSize(width: itemWidth, height: itemHeight)
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Default fallback
|
|
|
|
- return CGSize(width: 100, height: 100)
|
|
|
|
- }
|
|
|
|
- set {
|
|
|
|
- super.itemSize = newValue
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
|
|
|
|
- return proposedContentOffset
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-// MARK: - NCSelect + Delegate
|
|
|
|
-
|
|
|
|
-extension NCCollectionCommon: NCSelectDelegate {
|
|
|
|
-
|
|
|
|
- func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, array: [Any], buttonType: String, overwrite: Bool) {
|
|
|
|
- if (serverUrl != nil && array.count > 0) {
|
|
|
|
- var move = true
|
|
|
|
- if buttonType == "done1" { move = false }
|
|
|
|
-
|
|
|
|
- for metadata in array as! [tableMetadata] {
|
|
|
|
- NCOperationQueue.shared.copyMove(metadata: metadata, serverUrl: serverUrl!, overwrite: overwrite, move: move)
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- func openSelectView(viewController: UIViewController, array: [Any]) {
|
|
|
|
-
|
|
|
|
- let navigationController = UIStoryboard.init(name: "NCSelect", bundle: nil).instantiateInitialViewController() as! UINavigationController
|
|
|
|
- let vc = navigationController.topViewController as! NCSelect
|
|
|
|
-
|
|
|
|
- vc.delegate = self
|
|
|
|
- vc.hideButtonCreateFolder = false
|
|
|
|
- vc.selectFile = false
|
|
|
|
- vc.includeDirectoryE2EEncryption = false
|
|
|
|
- vc.includeImages = false
|
|
|
|
- vc.type = ""
|
|
|
|
- vc.titleButtonDone = NSLocalizedString("_move_", comment: "")
|
|
|
|
- vc.titleButtonDone1 = NSLocalizedString("_copy_",comment: "")
|
|
|
|
- vc.isButtonDone1Hide = false
|
|
|
|
- vc.isOverwriteHide = false
|
|
|
|
- vc.keyLayout = k_layout_view_move
|
|
|
|
- vc.array = array
|
|
|
|
-
|
|
|
|
- navigationController.modalPresentationStyle = .fullScreen
|
|
|
|
- viewController.present(navigationController, animated: true, completion: nil)
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-// MARK: - Nextcloud CollectionView Common
|
|
|
|
|
|
|
|
class NCCollectionViewCommon: UIViewController, UIGestureRecognizerDelegate, UISearchResultsUpdating, UISearchControllerDelegate, UISearchBarDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
|
|
class NCCollectionViewCommon: UIViewController, UIGestureRecognizerDelegate, UISearchResultsUpdating, UISearchControllerDelegate, UISearchBarDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
|
|
|
|
|
|
@@ -879,7 +419,7 @@ class NCCollectionViewCommon: UIViewController, UIGestureRecognizerDelegate, UIS
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|