[MAPSME-6532] [ios] Fixed action bar buttons.

This commit is contained in:
Ilya Grechuhin 2018-01-25 11:07:24 +03:00 committed by Roman Kuznetsov
parent 747cb4f59e
commit 0ea6e31cd7
9 changed files with 234 additions and 398 deletions

View file

@ -314,7 +314,7 @@ void logSponsoredEvent(MWMPlacePageData * data, NSString * eventName)
[self closePlacePage];
}
- (void)addStop
- (void)routeAddStop
{
MWMRoutePoint * point =
[self routePointWithType:MWMRoutePointTypeIntermediate intermediateIndex:0];
@ -322,7 +322,7 @@ void logSponsoredEvent(MWMPlacePageData * data, NSString * eventName)
[self closePlacePage];
}
- (void)removeStop
- (void)routeRemoveStop
{
auto data = self.data;
MWMRoutePoint * point = nil;

View file

@ -7,8 +7,8 @@
- (void)routeFrom;
- (void)routeTo;
- (void)addStop;
- (void)removeStop;
- (void)routeAddStop;
- (void)routeRemoveStop;
- (void)share;

View file

@ -1,20 +1,18 @@
enum class EButton // Required button's order
{
Api,
Download,
Booking,
BookingSearch,
Opentable,
Call,
Bookmark,
RouteFrom,
RouteTo,
Share,
Call,
Download,
More,
AddStop,
RemoveStop,
Opentable,
Partner,
Spacer
RouteAddStop,
RouteFrom,
RouteRemoveStop,
RouteTo,
Share
};
NSString * titleForButton(EButton type, int partnerIndex, BOOL isSelected);
@ -30,13 +28,10 @@ NSString * titleForButton(EButton type, int partnerIndex, BOOL isSelected);
@interface MWMActionBarButton : UIView
- (void)configButtonWithDelegate:(id<MWMActionBarButtonDelegate>)delegate type:(EButton)type isSelected:(BOOL)isSelected;
+ (void)addButtonToSuperview:(UIView *)view
delegate:(id<MWMActionBarButtonDelegate>)delegate
buttonType:(EButton)type
partnerIndex:(int)partnerIndex
isSelected:(BOOL)isSelected;
+ (MWMActionBarButton *)buttonWithDelegate:(id<MWMActionBarButtonDelegate>)delegate
buttonType:(EButton)type
partnerIndex:(int)partnerIndex
isSelected:(BOOL)isSelected;
- (EButton)type;
- (MWMCircularProgress *)mapDownloadProgress;

View file

@ -15,35 +15,19 @@ NSString * titleForButton(EButton type, int partnerIndex, BOOL isSelected)
{
switch (type)
{
case EButton::Api:
return L(@"back");
case EButton::Download:
return L(@"download");
case EButton::Download: return L(@"download");
case EButton::Booking:
case EButton::Opentable:
return L(@"book_button");
case EButton::BookingSearch:
return L(@"booking_search");
case EButton::Call:
return L(@"placepage_call_button");
case EButton::Bookmark:
return L(isSelected ? @"delete" : @"save");
case EButton::RouteFrom:
return L(@"p2p_from_here");
case EButton::RouteTo:
return L(@"p2p_to_here");
case EButton::Share:
return L(@"share");
case EButton::More:
return L(@"placepage_more_button");
case EButton::AddStop:
return L(@"placepage_add_stop");
case EButton::RemoveStop:
return L(@"placepage_remove_stop");
case EButton::Partner:
return titleForPartner(partnerIndex);
case EButton::Spacer:
return nil;
case EButton::Opentable: return L(@"book_button");
case EButton::BookingSearch: return L(@"booking_search");
case EButton::Call: return L(@"placepage_call_button");
case EButton::Bookmark: return L(isSelected ? @"delete" : @"save");
case EButton::RouteFrom: return L(@"p2p_from_here");
case EButton::RouteTo: return L(@"p2p_to_here");
case EButton::Share: return L(@"share");
case EButton::More: return L(@"placepage_more_button");
case EButton::RouteAddStop: return L(@"placepage_add_stop");
case EButton::RouteRemoveStop: return L(@"placepage_remove_stop");
case EButton::Partner: return titleForPartner(partnerIndex);
}
}
@ -77,136 +61,116 @@ UIColor * backgroundColorForPartner(int partnerIndex)
@interface MWMActionBarButton () <MWMCircularProgressProtocol>
@property(weak, nonatomic) IBOutlet MWMButton * button;
@property(weak, nonatomic) IBOutlet UILabel * label;
@property(weak, nonatomic) id<MWMActionBarButtonDelegate> delegate;
@property(nonatomic) EButton type;
@property(nonatomic) MWMCircularProgress * mapDownloadProgress;
@property(nonatomic) int partnerIndex;
@property(nonatomic) UIView * progressWrapper;
@property(weak, nonatomic) IBOutlet MWMButton * button;
@property(weak, nonatomic) IBOutlet UILabel * label;
@property(weak, nonatomic) IBOutlet UIView * extraBackground;
@property(weak, nonatomic) id<MWMActionBarButtonDelegate> delegate;
@end
@implementation MWMActionBarButton
- (void)configButtonWithDelegate:(id<MWMActionBarButtonDelegate>)delegate type:(EButton)type isSelected:(BOOL)isSelected
{
self.delegate = delegate;
self.type = type;
[self configButton:isSelected];
}
- (void)configButton:(BOOL)isSelected
{
self.label.text = titleForButton(self.type, self.partnerIndex, isSelected);
self.extraBackground.hidden = YES;
switch (self.type)
{
case EButton::Api:
[self.button setImage:[UIImage imageNamed:@"ic_back_api"] forState:UIControlStateNormal];
break;
case EButton::Download:
{
if (self.mapDownloadProgress)
return;
self.progressWrapper = [[UIView alloc] init];
[self.button addSubview:self.progressWrapper];
self.mapDownloadProgress = [MWMCircularProgress downloaderProgressForParentView:self.progressWrapper];
self.mapDownloadProgress.delegate = self;
self.mapDownloadProgress = [MWMCircularProgress downloaderProgressForParentView:self.button];
self.mapDownloadProgress.delegate = self;
MWMCircularProgressStateVec const affectedStates = {MWMCircularProgressStateNormal,
MWMCircularProgressStateSelected};
MWMCircularProgressStateSelected};
[self.mapDownloadProgress setImageName:@"ic_download" forStates:affectedStates];
[self.mapDownloadProgress setColoring:MWMButtonColoringBlue forStates:affectedStates];
break;
}
case EButton::Booking:
[self.button setImage:[UIImage imageNamed:@"ic_booking_logo"] forState:UIControlStateNormal];
self.label.textColor = UIColor.whiteColor;
self.backgroundColor = [UIColor bookingBackground];
if (!IPAD)
{
self.extraBackground.backgroundColor = [UIColor bookingBackground];
self.extraBackground.hidden = NO;
}
break;
case EButton::BookingSearch:
[self.button setImage:[UIImage imageNamed:@"ic_booking_search"] forState:UIControlStateNormal];
self.label.textColor = UIColor.whiteColor;
self.backgroundColor = [UIColor bookingBackground];
if (!IPAD)
{
self.extraBackground.backgroundColor = [UIColor bookingBackground];
self.extraBackground.hidden = NO;
}
break;
case EButton::Opentable:
[self.button setImage:[UIImage imageNamed:@"ic_opentable"] forState:UIControlStateNormal];
self.label.textColor = UIColor.whiteColor;
self.backgroundColor = [UIColor opentableBackground];
if (!IPAD)
{
self.extraBackground.backgroundColor = [UIColor opentableBackground];
self.extraBackground.hidden = NO;
}
break;
case EButton::Call:
[self.button setImage:[UIImage imageNamed:@"ic_placepage_phone_number"] forState:UIControlStateNormal];
break;
case EButton::Bookmark:
[self setupBookmarkButton:isSelected];
break;
case EButton::RouteFrom:
[self.button setImage:[UIImage imageNamed:@"ic_route_from"] forState:UIControlStateNormal];
break;
case EButton::RouteTo:
[self.button setImage:[UIImage imageNamed:@"ic_route_to"] forState:UIControlStateNormal];
break;
case EButton::Share:
[self.button setImage:[UIImage imageNamed:@"ic_menu_share"] forState:UIControlStateNormal];
break;
case EButton::More:
[self.button setImage:[UIImage imageNamed:@"ic_placepage_more"] forState:UIControlStateNormal];
break;
case EButton::AddStop:
[self.button setImage:[UIImage imageNamed:@"ic_add_route_point"] forState:UIControlStateNormal];
break;
case EButton::RemoveStop:
[self.button setImage:[UIImage imageNamed:@"ic_remove_route_point"] forState:UIControlStateNormal];
break;
case EButton::Spacer:
[self.button removeFromSuperview];
[self.label removeFromSuperview];
break;
case EButton::Partner:
[self.button setImage:imageForPartner(self.partnerIndex)
forState:UIControlStateNormal];
self.label.textColor = textColorForPartner(self.partnerIndex);
self.backgroundColor = backgroundColorForPartner(self.partnerIndex);
break;
case EButton::Booking:
[self.button setImage:[UIImage imageNamed:@"ic_booking_logo"] forState:UIControlStateNormal];
self.label.textColor = UIColor.whiteColor;
self.backgroundColor = [UIColor bookingBackground];
if (!IPAD)
{
self.extraBackground.backgroundColor = [UIColor bookingBackground];
self.extraBackground.hidden = NO;
}
break;
case EButton::BookingSearch:
[self.button setImage:[UIImage imageNamed:@"ic_booking_search"]
forState:UIControlStateNormal];
self.label.textColor = UIColor.whiteColor;
self.backgroundColor = [UIColor bookingBackground];
if (!IPAD)
{
self.extraBackground.backgroundColor = [UIColor bookingBackground];
self.extraBackground.hidden = NO;
}
break;
case EButton::Opentable:
[self.button setImage:[UIImage imageNamed:@"ic_opentable"] forState:UIControlStateNormal];
self.label.textColor = UIColor.whiteColor;
self.backgroundColor = [UIColor opentableBackground];
if (!IPAD)
{
self.extraBackground.backgroundColor = [UIColor opentableBackground];
self.extraBackground.hidden = NO;
}
break;
case EButton::Call:
[self.button setImage:[UIImage imageNamed:@"ic_placepage_phone_number"]
forState:UIControlStateNormal];
break;
case EButton::Bookmark: [self setupBookmarkButton:isSelected]; break;
case EButton::RouteFrom:
[self.button setImage:[UIImage imageNamed:@"ic_route_from"] forState:UIControlStateNormal];
break;
case EButton::RouteTo:
[self.button setImage:[UIImage imageNamed:@"ic_route_to"] forState:UIControlStateNormal];
break;
case EButton::Share:
[self.button setImage:[UIImage imageNamed:@"ic_menu_share"] forState:UIControlStateNormal];
break;
case EButton::More:
[self.button setImage:[UIImage imageNamed:@"ic_placepage_more"]
forState:UIControlStateNormal];
break;
case EButton::RouteAddStop:
[self.button setImage:[UIImage imageNamed:@"ic_add_route_point"]
forState:UIControlStateNormal];
break;
case EButton::RouteRemoveStop:
[self.button setImage:[UIImage imageNamed:@"ic_remove_route_point"]
forState:UIControlStateNormal];
break;
case EButton::Partner:
[self.button setImage:imageForPartner(self.partnerIndex) forState:UIControlStateNormal];
self.label.textColor = textColorForPartner(self.partnerIndex);
self.backgroundColor = backgroundColorForPartner(self.partnerIndex);
break;
}
}
+ (void)addButtonToSuperview:(UIView *)view
delegate:(id<MWMActionBarButtonDelegate>)delegate
buttonType:(EButton)type
partnerIndex:(int)partnerIndex
isSelected:(BOOL)isSelected
+ (MWMActionBarButton *)buttonWithDelegate:(id<MWMActionBarButtonDelegate>)delegate
buttonType:(EButton)type
partnerIndex:(int)partnerIndex
isSelected:(BOOL)isSelected
{
if (view.subviews.count)
return;
MWMActionBarButton * button =
[NSBundle.mainBundle loadNibNamed:[self className] owner:nil options:nil].firstObject;
button.delegate = delegate;
button.type = type;
button.partnerIndex = partnerIndex;
[view addSubview:button];
[button configButton:isSelected];
return button;
}
- (void)progressButtonPressed:(MWMCircularProgress *)progress
@ -252,13 +216,4 @@ UIColor * backgroundColorForPartner(int partnerIndex)
animationIV.animationRepeatCount = 1;
}
- (void)layoutSubviews
{
[super layoutSubviews];
self.frame = self.superview.bounds;
CGFloat constexpr designOffset = 4;
self.progressWrapper.size = {self.button.height - designOffset, self.button.height - designOffset};
self.progressWrapper.center = self.button.center;
}
@end

