Skip to content

Commit eb9edc7

Browse files
Jon Peterssonbuggmagnet
Jon Petersson
authored andcommitted
Allow deleting custom lists
1 parent ea865a0 commit eb9edc7

File tree

6 files changed

+42
-25
lines changed

6 files changed

+42
-25
lines changed

ios/MullvadSettings/CustomListRepository.swift

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

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

+28-14
Original file line numberDiff line numberDiff line change
@@ -158,26 +158,40 @@ class CustomListViewController: UIViewController {
158158
}
159159

160160
private func onDelete() {
161-
// TODO: Show error dialog.
162-
delegate?.customListDidDelete()
163-
}
161+
let message = NSMutableAttributedString(
162+
markdownString: NSLocalizedString(
163+
"CUSTOM_LISTS_DELETE_PROMPT",
164+
tableName: "CustomLists",
165+
value: "Do you want to delete the list **\(subject.value.name)**?",
166+
comment: ""
167+
),
168+
options: MarkdownStylingOptions(font: .preferredFont(forTextStyle: .body))
169+
)
164170

165-
private func showSaveErrorAlert() {
166171
let presentation = AlertPresentation(
167-
id: "api-custom-lists-save-list-alert",
172+
id: "api-custom-lists-delete-list-alert",
168173
icon: .alert,
169-
message: NSLocalizedString(
170-
"CUSTOM_LISTS_SAVE_ERROR_PROMPT",
171-
tableName: "APIAccess",
172-
value: "List name is already taken.",
173-
comment: ""
174-
),
174+
attributedMessage: message,
175175
buttons: [
176176
AlertAction(
177177
title: NSLocalizedString(
178-
"CUSTOM_LISTS_OK_BUTTON",
179-
tableName: "APIAccess",
180-
value: "Got it!",
178+
"CUSTOM_LISTS_DELETE_BUTTON",
179+
tableName: "CustomLists",
180+
value: "Delete list",
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: "CustomLists",
194+
value: "Cancel",
181195
comment: ""
182196
),
183197
style: .default

ios/MullvadVPN/Coordinators/CustomLists/EditCustomListCoordinator.swift

+7-4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import UIKit
1414
class EditCustomListCoordinator: Coordinator, Presentable, Presenting {
1515
let navigationController: UINavigationController
1616
let customListInteractor: CustomListInteractorProtocol
17+
let customList: CustomList
1718

1819
var presentedViewController: UIViewController {
1920
navigationController
@@ -23,18 +24,20 @@ class EditCustomListCoordinator: Coordinator, Presentable, Presenting {
2324

2425
init(
2526
navigationController: UINavigationController,
26-
customListInteractor: CustomListInteractorProtocol
27+
customListInteractor: CustomListInteractorProtocol,
28+
customList: CustomList
2729
) {
2830
self.navigationController = navigationController
2931
self.customListInteractor = customListInteractor
32+
self.customList = customList
3033
}
3134

3235
func start() {
3336
let subject = CurrentValueSubject<CustomListViewModel, Never>(
3437
CustomListViewModel(
35-
id: UUID(),
36-
name: "A list",
37-
locations: [],
38+
id: customList.id,
39+
name: customList.name,
40+
locations: customList.locations,
3841
tableSections: [.name, .editLocations, .deleteList]
3942
)
4043
)

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/MullvadVPN/View controllers/Alert/AlertViewController.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@ class AlertViewController: UIViewController {
231231
style.lineBreakMode = .byWordWrapping
232232

233233
label.attributedText = NSAttributedString(
234-
markdownString: message,
235-
options: MarkdownStylingOptions(font: font, paragraphStyle: style)
234+
string: message,
235+
attributes: [.paragraphStyle: style]
236236
)
237237
label.font = font
238238
label.textColor = .white.withAlphaComponent(0.8)

0 commit comments

Comments
 (0)