Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MWMDefaultAlert.mm « DefaultAlert « CustomAlert « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce71576b6b1f613971ab60d590bc37c3b747a21f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
#import "MapsAppDelegate.h"
#import "MapViewController.h"
#import "MWMAlertViewController.h"
#import "MWMDefaultAlert.h"
#import "MWMPlacePageViewManager.h"
#import "Statistics.h"
#import "UIButton+RuntimeAttributes.h"
#import "UILabel+RuntimeAttributes.h"

#include "Framework.h"

static CGFloat const kDividerTopConstant = -8.;
static NSString * kStatisticsEvent = @"Default Alert";

@interface MWMDefaultAlert ()

@property (weak, nonatomic) IBOutlet UILabel * messageLabel;
@property (weak, nonatomic) IBOutlet UIButton * rightButton;
@property (weak, nonatomic) IBOutlet UIButton * leftButton;
@property (weak, nonatomic) IBOutlet UILabel * titleLabel;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint * rightButtonWidth;
@property (copy, nonatomic) TMWMVoidBlock rightButtonAction;
@property (copy, nonatomic) TMWMVoidBlock leftButtonAction;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *dividerTop;

@end

static NSString * const kDefaultAlertNibName = @"MWMDefaultAlert";

@implementation MWMDefaultAlert

+ (instancetype)routeFileNotExistAlert
{
  kStatisticsEvent = @"Route File Not Exist Alert";
  return [self defaultAlertWithTitle:L(@"dialog_routing_download_files")
                             message:L(@"dialog_routing_download_and_update_all")
                    rightButtonTitle:L(@"ok")
                     leftButtonTitle:nil
                   rightButtonAction:nil];
}

+ (instancetype)routeNotFoundAlert
{
  kStatisticsEvent = @"Route File Not Exist Alert";
  NSString * message = L(@"dialog_routing_change_start_or_end");
  return [self defaultAlertWithTitle:L(@"dialog_routing_unable_locate_route")
                             message:message
                    rightButtonTitle:L(@"ok")
                     leftButtonTitle:nil
                   rightButtonAction:nil];
}

+ (instancetype)locationServiceNotSupportedAlert
{
  kStatisticsEvent = @"Location Service Not Supported Alert";
  return [self defaultAlertWithTitle:L(@"current_location_unknown_error_title")
                             message:L(@"current_location_unknown_error_message")
                    rightButtonTitle:L(@"ok")
                     leftButtonTitle:nil
                   rightButtonAction:nil];
}

+ (instancetype)locationNotFoundAlertWithOkBlock:(TMWMVoidBlock)okBlock
{
  kStatisticsEvent = @"Location Not Found Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"current_location_unknown_title")
                                                message:L(@"current_location_unknown_message")
                                       rightButtonTitle:L(@"current_location_unknown_continue_button")
                                        leftButtonTitle:L(@"current_location_unknown_stop_button")
                                      rightButtonAction:okBlock];
  [alert setNeedsCloseAlertAfterEnterBackground];
  return alert;
}

+ (instancetype)noConnectionAlert
{
  kStatisticsEvent = @"No Connection Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"common_check_internet_connection_dialog")
                                                message:nil
                                       rightButtonTitle:L(@"ok")
                                        leftButtonTitle:nil
                                      rightButtonAction:nil];
  [alert setNeedsCloseAlertAfterEnterBackground];
  return alert;
}

+ (instancetype)migrationProhibitedAlert
{
  kStatisticsEvent = @"Migration Prohibited Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"no_migration_during_navigation")
                                                message:nil
                                       rightButtonTitle:L(@"ok")
                                        leftButtonTitle:nil
                                      rightButtonAction:nil];
  [alert setNeedsCloseAlertAfterEnterBackground];
  return alert;
}

+ (instancetype)deleteMapProhibitedAlert
{
  kStatisticsEvent = @"Delete Map Prohibited Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"downloader_delete_map")
                                                message:L(@"downloader_delete_map_while_routing_dialog")
                                       rightButtonTitle:L(@"ok")
                                        leftButtonTitle:nil
                                      rightButtonAction:nil];
  [alert setNeedsCloseAlertAfterEnterBackground];
  return alert;
}

