diff --git a/Kiwix-iOS/Controller/Library/LocalBooksController.swift b/Kiwix-iOS/Controller/Library/LocalBooksController.swift
index 940c78a2..ba0105c9 100644
--- a/Kiwix-iOS/Controller/Library/LocalBooksController.swift
+++ b/Kiwix-iOS/Controller/Library/LocalBooksController.swift
@@ -42,23 +42,14 @@ class LocalBooksController: UITableViewController, NSFetchedResultsControllerDel
guard let navController = segue.destination as? UINavigationController,
let bookDetailController = navController.topViewController as? BookDetailController,
let cell = sender as? UITableViewCell,
- let indexPath = tableView.indexPath(for: cell),
- let book = fetchedResultController.object(at: indexPath) as? Book else {return}
+ let indexPath = tableView.indexPath(for: cell) else {return}
+ let book = fetchedResultController.object(at: indexPath)
bookDetailController.book = book
default:
break
}
}
- override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
- super.traitCollectionDidChange(previousTraitCollection)
- let top = tabBarController!.navigationController!.navigationBar.frame.maxY
- let bottom = tabBarController!.tabBar.frame.height
- let inset = UIEdgeInsets(top: top, left: 0, bottom: bottom, right: 0)
- tableView.contentInset = inset
- tableView.scrollIndicatorInsets = inset
- }
-
// MARK: - TableView Data Source
override func numberOfSections(in tableView: UITableView) -> Int {
@@ -77,8 +68,8 @@ class LocalBooksController: UITableViewController, NSFetchedResultsControllerDel
}
func configureCell(_ cell: UITableViewCell, atIndexPath indexPath: IndexPath) {
- guard let book = fetchedResultController.object(at: indexPath) as? Book else {return}
guard let cell = cell as? BasicBookCell else {return}
+ let book = fetchedResultController.object(at: indexPath)
cell.titleLabel.text = book.title
cell.hasPic = book.hasPic
@@ -126,9 +117,10 @@ class LocalBooksController: UITableViewController, NSFetchedResultsControllerDel
override func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
let delete = UITableViewRowAction(style: .destructive, title: LocalizedStrings.remove) { (action, indexPath) -> Void in
- guard let book = self.fetchedResultController.object(at: indexPath) as? Book else {return}
-// let operation = RemoveBookConfirmationAlert(context: self, bookID: book.id)
-// GlobalQueue.shared.addOperation(operation)
+ let book = self.fetchedResultController.object(at: indexPath)
+ // this is where the delete book confirm alert will come in replace of DeleteBookFileOperation
+ let operation = DeleteBookFileOperation(zimID: book.id)
+ GlobalQueue.shared.add(operation: operation)
self.tableView.setEditing(false, animated: true)
}
return [delete]
diff --git a/Kiwix-iOS/Info.plist b/Kiwix-iOS/Info.plist
index 8d51cafb..b09940be 100644
--- a/Kiwix-iOS/Info.plist
+++ b/Kiwix-iOS/Info.plist
@@ -49,7 +49,7 @@
CFBundleVersion
- 1.8.2358
+ 1.8.2376
ITSAppUsesNonExemptEncryption
LSRequiresIPhoneOS
diff --git a/Kiwix-iOSWidgets/Bookmarks/Info.plist b/Kiwix-iOSWidgets/Bookmarks/Info.plist
index 1c316749..3a787d1f 100644
--- a/Kiwix-iOSWidgets/Bookmarks/Info.plist
+++ b/Kiwix-iOSWidgets/Bookmarks/Info.plist
@@ -21,7 +21,7 @@
CFBundleSignature
????
CFBundleVersion
- 1.8.2358
+ 1.8.2376
NSExtension
NSExtensionMainStoryboard
diff --git a/Kiwix.xcodeproj/project.pbxproj b/Kiwix.xcodeproj/project.pbxproj
index 4538b8bf..50b68e3c 100644
--- a/Kiwix.xcodeproj/project.pbxproj
+++ b/Kiwix.xcodeproj/project.pbxproj
@@ -8,6 +8,7 @@
/* Begin PBXBuildFile section */
7356F9FACBB84380CFC8F68F /* Pods_Kiwix_iOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EC884ACBBA260AF741C4C4FE /* Pods_Kiwix_iOS.framework */; };
+ 970A2A221DD562CB0078BB7C /* BookOperations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 970A2A211DD562CB0078BB7C /* BookOperations.swift */; };
970E68BA1D3809A3001E8514 /* MainController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 970E68B71D3809A3001E8514 /* MainController.swift */; };
970E68BB1D3809A3001E8514 /* MainControllerDelegates.swift in Sources */ = {isa = PBXBuildFile; fileRef = 970E68B81D3809A3001E8514 /* MainControllerDelegates.swift */; };
970E7F741D9DB0FC00741290 /* 1.8.xcmappingmodel in Sources */ = {isa = PBXBuildFile; fileRef = 970E7F731D9DB0FC00741290 /* 1.8.xcmappingmodel */; };
@@ -157,6 +158,7 @@
6DCB0E958A1083CA248C5A12 /* Pods-Kiwix-OSX.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Kiwix-OSX.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Kiwix-OSX/Pods-Kiwix-OSX.debug.xcconfig"; sourceTree = ""; };
970722A91D6B4D1700A45620 /* LanguageFilterController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LanguageFilterController.swift; sourceTree = ""; };
970912551D7F452C00BBD5A1 /* 1.8.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = 1.8.xcdatamodel; sourceTree = ""; };
+ 970A2A211DD562CB0078BB7C /* BookOperations.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BookOperations.swift; sourceTree = ""; };
970E68B71D3809A3001E8514 /* MainController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = MainController.swift; path = "Kiwix-iOS/Controller/Main/MainController.swift"; sourceTree = SOURCE_ROOT; };
970E68B81D3809A3001E8514 /* MainControllerDelegates.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = MainControllerDelegates.swift; path = "Kiwix-iOS/Controller/Main/MainControllerDelegates.swift"; sourceTree = SOURCE_ROOT; };
970E7F731D9DB0FC00741290 /* 1.8.xcmappingmodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcmappingmodel; name = 1.8.xcmappingmodel; path = Kiwix/CoreData/Migration/1.8.xcmappingmodel; sourceTree = SOURCE_ROOT; };
@@ -367,6 +369,14 @@
name = Frameworks;
sourceTree = "";
};
+ 970A2A201DD562B60078BB7C /* old */ = {
+ isa = PBXGroup;
+ children = (
+ 97D6811D1D6F70AC00E5FA99 /* RefreshLibraryOperation.swift */,
+ );
+ name = old;
+ sourceTree = "";
+ };
971187051CEB426E00B9909D /* libkiwix */ = {
isa = PBXGroup;
children = (
@@ -760,12 +770,13 @@
97E5712A1CA0525300FF4F1D /* Operation */ = {
isa = PBXGroup;
children = (
+ 970A2A201DD562B60078BB7C /* old */,
97D6811C1D6F70AC00E5FA99 /* GlobalQueue.swift */,
9764CBD21D8083AA00072D6A /* ArticleOperation.swift */,
974F33C51D99CAD700879D35 /* BookmarkOperation.swift */,
97DF259B1D6F7612001648A3 /* BookOperation.swift */,
+ 970A2A211DD562CB0078BB7C /* BookOperations.swift */,
973208281DD223DB00EDD3DC /* RefreshLibrary.swift */,
- 97D6811D1D6F70AC00E5FA99 /* RefreshLibraryOperation.swift */,
97D6811E1D6F70AC00E5FA99 /* ScanLocalBookOperation.swift */,
97D4D64E1D874E6E00C1B065 /* SearchOperation.swift */,
97D681211D6F70AC00E5FA99 /* UpdateWidgetDataSourceOperation.swift */,
@@ -1109,6 +1120,7 @@
97A1FD161D6F71CE00A80EE2 /* DirectoryMonitor.swift in Sources */,
9726591D1D90A64600D1DFFB /* Notifications.swift in Sources */,
971A102C1D022AD5007FC62C /* BarButtonItems.swift in Sources */,
+ 970A2A221DD562CB0078BB7C /* BookOperations.swift in Sources */,
971A10301D022AD5007FC62C /* LTBarButtonItem.swift in Sources */,
97A1FD391D6F724E00A80EE2 /* pathTools.cpp in Sources */,
970E7F811DA0305000741290 /* ControllerRetainer.swift in Sources */,
diff --git a/Kiwix/Operations/BookOperations.swift b/Kiwix/Operations/BookOperations.swift
new file mode 100644
index 00000000..1fd70871
--- /dev/null
+++ b/Kiwix/Operations/BookOperations.swift
@@ -0,0 +1,35 @@
+//
+// Book.swift
+// Kiwix
+//
+// Created by Chris Li on 11/10/16.
+// Copyright © 2016 Wikimedia CH. All rights reserved.
+//
+
+import ProcedureKit
+
+/*
+ Removes all zim file (single & chuncked) and the idx folder that belong to a book
+ */
+
+class DeleteBookFileOperation: Procedure {
+ let zimID: ZimID
+
+ init(zimID: ZimID) {
+ self.zimID = zimID
+ super.init()
+ }
+
+ override func execute() {
+ guard let mainZimURL = ZimMultiReader.shared.readers[zimID]?.fileURL,
+ let fileName = mainZimURL.pathComponents.last else {
+ print("Cannot find reader")
+ finish()
+ return
+ }
+
+ print(fileName)
+
+ finish()
+ }
+}