[ios] [mapsme-9024] disable sharing options in action sheet and list settings when category is empty

This commit is contained in:
o.bolovintseva 2018-11-27 18:34:01 +03:00 committed by Olesia Bolovintseva
parent aee8dd13e4
commit 899ee1c5ee
2 changed files with 14 additions and 2 deletions

View file

@ -132,9 +132,11 @@ final class BMCViewController: MWMViewController {
self.shareCategoryFile(category: category, anchor: anchor)
}))
let share = L("sharing_options").capitalized
actionSheet.addAction(UIAlertAction(title: share, style: .default, handler: { _ in
let shareAction = UIAlertAction(title: share, style: .default, handler: { _ in
self.shareCategory(category: category, anchor: anchor)
}))
})
shareAction.isEnabled = MWMBookmarksManager.shared().isCategoryNotEmpty(category.identifier)
actionSheet.addAction(shareAction)
let delete = L("delete_list").capitalized
let deleteAction = UIAlertAction(title: delete, style: .destructive, handler: { [viewModel] _ in
viewModel!.deleteCategory(category: category)

View file

@ -38,6 +38,16 @@ class CategorySettingsViewController: MWMTableViewController {
navigationItem.rightBarButtonItem = saveButton
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
switch section {
case 0:
// if there are no bookmarks in category, hide 'sharing options' row
return MWMBookmarksManager.shared().isCategoryNotEmpty(categoryId) ? 2 : 1
default:
return 1
}
}
func configureAccessStatus() {
switch MWMBookmarksManager.shared().getCategoryAccessStatus(categoryId) {
case .local: