123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- import UIKit
- import FloatingPanel
- import NCCommunication
- extension NCTrash {
- func toggleMenuMore(with objectId: String, image: UIImage?, isGridCell: Bool) {
- guard let tableTrash = NCManageDatabase.shared.getTrashItem(fileId: objectId, account: appDelegate.account) else {
- return
- }
- var actions: [NCMenuAction] = []
- var iconHeader: UIImage!
- if let icon = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(tableTrash.fileId, etag: tableTrash.fileName)) {
- iconHeader = icon
- } else {
- if tableTrash.directory {
- iconHeader = UIImage(named: "folder")!.image(color: NCBrandColor.shared.gray, size: 50)
- } else {
- iconHeader = UIImage(named: tableTrash.iconName)
- }
- }
- actions.append(
- NCMenuAction(
- title: tableTrash.trashbinFileName,
- icon: iconHeader,
- action: nil
- )
- )
- actions.append(
- NCMenuAction(
- title: NSLocalizedString("_restore_", comment: ""),
- icon: UIImage(named: "restore")!.image(color: NCBrandColor.shared.gray, size: 50),
- action: { _ in
- self.restoreItem(with: objectId)
- }
- )
- )
- actions.append(
- NCMenuAction(
- title: NSLocalizedString("_trash_delete_permanently_", comment: ""),
- icon: NCUtility.shared.loadImage(named: "trash"),
- action: { _ in
- self.deleteItem(with: objectId)
- }
- )
- )
- presentMenu(with: actions)
- }
- }
|