+ (instancetype)unsavedEditsAlertWithOkBlock:(TMWMVoidBlock)okBlock
{
  kStatisticsEvent = @"Editor unsaved changes on delete";
  return [self defaultAlertWithTitle:L(@"please_note")
                             message:L(@"downloader_delete_map_dialog")
                    rightButtonTitle:L(@"delete")
                     leftButtonTitle:L(@"cancel")
                   rightButtonAction:okBlock];
}

+ (instancetype)noWiFiAlertWithOkBlock:(TMWMVoidBlock)okBlock
{
  kStatisticsEvent = @"No WiFi Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"download_over_mobile_header")
                                                message:L(@"download_over_mobile_message")
                                       rightButtonTitle:L(@"use_cellular_data")
                                        leftButtonTitle:L(@"cancel")
                                      rightButtonAction:okBlock];
  [alert setNeedsCloseAlertAfterEnterBackground];
  return alert;
}

+ (instancetype)endPointNotFoundAlert
{
  kStatisticsEvent = @"End Point Not Found Alert";
  NSString * message =
      [NSString stringWithFormat:@"%@\n\n%@", L(@"dialog_routing_end_not_determined"),
                                 L(@"dialog_routing_select_closer_end")];
  return [self defaultAlertWithTitle:L(@"dialog_routing_change_end")
                             message:message
                    rightButtonTitle:L(@"ok")
                     leftButtonTitle:nil
                   rightButtonAction:nil];
}

+ (instancetype)startPointNotFoundAlert
{
  kStatisticsEvent = @"Start Point Not Found Alert";
  NSString * message =
      [NSString stringWithFormat:@"%@\n\n%@", L(@"dialog_routing_start_not_determined"),
                                 L(@"dialog_routing_select_closer_start")];
  return [self defaultAlertWithTitle:L(@"dialog_routing_change_start")
                             message:message
                    rightButtonTitle:L(@"ok")
                     leftButtonTitle:nil
                   rightButtonAction:nil];
}

+ (instancetype)internalRoutingErrorAlert
{
  kStatisticsEvent = @"Internal Routing Error Alert";
  NSString * message =
      [NSString stringWithFormat:@"%@\n\n%@", L(@"dialog_routing_application_error"),
                                 L(@"dialog_routing_try_again")];
  return [self defaultAlertWithTitle:L(@"dialog_routing_system_error")
                             message:message
                    rightButtonTitle:L(@"ok")
                     leftButtonTitle:nil
                   rightButtonAction:nil];
}

+ (instancetype)incorrectFeauturePositionAlert
{
  kStatisticsEvent = @"Incorrect Feature Possition Alert";
  return [self defaultAlertWithTitle:L(@"dialog_incorrect_feature_position")
                             message:L(@"message_invalid_feature_position")
                    rightButtonTitle:L(@"ok")
                     leftButtonTitle:nil
                   rightButtonAction:nil];
}

+ (instancetype)internalErrorAlert
{
  kStatisticsEvent = @"Internal Error Alert";
  return [self defaultAlertWithTitle:L(@"dialog_routing_system_error")
                             message:nil
                    rightButtonTitle:L(@"ok")
                     leftButtonTitle:nil
                   rightButtonAction:nil];
}

+ (instancetype)notEnoughSpaceAlert
{
  kStatisticsEvent = @"Not Enough Space Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"migration_download_error_dialog")
                                                message:L(@"migration_no_space_message")
                                       rightButtonTitle:L(@"ok")
                                        leftButtonTitle:nil
                                      rightButtonAction:nil];
  [alert setNeedsCloseAlertAfterEnterBackground];
  return alert;
}

+ (instancetype)invalidUserNameOrPasswordAlert
{
  kStatisticsEvent = @"Invalid User Name or Password Alert";
  return [self defaultAlertWithTitle:L(@"invalid_username_or_password")
                             message:nil
                    rightButtonTitle:L(@"ok")
                     leftButtonTitle:nil
                   rightButtonAction:nil];
}

+ (instancetype)noCurrentPositionAlert
{
  kStatisticsEvent = @"No Current Position Alert";
  NSString * message =
      [NSString stringWithFormat:@"%@\n\n%@", L(@"common_current_location_unknown_dialog"),
                                 L(@"dialog_routing_location_turn_wifi")];
  return [self defaultAlertWithTitle:L(@"dialog_routing_check_gps")
                             message:message
                    rightButtonTitle:L(@"ok")
                     leftButtonTitle:nil
                   rightButtonAction:nil];
}

