|
@@ -28,7 +28,7 @@ class DocumentPickerViewController: UIDocumentPickerExtensionViewController, CCN
|
|
|
// MARK: - Properties
|
|
|
|
|
|
var metadata : CCMetadata?
|
|
|
- var sectionDataSource = [CCSectionDataSource]()
|
|
|
+ var recordsTableMetadata = [TableMetadata]()
|
|
|
let dirGroup = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: capabilitiesGroups)
|
|
|
|
|
|
var activeAccount : String?
|
|
@@ -72,7 +72,6 @@ class DocumentPickerViewController: UIDocumentPickerExtensionViewController, CCN
|
|
|
activePassword = record.password!
|
|
|
activeUrl = record.url!
|
|
|
typeCloud = record.typeCloud!
|
|
|
-
|
|
|
localServerUrl = CCUtility.getHomeServerUrlActiveUrl(activeUrl!, typeCloud: typeCloud!)
|
|
|
|
|
|
} else {
|
|
@@ -103,46 +102,34 @@ class DocumentPickerViewController: UIDocumentPickerExtensionViewController, CCN
|
|
|
let directoryID : String? = CCCoreData.getDirectoryID(fromServerUrl: localServerUrl!, activeAccount: activeAccount!)
|
|
|
let predicate = NSPredicate(format: "(account == %@) AND (directoryID == %@)", activeAccount!, directoryID!)
|
|
|
|
|
|
- let recordsTableMetadata = CCCoreData.getTableMetadata(with: predicate, fieldOrder: CCUtility.getOrderSettings()!, ascending: CCUtility.getAscendingSettings())
|
|
|
-
|
|
|
- sectionDataSource = [CCSection.creataDataSourseSectionTableMetadata(recordsTableMetadata, listProgressMetadata: nil, groupByField: "none", replaceDateToExifDate: false, activeAccount: activeAccount)]
|
|
|
+ recordsTableMetadata = CCCoreData.getTableMetadata(with: predicate, fieldOrder: CCUtility.getOrderSettings()!, ascending: CCUtility.getAscendingSettings()) as! [TableMetadata]
|
|
|
|
|
|
tableView.reloadData()
|
|
|
}
|
|
|
-
|
|
|
- /*
|
|
|
- @IBAction func openDocument(_ sender: AnyObject?) {
|
|
|
- let documentURL = self.documentStorageURL!.appendingPathComponent("Untitled.txt")
|
|
|
-
|
|
|
- // TODO: if you do not have a corresponding file provider, you must ensure that the URL returned here is backed by a file
|
|
|
- self.dismissGrantingAccess(to: documentURL)
|
|
|
- }
|
|
|
-
|
|
|
- override func prepareForPresentation(in mode: UIDocumentPickerMode) {
|
|
|
- // TODO: present a view controller appropriate for picker mode here
|
|
|
- }
|
|
|
- */
|
|
|
}
|
|
|
|
|
|
-/*
|
|
|
// MARK: - UITableViewDataSource
|
|
|
extension DocumentPickerViewController: UITableViewDataSource {
|
|
|
|
|
|
// MARK: - CellIdentifiers
|
|
|
fileprivate enum CellIdentifier: String {
|
|
|
- case NoteCell = "noteCell"
|
|
|
+ case Cell = "Cell"
|
|
|
}
|
|
|
|
|
|
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
|
|
|
- return notes.count
|
|
|
+
|
|
|
+ return recordsTableMetadata.count
|
|
|
}
|
|
|
|
|
|
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
|
|
|
- let cell = tableView.dequeueReusableCell(withIdentifier: CellIdentifier.NoteCell.rawValue, for: indexPath)
|
|
|
- let note = notes[(indexPath as NSIndexPath).row]
|
|
|
- cell.textLabel?.text = note.title
|
|
|
+
|
|
|
+ let cell = tableView.dequeueReusableCell(withIdentifier: CellIdentifier.Cell.rawValue, for: indexPath)
|
|
|
+
|
|
|
+ let record = recordsTableMetadata[(indexPath as NSIndexPath).row]
|
|
|
+
|
|
|
+ //let note = notes[(indexPath as NSIndexPath).row]
|
|
|
+ cell.textLabel?.text = record.fileName
|
|
|
return cell
|
|
|
}
|
|
|
}
|
|
|
-*/
|
|
|
|