@@ -158,26 +158,40 @@ class CustomListViewController: UIViewController {
158
158
}
159
159
160
160
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
+ )
164
170
165
- private func showSaveErrorAlert( ) {
166
171
let presentation = AlertPresentation (
167
- id: " api-custom-lists-save -list-alert " ,
172
+ id: " api-custom-lists-delete -list-alert " ,
168
173
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,
175
175
buttons: [
176
176
AlertAction (
177
177
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 " ,
181
195
comment: " "
182
196
) ,
183
197
style: . default
0 commit comments