+ (instancetype)disabledLocationAlert
{
  kStatisticsEvent = @"Disabled Location Alert";
  TMWMVoidBlock action = ^{
    GetFramework().SwitchMyPositionNextMode();
  };
  return [MWMDefaultAlert defaultAlertWithTitle:L(@"dialog_routing_location_turn_on")
                                        message:L(@"dialog_routing_location_unknown_turn_on")
                               rightButtonTitle:L(@"turn_on")
                                leftButtonTitle:L(@"later")
                              rightButtonAction:action];
}

+ (instancetype)pointsInDifferentMWMAlert
{
  kStatisticsEvent = @"Points In Different MWM Alert";
  return [self defaultAlertWithTitle:L(@"routing_failed_cross_mwm_building")
                             message:nil
                    rightButtonTitle:L(@"ok")
                     leftButtonTitle:nil
                   rightButtonAction:nil];
}

+ (instancetype)point2PointAlertWithOkBlock:(TMWMVoidBlock)okBlock needToRebuild:(BOOL)needToRebuild
{
  if (needToRebuild)
  {
    return [self defaultAlertWithTitle:L(@"p2p_only_from_current")
                               message:L(@"p2p_reroute_from_current")
                      rightButtonTitle:L(@"ok")
                       leftButtonTitle:L(@"cancel")
                     rightButtonAction:okBlock];
  }
  else
  {
    return [self defaultAlertWithTitle:L(@"p2p_only_from_current")
                               message:nil
                      rightButtonTitle:L(@"ok")
                       leftButtonTitle:nil
                     rightButtonAction:nil];
  }
}

+ (instancetype)disableAutoDownloadAlertWithOkBlock:(TMWMVoidBlock)okBlock
{
  kStatisticsEvent = @"Disable Auto Download Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"disable_auto_download")
                                                message:nil
                                       rightButtonTitle:L(@"_disable")
                                        leftButtonTitle:L(@"cancel")
                                      rightButtonAction:okBlock];
  [alert setNeedsCloseAlertAfterEnterBackground];
  return alert;
}

+ (instancetype)downloaderNoConnectionAlertWithOkBlock:(TMWMVoidBlock)okBlock cancelBlock:(TMWMVoidBlock)cancelBlock
{
  kStatisticsEvent = @"Downloader No Connection Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"downloader_status_failed")
                                                message:L(@"common_check_internet_connection_dialog")
                                       rightButtonTitle:L(@"downloader_retry")
                                        leftButtonTitle:L(@"cancel")
                                      rightButtonAction:okBlock];
  alert.leftButtonAction = cancelBlock;
  [alert setNeedsCloseAlertAfterEnterBackground];
  return alert;
}

+ (instancetype)downloaderNotEnoughSpaceAlert
{
  kStatisticsEvent = @"Downloader Not Enough Space Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"downloader_no_space_title")
                                                message:L(@"downloader_no_space_message")
                                       rightButtonTitle:L(@"close")
                                        leftButtonTitle:nil
                                      rightButtonAction:nil];
  [alert setNeedsCloseAlertAfterEnterBackground];
  return alert;
}

+ (instancetype)downloaderInternalErrorAlertWithOkBlock:(TMWMVoidBlock)okBlock cancelBlock:(TMWMVoidBlock)cancelBlock
{
  kStatisticsEvent = @"Downloader Internal Error Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"migration_download_error_dialog")
                                                message:nil
                                       rightButtonTitle:L(@"downloader_retry")
                                        leftButtonTitle:L(@"cancel")
                                      rightButtonAction:okBlock];
  alert.leftButtonAction = cancelBlock;
  [alert setNeedsCloseAlertAfterEnterBackground];
  return alert;
}

+ (instancetype)downloaderNeedUpdateAlertWithOkBlock:(TMWMVoidBlock)okBlock
{
  kStatisticsEvent = @"Downloader Need Update Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"downloader_need_update_title")
                                                message:L(@"downloader_need_update_message")
                                       rightButtonTitle:L(@"downloader_status_outdated")
                                        leftButtonTitle:L(@"not_now")
                                      rightButtonAction:okBlock];
  [alert setNeedsCloseAlertAfterEnterBackground];
  return alert;
}

