|
@@ -88,36 +88,13 @@ class NCTransfers: NCCollectionViewCommon {
|
|
|
override func reloadDataSource() {
|
|
|
super.reloadDataSource()
|
|
|
|
|
|
- var ocIds: [String] = []
|
|
|
var sort: String
|
|
|
var ascending: Bool
|
|
|
var directoryOnTop: Bool
|
|
|
-
|
|
|
+
|
|
|
(layout, sort, ascending, groupBy, directoryOnTop, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: layoutKey)
|
|
|
-
|
|
|
- if !isSearching {
|
|
|
-
|
|
|
- if serverUrl == "" {
|
|
|
-
|
|
|
- if let directories = NCManageDatabase.sharedInstance.getTablesDirectory(predicate: NSPredicate(format: "account == %@ AND offline == true", appDelegate.account), sorted: "serverUrl", ascending: true) {
|
|
|
- for directory: tableDirectory in directories {
|
|
|
- ocIds.append(directory.ocId)
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- let files = NCManageDatabase.sharedInstance.getTableLocalFiles(predicate: NSPredicate(format: "account == %@ AND offline == true", appDelegate.account), sorted: "fileName", ascending: true)
|
|
|
- for file: tableLocalFile in files {
|
|
|
- ocIds.append(file.ocId)
|
|
|
- }
|
|
|
-
|
|
|
- metadatasSource = NCManageDatabase.sharedInstance.getMetadatas(predicate: NSPredicate(format: "account == %@ AND ocId IN %@", appDelegate.account, ocIds))
|
|
|
-
|
|
|
- } else {
|
|
|
-
|
|
|
- metadatasSource = NCManageDatabase.sharedInstance.getMetadatas(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, serverUrl))
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
+ metadatasSource = NCManageDatabase.sharedInstance.getMetadatas(predicate: NSPredicate(format: "(session CONTAINS 'upload') OR (session CONTAINS 'download')"), page: 1, limit: 100, sorted: "sessionTaskIdentifier", ascending: false)
|
|
|
self.dataSource = NCDataSource.init(metadatasSource: metadatasSource, sort: sort, ascending: ascending, directoryOnTop: directoryOnTop, filterLivePhoto: true)
|
|
|
|
|
|
refreshControl.endRefreshing()
|