Move read toggle to be swipe-right on timeline
This commit is contained in:
parent
0000e03083
commit
9a4d915e0b
@ -179,8 +179,7 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
|
|||||||
|
|
||||||
// MARK: - Table view
|
// MARK: - Table view
|
||||||
|
|
||||||
override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
|
override func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
|
||||||
|
|
||||||
guard let article = dataSource.itemIdentifier(for: indexPath) else { return nil }
|
guard let article = dataSource.itemIdentifier(for: indexPath) else { return nil }
|
||||||
|
|
||||||
// Set up the read action
|
// Set up the read action
|
||||||
@ -196,6 +195,13 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
|
|||||||
readAction.image = article.status.read ? AppAssets.circleClosedImage : AppAssets.circleOpenImage
|
readAction.image = article.status.read ? AppAssets.circleClosedImage : AppAssets.circleOpenImage
|
||||||
readAction.backgroundColor = AppAssets.primaryAccentColor
|
readAction.backgroundColor = AppAssets.primaryAccentColor
|
||||||
|
|
||||||
|
return UISwipeActionsConfiguration(actions: [readAction])
|
||||||
|
}
|
||||||
|
|
||||||
|
override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
|
||||||
|
|
||||||
|
guard let article = dataSource.itemIdentifier(for: indexPath) else { return nil }
|
||||||
|
|
||||||
// Set up the star action
|
// Set up the star action
|
||||||
let starTitle = article.status.starred ?
|
let starTitle = article.status.starred ?
|
||||||
NSLocalizedString("Unstar", comment: "Unstar") :
|
NSLocalizedString("Unstar", comment: "Unstar") :
|
||||||
@ -253,8 +259,7 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
|
|||||||
moreAction.image = AppAssets.moreImage
|
moreAction.image = AppAssets.moreImage
|
||||||
moreAction.backgroundColor = UIColor.systemGray
|
moreAction.backgroundColor = UIColor.systemGray
|
||||||
|
|
||||||
let configuration = UISwipeActionsConfiguration(actions: [readAction, starAction, moreAction])
|
return UISwipeActionsConfiguration(actions: [starAction, moreAction])
|
||||||
return configuration
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user