+ (instancetype)routingMigrationAlertWithOkBlock:(TMWMVoidBlock)okBlock
{
  kStatisticsEvent = @"Routing Need Migration Alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"downloader_update_maps")
                                                message:L(@"downloader_mwm_migration_dialog")
                                       rightButtonTitle:L(@"ok")
                                        leftButtonTitle:L(@"cancel")
                                      rightButtonAction:okBlock];
  return alert;
}

+ (instancetype)resetChangesAlertWithBlock:(TMWMVoidBlock)block
{
  kStatisticsEvent = @"Reset changes alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"editor_reset_edits_message")
                                                message:nil
                                       rightButtonTitle:L(@"editor_reset_edits_button")
                                        leftButtonTitle:L(@"cancel")
                                      rightButtonAction:block];
  return alert;
}

+ (instancetype)deleteFeatureAlertWithBlock:(TMWMVoidBlock)block
{
  kStatisticsEvent = @"Delete feature alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"editor_remove_place_message")
                                                message:nil
                                       rightButtonTitle:L(@"editor_remove_place_button")
                                        leftButtonTitle:L(@"cancel")
                                      rightButtonAction:block];
  return alert;
}

+ (instancetype)personalInfoWarningAlertWithBlock:(TMWMVoidBlock)block
{
  kStatisticsEvent = @"Personal info warning alert";
  NSString * message = [NSString stringWithFormat:@"%@\n%@", L(@"editor_share_to_all_dialog_message_1"), L(@"editor_share_to_all_dialog_message_2")];
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"editor_share_to_all_dialog_title")
                                                message:message
                                       rightButtonTitle:L(@"editor_report_problem_send_button")
                                        leftButtonTitle:L(@"cancel")
                                      rightButtonAction:block];
  return alert;
}

+ (instancetype)trackWarningAlertWithCancelBlock:(TMWMVoidBlock)block
{
  kStatisticsEvent = @"Track warning alert";
  MWMDefaultAlert * alert = [self defaultAlertWithTitle:L(@"recent_track_background_dialog_title")
                                                message:L(@"recent_track_background_dialog_message")
                                       rightButtonTitle:L(@"off_recent_track_background_button")
                                        leftButtonTitle:L(@"continue_download")
                                      rightButtonAction:block];
  return alert;
}

+ (instancetype)defaultAlertWithTitle:(nonnull NSString *)title
                              message:(nullable NSString *)message
                     rightButtonTitle:(nonnull NSString *)rightButtonTitle
                      leftButtonTitle:(nullable NSString *)leftButtonTitle
                    rightButtonAction:(nullable TMWMVoidBlock)action
{
  [Statistics logEvent:kStatisticsEvent withParameters:@{kStatAction : kStatOpen}];
  MWMDefaultAlert * alert = [
      [[NSBundle mainBundle] loadNibNamed:kDefaultAlertNibName owner:self options:nil] firstObject];
  alert.titleLabel.text = title;
  alert.messageLabel.text = message;
  if (!message)
  {
    alert.dividerTop.constant = kDividerTopConstant;
    [alert layoutIfNeeded];
  }
  
  [alert.rightButton setTitle:rightButtonTitle forState:UIControlStateNormal];
  [alert.rightButton setTitle:rightButtonTitle forState:UIControlStateDisabled];

  alert.rightButtonAction = action;
  if (leftButtonTitle)
  {
    [alert.leftButton setTitle:leftButtonTitle forState:UIControlStateNormal];
    [alert.leftButton setTitle:leftButtonTitle forState:UIControlStateDisabled];
  }
  else
  {
    alert.leftButton.hidden = YES;
    alert.rightButtonWidth.constant = [alert.subviews.firstObject width];
  }
  return alert;
}

#pragma mark - Actions

- (IBAction)rightButtonTap
{
  [Statistics logEvent:kStatisticsEvent withParameters:@{kStatAction : kStatApply}];
  if (self.rightButtonAction)
    self.rightButtonAction();
  [self close];
}

- (IBAction)leftButtonTap
{
  [Statistics logEvent:kStatisticsEvent withParameters:@{kStatAction : kStatClose}];
  if (self.leftButtonAction)
    self.leftButtonAction();
  [self close];
}

@end