View file

@ -13,7 +13,7 @@
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view contentMode="scaleToFill" id="iN0-l3-epB" customClass="MWMActionBarButton">
<rect key="frame" x="0.0" y="0.0" width="80" height="48"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="R50-Tj-X0W">
<rect key="frame" x="-100" y="0.0" width="180" height="48"/>

View file

@ -27,7 +27,6 @@
+ (MWMPlacePageActionBar *)actionBarWithDelegate:(id<MWMActionBarProtocol>)delegate;
- (void)configureWithData:(id<MWMActionBarSharedData>)data;
@property(nonatomic) BOOL isBookmark;
@property(nonatomic) BOOL isAreaNotDownloaded;
- (void)setVisible:(BOOL)visible;

View file

@ -7,20 +7,16 @@
#import "MWMRouter.h"
#import "MapViewController.h"
extern NSString * const kAlohalyticsTapEventKey;
@interface MWMPlacePageActionBar ()<MWMActionBarButtonDelegate>
{
vector<EButton> m_visibleButtons;
vector<EButton> m_additionalButtons;
}
@property(copy, nonatomic) IBOutletCollection(UIView) NSArray<UIView *> * buttons;
@property(weak, nonatomic) id<MWMActionBarSharedData> data;
@property(weak, nonatomic) id<MWMActionBarProtocol> delegate;
@property(nonatomic) NSLayoutConstraint * visibleConstraint;
@property(weak, nonatomic) IBOutlet UIStackView * barButtons;
@property(weak, nonatomic) id<MWMActionBarProtocol> delegate;
@property(weak, nonatomic) id<MWMActionBarSharedData> data;
@end
@ -38,194 +34,137 @@ extern NSString * const kAlohalyticsTapEventKey;
- (void)configureWithData:(id<MWMActionBarSharedData>)data
{
self.data = data;
self.isBookmark = [data isBookmark];
[self configureButtons];
self.autoresizingMask = UIViewAutoresizingNone;
[self setNeedsLayout];
}
- (void)configureButtons
- (void)clearButtons
{
m_visibleButtons.clear();
m_additionalButtons.clear();
auto data = self.data;
[self.barButtons.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
}
BOOL const isBooking = [data isBooking];
BOOL const isOpentable = [data isOpentable];
BOOL const isBookingSearch = [data isBookingSearch];
BOOL const isPartner = [data isPartner] && [data sponsoredURL] != nil;
int const partnerIndex = isPartner ? [data partnerIndex] : -1;
BOOL const isSponsored = isBooking || isOpentable || isBookingSearch || isPartner;
BOOL const isPhoneCallAvailable =
[AppInfo sharedInfo].canMakeCalls && [data phoneNumber].length > 0;
BOOL const isApi = [data isApi];
auto const navigationState = [MWMNavigationDashboardManager manager].state;
BOOL const isNavigationActive = navigationState == MWMNavigationDashboardStateNavigation;
BOOL const isP2P = !isNavigationActive && navigationState != MWMNavigationDashboardStateHidden;
BOOL const isMyPosition = [data isMyPosition];
BOOL const isRoutePoint = [data isRoutePoint];
BOOL const isNeedToAddIntermediatePoint = [MWMRouter canAddIntermediatePoint];
- (void)setFirstButton:(id<MWMActionBarSharedData>)data
{
vector<EButton> buttons;
EButton sponsoredButton = EButton::BookingSearch;
if (isBooking)
sponsoredButton = EButton::Booking;
else if (isOpentable)
sponsoredButton = EButton::Opentable;
else if (isPartner)
sponsoredButton = EButton::Partner;
BOOL thereAreExtraButtons = true;
if (isRoutePoint)
if (self.isAreaNotDownloaded)
{
thereAreExtraButtons = false;
m_visibleButtons.push_back(EButton::RemoveStop);
}
else if (isNeedToAddIntermediatePoint)
{
thereAreExtraButtons = false;
if (!isNavigationActive)
{
m_visibleButtons.push_back(EButton::RouteFrom);
m_additionalButtons.push_back(EButton::Bookmark);
}
else
{
m_visibleButtons.push_back(EButton::Bookmark);
}
m_visibleButtons.push_back(EButton::RouteTo);
m_visibleButtons.push_back(EButton::AddStop);
m_visibleButtons.push_back(EButton::More);
if (isSponsored)
m_additionalButtons.push_back(sponsoredButton);
if (isPhoneCallAvailable)
m_additionalButtons.push_back(EButton::Call);
if (isApi)
m_additionalButtons.push_back(EButton::Api);
m_additionalButtons.push_back(EButton::Share);
}
else if (self.isAreaNotDownloaded)
{
thereAreExtraButtons = false;
m_visibleButtons.push_back(EButton::Download);
m_visibleButtons.push_back(EButton::Bookmark);
m_visibleButtons.push_back(EButton::RouteTo);
m_visibleButtons.push_back(EButton::Share);
}
else if (isMyPosition && isP2P)
{
thereAreExtraButtons = false;
m_visibleButtons.push_back(EButton::Bookmark);
m_visibleButtons.push_back(EButton::RouteFrom);
m_visibleButtons.push_back(EButton::RouteTo);
m_visibleButtons.push_back(EButton::More);
m_additionalButtons.push_back(EButton::Share);
}
else if (isMyPosition)
{
thereAreExtraButtons = false;
m_visibleButtons.push_back(EButton::Bookmark);
if (!isNavigationActive)
m_visibleButtons.push_back(EButton::RouteFrom);
m_visibleButtons.push_back(EButton::Share);
}
else if (isApi && isSponsored)
{
m_visibleButtons.push_back(EButton::Api);
m_visibleButtons.push_back(sponsoredButton);
m_additionalButtons.push_back(EButton::Bookmark);
if (!isNavigationActive)
m_additionalButtons.push_back(EButton::RouteFrom);
m_additionalButtons.push_back(EButton::Share);
}
else if (isApi && isPhoneCallAvailable)
{
m_visibleButtons.push_back(EButton::Api);
m_visibleButtons.push_back(EButton::Call);
m_additionalButtons.push_back(EButton::Bookmark);
if (!isNavigationActive)
m_additionalButtons.push_back(EButton::RouteFrom);
m_additionalButtons.push_back(EButton::Share);
}
else if (isApi && isP2P)
{
m_visibleButtons.push_back(EButton::Api);
if (!isNavigationActive)
m_visibleButtons.push_back(EButton::RouteFrom);
m_additionalButtons.push_back(EButton::Bookmark);
m_additionalButtons.push_back(EButton::Share);
}
else if (isApi)
{
m_visibleButtons.push_back(EButton::Api);
m_visibleButtons.push_back(EButton::Bookmark);
if (!isNavigationActive)
m_additionalButtons.push_back(EButton::RouteFrom);
m_additionalButtons.push_back(EButton::Share);
}
else if (isSponsored && isP2P)
{
m_visibleButtons.push_back(EButton::Bookmark);
if (!isNavigationActive)
m_visibleButtons.push_back(EButton::RouteFrom);
m_additionalButtons.push_back(sponsoredButton);
m_additionalButtons.push_back(EButton::Share);
}
else if (isPhoneCallAvailable && isP2P)
{
m_visibleButtons.push_back(EButton::Bookmark);
if (!isNavigationActive)
m_visibleButtons.push_back(EButton::RouteFrom);
m_additionalButtons.push_back(EButton::Call);
m_additionalButtons.push_back(EButton::Share);
}
else if (isSponsored)
{
m_visibleButtons.push_back(sponsoredButton);
m_visibleButtons.push_back(EButton::Bookmark);
if (!isNavigationActive)
m_additionalButtons.push_back(EButton::RouteFrom);
m_additionalButtons.push_back(EButton::Share);
}
else if (isPhoneCallAvailable)
{
m_visibleButtons.push_back(EButton::Call);
m_visibleButtons.push_back(EButton::Bookmark);
if (!isNavigationActive)
m_additionalButtons.push_back(EButton::RouteFrom);
m_additionalButtons.push_back(EButton::Share);
buttons.push_back(EButton::Download);
}
else
{
m_visibleButtons.push_back(EButton::Bookmark);
if (!isNavigationActive)
m_visibleButtons.push_back(EButton::RouteFrom);
BOOL const isRoutePlanning =
[MWMNavigationDashboardManager manager].state != MWMNavigationDashboardStateHidden;
if (isRoutePlanning)
buttons.push_back(EButton::RouteFrom);
BOOL const isBooking = [data isBooking];
if (isBooking)
buttons.push_back(EButton::Booking);
BOOL const isOpentable = [data isOpentable];
if (isOpentable)
buttons.push_back(EButton::Opentable);
BOOL const isPartner = [data isPartner] && [data sponsoredURL] != nil;
if (isPartner)
buttons.push_back(EButton::Partner);
BOOL const isBookingSearch = [data isBookingSearch];
if (isBookingSearch)
buttons.push_back(EButton::BookingSearch);
BOOL const isPhoneCallAvailable =
[AppInfo sharedInfo].canMakeCalls && [data phoneNumber].length > 0;
if (isPhoneCallAvailable)
buttons.push_back(EButton::Call);
if (!isRoutePlanning)
buttons.push_back(EButton::RouteFrom);
}
NSAssert(!buttons.empty(), @"Missing first action bar button");
auto begin = buttons.begin();
m_visibleButtons.push_back(*begin);
begin++;
std::copy(begin, buttons.end(), std::back_inserter(m_additionalButtons));
}
if (thereAreExtraButtons)
- (void)setSecondButton:(id<MWMActionBarSharedData>)data
{
vector<EButton> buttons;
BOOL const isCanAddIntermediatePoint = [MWMRouter canAddIntermediatePoint];
BOOL const isNavigationReady =
[MWMNavigationDashboardManager manager].state == MWMNavigationDashboardStateReady;
if (isCanAddIntermediatePoint && isNavigationReady)
buttons.push_back(EButton::RouteAddStop);
buttons.push_back(EButton::Bookmark);
auto begin = buttons.begin();
m_visibleButtons.push_back(*begin);
begin++;
std::copy(begin, buttons.end(), std::back_inserter(m_additionalButtons));
}
- (void)setThirdButton { m_visibleButtons.push_back(EButton::RouteTo); }
- (void)setFourthButton
{
if (m_additionalButtons.empty())
{
m_visibleButtons.push_back(EButton::RouteTo);
m_visibleButtons.push_back(m_additionalButtons.empty() ? EButton::Share : EButton::More);
m_visibleButtons.push_back(EButton::Share);
}
for (UIView * v in self.buttons)
else
{
[v.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
auto const buttonIndex = v.tag - 1;
NSAssert(buttonIndex >= 0, @"Invalid button index.");
if (buttonIndex < 0 || buttonIndex >= m_visibleButtons.size())
continue;
auto const type = m_visibleButtons[buttonIndex];
auto const isSelected = (type == EButton::Bookmark ? self.isBookmark : NO);
[MWMActionBarButton addButtonToSuperview:v
delegate:self
buttonType:type
partnerIndex:partnerIndex
isSelected:isSelected];
m_visibleButtons.push_back(EButton::More);
m_additionalButtons.push_back(EButton::Share);
}
}
- (void)addButtons2UI:(id<MWMActionBarSharedData>)data
{
BOOL const isPartner = [data isPartner] && [data sponsoredURL] != nil;
int const partnerIndex = isPartner ? [data partnerIndex] : -1;
for (auto const buttonType : m_visibleButtons)
{
auto const isSelected = (buttonType == EButton::Bookmark ? [data isBookmark] : NO);
auto button = [MWMActionBarButton buttonWithDelegate:self
buttonType:buttonType
partnerIndex:partnerIndex
isSelected:isSelected];
[self.barButtons addArrangedSubview:button];
}
}
- (void)setSingleButton { m_visibleButtons.push_back(EButton::RouteRemoveStop); }
- (void)setButtons:(id<MWMActionBarSharedData>)data
{
BOOL const isRoutePoint = [data isRoutePoint];
if (isRoutePoint)
{
[self setSingleButton];
}
else
{
[self setFirstButton:data];
[self setSecondButton:data];
[self setThirdButton];
[self setFourthButton];
}
}
- (void)configureButtons
{
auto data = self.data;
[self clearButtons];
[self setButtons:data];
[self addButtons2UI:data];
}
- (void)setDownloadingState:(MWMCircularProgressState)state
{
self.progressFromActiveButton.state = state;
@ -238,17 +177,13 @@ extern NSString * const kAlohalyticsTapEventKey;
- (MWMCircularProgress *)progressFromActiveButton
{
if (!self.isAreaNotDownloaded)
return nil;
for (UIView * view in self.buttons)
if (self.isAreaNotDownloaded)
{
MWMActionBarButton * button = view.subviews.firstObject;
NSAssert(button, @"Subviews can't be empty!");
if (!button || [button type] != EButton::Download)
continue;
return button.mapDownloadProgress;
for (MWMActionBarButton * button in self.barButtons.subviews)
{
if ([button type] == EButton::Download)
return button.mapDownloadProgress;
}
}
return nil;
}
@ -262,48 +197,35 @@ extern NSString * const kAlohalyticsTapEventKey;
[self configureButtons];
}
- (UIView *)shareAnchor
{
UIView * last = nil;
auto const size = self.buttons.count;
for (UIView * v in self.buttons)
{
if (v.tag == size)
last = v;
}
return last;
}
- (UIView *)shareAnchor { return self.barButtons.subviews.lastObject; }
#pragma mark - MWMActionBarButtonDelegate
- (void)tapOnButtonWithType:(EButton)type
{
id<MWMActionBarProtocol> delegate = self.delegate;
auto data = self.data;
switch (type)
{
case EButton::Api: [delegate apiBack]; break;
case EButton::Download: [delegate downloadSelectedArea]; break;
case EButton::Opentable:
case EButton::Booking: [delegate book:NO]; break;
case EButton::BookingSearch: [delegate searchBookingHotels]; break;
case EButton::Call: [delegate call]; break;
case EButton::Bookmark:
if (self.isBookmark)
if ([data isBookmark])
[delegate removeBookmark];
else
[delegate addBookmark];
self.isBookmark = !self.isBookmark;
break;
case EButton::RouteFrom: [delegate routeFrom]; break;
case EButton::RouteTo: [delegate routeTo]; break;
case EButton::Share: [delegate share]; break;
case EButton::More: [self showActionSheet]; break;
case EButton::AddStop: [delegate addStop]; break;
case EButton::RemoveStop: [delegate removeStop]; break;
case EButton::RouteAddStop: [delegate routeAddStop]; break;
case EButton::RouteRemoveStop: [delegate routeRemoveStop]; break;
case EButton::Partner: [delegate openPartner]; break;
case EButton::Spacer: break;
}
}
@ -369,17 +291,4 @@ extern NSString * const kAlohalyticsTapEventKey;
self.visibleConstraint.active = YES;
}
#pragma mark - Layout
- (void)layoutSubviews
{
[super layoutSubviews];
CGFloat const buttonWidth = self.width / m_visibleButtons.size();
for (UIView * button in self.buttons)
{
button.minX = buttonWidth * (button.tag - 1);
button.width = buttonWidth;
}
}
@end

View file

@ -6,6 +6,7 @@
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="Stack View standard spacing" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
@ -31,30 +32,9 @@
<userDefinedRuntimeAttribute type="string" keyPath="coloring" value="MWMSeparator"/>
</userDefinedRuntimeAttributes>
</imageView>
<view tag="1" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ctK-eb-hsj" userLabel="First">
<rect key="frame" x="0.0" y="0.0" width="90" height="48"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<accessibility key="accessibilityConfiguration" identifier="First"/>
</view>
<view tag="2" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="j7d-3d-R7Z" userLabel="Second">
<rect key="frame" x="90" y="0.0" width="90" height="48"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<accessibility key="accessibilityConfiguration" identifier="Second"/>
</view>
<view tag="3" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Xtb-qr-MYt" userLabel="Third">
<rect key="frame" x="180" y="0.0" width="90" height="48"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<accessibility key="accessibilityConfiguration" identifier="Third"/>
</view>
<view tag="4" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="A9L-Jr-3Qt" userLabel="Fourth">
<rect key="frame" x="270" y="0.0" width="90" height="48"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<accessibility key="accessibilityConfiguration" identifier="Fourth"/>
</view>
<stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="XTz-GN-vut">
<rect key="frame" x="0.0" y="1" width="360" height="47"/>
</stackView>
</subviews>
<color key="backgroundColor" red="0.95075207948684692" green="0.95072358846664429" blue="0.95073974132537842" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
@ -64,22 +44,23 @@
<constraint firstItem="EPN-YR-G6Y" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="-100" id="4Gq-tX-248">
<variation key="heightClass=regular-widthClass=regular" constant="0.0"/>
</constraint>
<constraint firstAttribute="trailing" secondItem="XTz-GN-vut" secondAttribute="trailing" id="4Q4-WP-Xl8"/>
<constraint firstAttribute="trailing" secondItem="WPU-f0-gXc" secondAttribute="trailing" id="OoZ-zr-1rp"/>
<constraint firstItem="WPU-f0-gXc" firstAttribute="top" secondItem="iN0-l3-epB" secondAttribute="top" id="Q43-U2-YPD"/>
<constraint firstAttribute="bottom" secondItem="WPU-f0-gXc" secondAttribute="bottom" priority="999" constant="47" id="eX4-Qs-lAP"/>
<constraint firstItem="XTz-GN-vut" firstAttribute="top" secondItem="WPU-f0-gXc" secondAttribute="bottom" id="jE9-cO-B4B"/>
<constraint firstItem="EPN-YR-G6Y" firstAttribute="top" secondItem="iN0-l3-epB" secondAttribute="top" id="lZI-8f-kct"/>
<constraint firstItem="WPU-f0-gXc" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" id="q6T-8P-VNl"/>
<constraint firstAttribute="bottom" secondItem="XTz-GN-vut" secondAttribute="bottom" id="sZL-wz-msY"/>
<constraint firstAttribute="bottom" secondItem="EPN-YR-G6Y" secondAttribute="bottom" constant="-100" id="tXE-mh-UBf">
<variation key="heightClass=regular-widthClass=regular" constant="0.0"/>
</constraint>
<constraint firstItem="XTz-GN-vut" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" id="uiB-3W-Id5"/>
</constraints>
<nil key="simulatedStatusBarMetrics"/>
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
<connections>
<outletCollection property="buttons" destination="j7d-3d-R7Z" id="zQ7-1E-mim"/>
<outletCollection property="buttons" destination="Xtb-qr-MYt" id="ODg-IK-Yj1"/>
<outletCollection property="buttons" destination="A9L-Jr-3Qt" id="Sdq-bh-P1v"/>
<outletCollection property="buttons" destination="ctK-eb-hsj" id="aCR-kW-TxE"/>
<outlet property="barButtons" destination="XTz-GN-vut" id="4ot-0U-fXd"/>
</connections>
<point key="canvasLocation" x="335" y="266"/>
</view>

View file

@ -87,13 +87,13 @@ CGFloat const kMinOffset = 1;
- (void)onClose
{
self.actionBar = nil;
place_page_layout::animate(^{
[self setAnimatedContentOffset:0];
},^{
id<MWMPlacePageLayoutDelegate> delegate = self.delegate;
// Workaround for preventing a situation when the scroll view destroyed before an animation finished.
[delegate onPlacePageTopBoundChanged:0];
self.actionBar = nil;
self.scrollView = nil;
[delegate destroyLayout];
});
@ -233,9 +233,6 @@ CGFloat const kMinOffset = 1;
else if (actualOffset < self.bottomContentOffset)
{
(*targetContentOffset).y = 0;
place_page_layout::animate(^{
self.actionBar.minY = self.ownerView.height;
});
}
else
{