Skip to content

Commit 8beace5

Browse files
mojganiibuggmagnet
authored andcommitted
Revise navigation for empty Custom Lists
1 parent ef5c33f commit 8beace5

File tree

2 files changed

+8
-23
lines changed

2 files changed

+8
-23
lines changed

ios/MullvadVPN/Coordinators/CustomLists/ListCustomListCoordinator.swift

+8-6
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ class ListCustomListCoordinator: Coordinator, Presentable, Presenting {
6262
guard let self else { return }
6363
popToList()
6464
editCustomListCoordinator.removeFromParent()
65-
6665
self.updateRelayConstraints(for: action, in: list)
67-
self.listViewController.updateDataSource(reloadExisting: action == .save)
6866
}
6967

7068
coordinator.start()
@@ -97,9 +95,13 @@ class ListCustomListCoordinator: Coordinator, Presentable, Presenting {
9795
}
9896

9997
private func popToList() {
100-
guard let listController = navigationController.viewControllers
101-
.first(where: { $0 is ListCustomListViewController }) else { return }
102-
103-
navigationController.popToViewController(listController, animated: true)
98+
if interactor.fetchAll().isEmpty {
99+
navigationController.dismiss(animated: true)
100+
didFinish?(self)
101+
} else if let listController = navigationController.viewControllers
102+
.first(where: { $0 is ListCustomListViewController }) {
103+
navigationController.popToViewController(listController, animated: true)
104+
listViewController.updateDataSource(reloadExisting: true, animated: false)
105+
}
104106
}
105107
}

ios/MullvadVPN/Coordinators/CustomLists/ListCustomListViewController.swift

-17
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,6 @@ class ListCustomListViewController: UIViewController {
3434
private var dataSource: DataSource?
3535
private var fetchedItems: [CustomList] = []
3636
private var tableView = UITableView(frame: .zero, style: .plain)
37-
38-
private let emptyListLabel: UILabel = {
39-
let textLabel = UILabel()
40-
textLabel.font = .preferredFont(forTextStyle: .title2)
41-
textLabel.textColor = .secondaryTextColor
42-
textLabel.textAlignment = .center
43-
textLabel.numberOfLines = .zero
44-
textLabel.lineBreakStrategy = []
45-
textLabel.text = NSLocalizedString(
46-
"CustomList",
47-
value: "No custom list to display",
48-
comment: ""
49-
)
50-
return textLabel
51-
}()
52-
5337
var didSelectItem: ((CustomList) -> Void)?
5438
var didFinish: (() -> Void)?
5539

@@ -75,7 +59,6 @@ class ListCustomListViewController: UIViewController {
7559

7660
func updateDataSource(reloadExisting: Bool, animated: Bool = true) {
7761
fetchedItems = interactor.fetchAll()
78-
tableView.backgroundView = fetchedItems.isEmpty ? emptyListLabel : nil
7962
var snapshot = NSDiffableDataSourceSnapshot<SectionIdentifier, ItemIdentifier>()
8063
snapshot.appendSections([.default])
8164

0 commit comments

Comments
 (0)