[ios] Added incorrect feature position allert.

This commit is contained in:
VladiMihaylenko 2016-03-04 11:27:57 +03:00 committed by Sergey Yershov
parent 3c2988eef4
commit f0c5383c96
7 changed files with 27 additions and 1 deletions

View file

@ -24,6 +24,7 @@
- (void)presentUnsavedEditsAlertWithOkBlock:(nonnull TMWMVoidBlock)okBlock;
- (void)presentNoWiFiAlertWithName:(nonnull NSString *)name okBlock:(nullable TMWMVoidBlock)okBlock;
- (void)presentPedestrianToastAlert:(BOOL)isFirstLaunch;
- (void)presentIncorrectFeauturePositionAlert;
- (void)presentInternalErrorAlert;
- (void)presentInvalidUserNameOrPasswordAlert;
- (void)presentDownloaderNoConnectionAlertWithOkBlock:(nonnull TMWMVoidBlock)okBlock;

View file

@ -96,6 +96,11 @@ static NSString * const kAlertControllerNibIdentifier = @"MWMAlertViewController
[self displayAlert:[MWMAlert pedestrianToastShareAlert:isFirstLaunch]];
}
- (void)presentIncorrectFeauturePositionAlert
{
[self displayAlert:[MWMAlert incorrectFeauturePositionAlert]];
}
- (void)presentInternalErrorAlert
{
[self displayAlert:[MWMAlert internalErrorAlert]];

View file

@ -20,6 +20,7 @@
+ (MWMAlert *)unsavedEditsAlertWithOkBlock:(TMWMVoidBlock)okBlock;
+ (MWMAlert *)locationServiceNotSupportedAlert;
+ (MWMAlert *)pedestrianToastShareAlert:(BOOL)isFirstLaunch;
+ (MWMAlert *)incorrectFeauturePositionAlert;
+ (MWMAlert *)internalErrorAlert;
+ (MWMAlert *)invalidUserNameOrPasswordAlert;
+ (MWMAlert *)point2PointAlertWithOkBlock:(TMWMVoidBlock)okBlock needToRebuild:(BOOL)needToRebuild;

View file

@ -100,6 +100,11 @@
return [MWMPedestrianShareAlert alert:isFirstLaunch];
}
+ (MWMAlert *)incorrectFeauturePositionAlert
{
return [MWMDefaultAlert incorrectFeauturePositionAlert];
}
+ (MWMAlert *)internalErrorAlert
{
return [MWMDefaultAlert internalErrorAlert];

View file

@ -7,6 +7,7 @@
+ (instancetype)endPointNotFoundAlert;
+ (instancetype)startPointNotFoundAlert;
+ (instancetype)internalRoutingErrorAlert;
+ (instancetype)incorrectFeauturePositionAlert;
+ (instancetype)internalErrorAlert;
+ (instancetype)invalidUserNameOrPasswordAlert;
+ (instancetype)noCurrentPositionAlert;

View file

@ -136,6 +136,16 @@ static NSString * const kDefaultAlertNibName = @"MWMDefaultAlert";
rightButtonAction:nil];
}
+ (instancetype)incorrectFeauturePositionAlert
{
kStatisticsEvent = @"Incorrect Feature Possition Alert";
return [self defaultAlertWithTitle:@"dialog_incorrect_feautre_position"
message:@"message_invalid_feature_position"
rightButtonTitle:@"ok"
leftButtonTitle:nil
rightButtonAction:nil];
}
+ (instancetype)internalErrorAlert
{
kStatisticsEvent = @"Internal Error Alert";

View file

@ -276,9 +276,12 @@ extern NSString * const kAlohalyticsTapEventKey;
[MWMAddPlaceNavigationBar showInSuperview:self.ownerController.view doneBlock:^
{
auto & f = GetFramework();
if (IsPointCoveredByDownloadedMaps(f.GetViewportCenter(), f.Storage(), f.CountryInfoGetter()))
[self.ownerController performSegueWithIdentifier:kMapToCategorySelectorSegue sender:nil];
//TODO(Vlad): Process else block. Probably we need to show some alert.
else
[self.ownerController.alertController presentIncorrectFeauturePositionAlert];
[self didFinishAddingPlace];
}
cancelBlock:^