Skip to content

Commit 68f4125

Browse files
author
Jon Petersson
committed
Allow deleting custom lists
1 parent 2698d9f commit 68f4125

File tree

6 files changed

+37
-14
lines changed

6 files changed

+37
-14
lines changed

ios/MullvadSettings/CustomListRepository.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public enum CustomRelayListError: LocalizedError, Equatable {
1818
switch self {
1919
case .duplicateName:
2020
NSLocalizedString(
21-
"DUPLICATE_CUSTOM_LIST_ERROR",
21+
"DUPLICATE_CUSTOM_LISTS_ERROR",
2222
tableName: "CustomListRepository",
2323
value: "Name is already taken.",
2424
comment: ""

ios/MullvadVPN/Coordinators/CustomLists/AddCustomListCoordinator.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ class AddCustomListCoordinator: Coordinator, Presentable, Presenting {
4242
controller.delegate = self
4343

4444
controller.navigationItem.title = NSLocalizedString(
45-
"CUSTOM_LIST_NAVIGATION_EDIT_TITLE",
45+
"CUSTOM_LISTS_NAVIGATION_EDIT_TITLE",
4646
tableName: "CustomLists",
4747
value: "New custom list",
4848
comment: ""
4949
)
5050

5151
controller.saveBarButton.title = NSLocalizedString(
52-
"CUSTOM_LIST_NAVIGATION_CREATE_BUTTON",
52+
"CUSTOM_LISTS_NAVIGATION_CREATE_BUTTON",
5353
tableName: "CustomLists",
5454
value: "Create",
5555
comment: ""

ios/MullvadVPN/Coordinators/CustomLists/CustomListViewController.swift

+22-8
Original file line numberDiff line numberDiff line change
@@ -154,30 +154,44 @@ class CustomListViewController: UIViewController {
154154
} catch {
155155
validationErrors.insert(.name)
156156
dataSourceConfiguration?.set(validationErrors: validationErrors)
157+
showSaveErrorAlert()
157158
}
158159
}
159160

160161
private func onDelete() {
161-
// TODO: Show error dialog.
162-
delegate?.customListDidDelete()
162+
showDeleteAlert()
163163
}
164164

165-
private func showSaveErrorAlert() {
165+
private func showDeleteAlert() {
166166
let presentation = AlertPresentation(
167-
id: "api-custom-lists-save-list-alert",
167+
id: "api-custom-lists-delete-list-alert",
168168
icon: .alert,
169169
message: NSLocalizedString(
170-
"CUSTOM_LISTS_SAVE_ERROR_PROMPT",
170+
"CUSTOM_LISTS_DELETE_PROMPT",
171171
tableName: "APIAccess",
172-
value: "List name is already taken.",
172+
value: "Delete \(subject.value.name)?",
173173
comment: ""
174174
),
175175
buttons: [
176176
AlertAction(
177177
title: NSLocalizedString(
178-
"CUSTOM_LISTS_OK_BUTTON",
178+
"CUSTOM_LISTS_DELETE_BUTTON",
179179
tableName: "APIAccess",
180-
value: "Got it!",
180+
value: "Delete",
181+
comment: ""
182+
),
183+
style: .destructive,
184+
handler: {
185+
self.interactor.deleteCustomList(id: self.subject.value.id)
186+
self.dismiss(animated: true)
187+
self.delegate?.customListDidDelete()
188+
}
189+
),
190+
AlertAction(
191+
title: NSLocalizedString(
192+
"CUSTOM_LISTS_CANCEL_BUTTON",
193+
tableName: "APIAccess",
194+
value: "Cancel",
181195
comment: ""
182196
),
183197
style: .default

ios/MullvadVPN/Coordinators/SelectLocationCoordinator.swift

+10-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
//
88

99
import MullvadREST
10+
import MullvadSettings
1011
import MullvadTypes
1112
import Routing
1213
import UIKit
@@ -73,9 +74,17 @@ class SelectLocationCoordinator: Coordinator, Presentable, Presenting, RelayCach
7374
selectLocationViewController.navigateToFilter = { [weak self] in
7475
guard let self else { return }
7576

76-
let coordinator = makeRelayFilterCoordinator(forModalPresentation: true)
77+
// let coordinator = makeRelayFilterCoordinator(forModalPresentation: true)
78+
let coordinator = AddCustomListCoordinator(
79+
navigationController: CustomNavigationController(),
80+
customListInteractor: CustomListInteractor(repository: CustomListRepository())
81+
)
7782
coordinator.start()
7883

84+
coordinator.didFinish = {
85+
coordinator.dismiss(animated: true)
86+
}
87+
7988
presentChild(coordinator, animated: true)
8089
}
8190

ios/MullvadVPN/Coordinators/Settings/APIAccess/Edit/EditAccessMethodViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ class EditAccessMethodViewController: UITableViewController {
333333
id: "api-access-methods-delete-method-alert",
334334
icon: .alert,
335335
message: NSLocalizedString(
336-
"METHOD_SETTINGS_SAVE_PROMPT",
336+
"METHOD_SETTINGS_DELETE_PROMPT",
337337
tableName: "APIAccess",
338338
value: "Delete \(methodName)?",
339339
comment: ""

ios/MullvadVPNTests/CustomListRepositoryTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class CustomListRepositoryTests: XCTestCase {
3131
func testFailedAddingDuplicateCustomList() throws {
3232
let name = "Netflix"
3333
let item = try XCTUnwrap(repository.create(name, locations: []))
34-
34+
3535
XCTAssertThrowsError(try repository.create(item.name, locations: [])) { error in
3636
XCTAssertEqual(error as? CustomRelayListError, CustomRelayListError.duplicateName)
3737
}

0 commit comments

Comments
 (0)