[iOS] [refactoring] remove old place page files

This commit is contained in:
Aleksey Belouosv 2019-12-27 17:59:59 +03:00 committed by Alexander Boriskov
parent ad8cf4c9d3
commit 05247eb8a4
88 changed files with 205 additions and 8969 deletions

View file

@ -220,8 +220,6 @@
47F4F1F723A3336B0022FD56 /* MWMMapNodeAttributes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMMapNodeAttributes.h; sourceTree = "<group>"; };
47F4F1F823A3336C0022FD56 /* MWMMapNodeAttributes.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMMapNodeAttributes.mm; sourceTree = "<group>"; };
47F4F1FB23A3D1AC0022FD56 /* MWMMapNodeAttributes+Core.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MWMMapNodeAttributes+Core.h"; sourceTree = "<group>"; };
99103841237EDFA200893C9F /* DeepLinkData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeepLinkData.h; sourceTree = "<group>"; };
99103842237EDFA200893C9F /* DeepLinkData.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DeepLinkData.m; sourceTree = "<group>"; };
47F701ED238C86F000D18E95 /* PlacePageButtonsData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlacePageButtonsData.h; sourceTree = "<group>"; };
47F701EE238C86F000D18E95 /* PlacePageButtonsData.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = PlacePageButtonsData.mm; sourceTree = "<group>"; };
47F701F1238C877C00D18E95 /* PlacePageButtonsData+Core.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "PlacePageButtonsData+Core.h"; sourceTree = "<group>"; };

View file

@ -51,10 +51,7 @@
#import "MWMNavigationDashboardEntity.h"
#import "MWMNavigationDashboardManager.h"
#import "MWMNoMapsViewController.h"
#import "MWMPlacePageButtonsProtocol.h"
#import "MWMPlacePageCellUpdateProtocol.h"
#import "MWMPlacePageManagerHelper.h"
#import "MWMPlacePageTaxiProvider.h"
#import "MWMPushNotifications.h"
#import "MWMReviewsViewModelProtocol.h"
#import "MWMRouteManagerPointType.h"

View file

@ -5,7 +5,6 @@
@class MapViewController;
@protocol MWMFeatureHolder;
@protocol MWMBookingInfoHolder;
@interface MWMMapViewControlsManager : NSObject
@ -35,9 +34,6 @@
#pragma mark - MWMPlacePageViewManager
- (void)dismissPlacePage;
- (void)showPlacePage;
- (void)updatePlacePage;
- (void)showPlacePageReview;
#pragma mark - MWMNavigationDashboardManager
@ -59,10 +55,6 @@
- (id<MWMFeatureHolder>)featureHolder;
#pragma mark - MWMBookingInfoHolder
- (id<MWMBookingInfoHolder>)bookingInfoHolder;
- (void)showAdditionalViewsIfNeeded;
@end

View file

@ -108,7 +108,6 @@ NSString * const kMapToCategorySelectorSegue = @"MapToCategorySelectorSegue";
[self.navigationManager mwm_refreshUI];
[self.searchManager mwm_refreshUI];
[self.menuController mwm_refreshUI];
[self.placePageManager mwm_refreshUI];
[self.promoButton mwm_refreshUI];
[self.ownerController setNeedsStatusBarAppearanceUpdate];
}
@ -123,23 +122,6 @@ NSString * const kMapToCategorySelectorSegue = @"MapToCategorySelectorSegue";
#pragma mark - MWMPlacePageViewManager
- (void)dismissPlacePage
{
self.trafficButtonHidden = NO;
[self.placePageManager dismiss];
}
- (void)showPlacePage {
[[MWMNetworkPolicy sharedPolicy] callOnlineApi:^(BOOL) {
self.trafficButtonHidden = YES;
[self.placePageManager show];
}];
}
- (void)updatePlacePage {
[self.placePageManager update];
}
- (void)showPlacePageReview {
[[MWMNetworkPolicy sharedPolicy] callOnlineApi:^(BOOL) {
self.trafficButtonHidden = YES;
@ -188,7 +170,7 @@ NSString * const kMapToCategorySelectorSegue = @"MapToCategorySelectorSegue";
self.trafficButtonHidden = YES;
self.menuState = MWMBottomMenuStateHidden;
MapViewController * ownerController = self.ownerController;
[self.placePageManager dismiss];
[ownerController dismissPlacePage];
self.searchManager.state = MWMSearchManagerStateHidden;
[MWMAddPlaceNavigationBar showInSuperview:ownerController.view
@ -390,9 +372,6 @@ NSString * const kMapToCategorySelectorSegue = @"MapToCategorySelectorSegue";
- (id<MWMFeatureHolder>)featureHolder { return self.placePageManager; }
#pragma mark - MWMBookingInfoHolder
- (id<MWMBookingInfoHolder>)bookingInfoHolder { return self.placePageManager; }
- (MWMTutorialViewController *)tutorialWithType:(MWMTip)tutorialType
{
MWMTutorialViewController * tutorial;

View file

@ -6,7 +6,6 @@
@class MWMWelcomePageController;
@class MWMMapViewControlsManager;
@class MWMPlacePageData;
@class EAGLView;
@class MWMMapDownloadDialog;
@protocol MWMLocationModeListener;

View file

@ -17,6 +17,7 @@
#import "MapsAppDelegate.h"
#import "SwiftBridge.h"
#import "MWMLocationModeListener.h"
#import "MWMNetworkPolicy+UI.h"
#include <CoreApi/Framework.h>
#import <CoreApi/MWMFrameworkHelper.h>
@ -109,12 +110,30 @@ NSString * const kPP2BookmarkEditingSegue = @"PP2BookmarkEditing";
#pragma mark - Map Navigation
- (void)showPlacePage {
self.controlsManager.trafficButtonHidden = YES;
self.placePageVC = (PlacePageViewController *)[[UIStoryboard instance:MWMStoryboardPlacePage] instantiateInitialViewController];
self.placePageVC.placePageData = [[PlacePageData alloc] init];
[self addChildViewController:self.placePageVC];
self.placePageContainer.hidden = NO;
[self.placePageContainer addSubview:self.placePageVC.view];
self.placePageVC.view.translatesAutoresizingMaskIntoConstraints = NO;
[NSLayoutConstraint activateConstraints:@[
[self.placePageVC.view.topAnchor constraintEqualToAnchor:self.placePageContainer.safeAreaLayoutGuide.topAnchor],
[self.placePageVC.view.leftAnchor constraintEqualToAnchor:self.placePageContainer.leftAnchor],
[self.placePageVC.view.bottomAnchor constraintEqualToAnchor:self.placePageContainer.bottomAnchor],
[self.placePageVC.view.rightAnchor constraintEqualToAnchor:self.placePageContainer.rightAnchor]
]];
[self.placePageVC didMoveToParentViewController:self];
}
- (void)dismissPlacePage {
[self.placePageVC.view removeFromSuperview];
[self.placePageVC willMoveToParentViewController:nil];
[self.placePageVC removeFromParentViewController];
self.placePageVC = nil;
self.placePageContainer.hidden = YES;
self.controlsManager.trafficButtonHidden = NO;
}
- (void)onMapObjectDeselected:(bool)switchFullScreenMode
@ -136,19 +155,9 @@ NSString * const kPP2BookmarkEditingSegue = @"PP2BookmarkEditing";
- (void)onMapObjectSelected {
[self dismissPlacePage];
self.placePageVC = (PlacePageViewController *)[[UIStoryboard instance:MWMStoryboardPlacePage] instantiateInitialViewController];
self.placePageVC.placePageData = [[PlacePageData alloc] init];
[self addChildViewController:self.placePageVC];
self.placePageContainer.hidden = NO;
[self.placePageContainer addSubview:self.placePageVC.view];
self.placePageVC.view.translatesAutoresizingMaskIntoConstraints = NO;
[NSLayoutConstraint activateConstraints:@[
[self.placePageVC.view.topAnchor constraintEqualToAnchor:self.placePageContainer.safeAreaLayoutGuide.topAnchor],
[self.placePageVC.view.leftAnchor constraintEqualToAnchor:self.placePageContainer.leftAnchor],
[self.placePageVC.view.bottomAnchor constraintEqualToAnchor:self.placePageContainer.bottomAnchor],
[self.placePageVC.view.rightAnchor constraintEqualToAnchor:self.placePageContainer.rightAnchor]
]];
[self.placePageVC didMoveToParentViewController:self];
[[MWMNetworkPolicy sharedPolicy] callOnlineApi:^(BOOL) {
[self showPlacePage];
}];
}
- (void)onMapObjectUpdated {
@ -742,11 +751,6 @@ NSString * const kPP2BookmarkEditingSegue = @"PP2BookmarkEditing";
MWMEditorViewController * dvc = segue.destinationViewController;
[dvc setFeatureToEdit:static_cast<id<MWMFeatureHolder>>(sender).featureId];
}
else if ([segue.identifier isEqualToString:kPP2BookmarkEditingSegue])
{
// MWMEditBookmarkController * dvc = segue.destinationViewController;
// dvc.data = static_cast<MWMPlacePageData *>(sender);
}
else if ([segue.identifier isEqualToString:kDownloaderSegue])
{
MWMDownloadMapsViewController * dvc = segue.destinationViewController;

View file

@ -1,4 +1,5 @@
#import <CoreApi/MWMTypes.h>
#import <CoreApi/CoreBanner.h>
#import "MWMHotelParams.h"
#import "MWMSearchItemType.h"

View file

@ -7,6 +7,7 @@
#include <CoreApi/Framework.h>
#include "partners_api/ads_engine.hpp"
#include "platform/network_policy.hpp"
namespace
{

View file

@ -9,13 +9,11 @@
/* Begin PBXBuildFile section */
1DA7908820762CEB008BDD6B /* libopen_location_code.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DA7908920762CEB008BDD6B /* libopen_location_code.a */; };
1DFA2F6A20D3B57400FB2C66 /* UIColor+PartnerColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DFA2F6920D3B57400FB2C66 /* UIColor+PartnerColor.m */; };
33010DB321B7E14700925411 /* MWMPlaceDescriptionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33010DB221B7E14700925411 /* MWMPlaceDescriptionCell.xib */; };
3304306D21D4EAFB00317CA3 /* SearchCategoryCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3304306C21D4EAFB00317CA3 /* SearchCategoryCell.swift */; };
33046832219C57180041F3A8 /* CategorySettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33046831219C57180041F3A8 /* CategorySettingsViewController.swift */; };
33046836219C5A4E0041F3A8 /* CategorySettings.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 33046835219C5A4E0041F3A8 /* CategorySettings.storyboard */; };
330473EA21F7440C00DC4AEA /* MWMHotelParams.mm in Sources */ = {isa = PBXBuildFile; fileRef = 330473E921F7440C00DC4AEA /* MWMHotelParams.mm */; };
331630D12191D74B00BB91A9 /* TagSectionHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331630D02191D74B00BB91A9 /* TagSectionHeaderView.swift */; };
331922AF21BAD29900D4AAC5 /* MWMPlaceDescriptionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 331922AE21BAD29900D4AAC5 /* MWMPlaceDescriptionCell.m */; };
3358607E217632A2006D11F2 /* BookmarksSharingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3358607D217632A2006D11F2 /* BookmarksSharingViewController.swift */; };
33603C85219F0F6300B11FFE /* SharingPropertiesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33603C84219F0F6300B11FFE /* SharingPropertiesViewController.swift */; };
337F98A321D37B5800C8AC27 /* SearchHistoryViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 337F98A021D37B5700C8AC27 /* SearchHistoryViewController.xib */; };
@ -104,7 +102,6 @@
344BEAF31F66BDC30045DC45 /* RatingSummaryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 344BEAF01F66BDC30045DC45 /* RatingSummaryView.swift */; };
344BEAF61F66BDC30045DC45 /* RatingSummaryViewSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 344BEAF11F66BDC30045DC45 /* RatingSummaryViewSettings.swift */; };
344D63181E795A3C006F17CB /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 344D63161E795A2D006F17CB /* SystemConfiguration.framework */; };
3451F4EE1F026DAF00A981F2 /* PlacePageTaxiCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3451F4EC1F026DAF00A981F2 /* PlacePageTaxiCell.swift */; };
3454D7B91E07F045004AF2AD /* CALayer+RuntimeAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 3454D79A1E07F045004AF2AD /* CALayer+RuntimeAttributes.m */; };
3454D7BC1E07F045004AF2AD /* CLLocation+Mercator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3454D79C1E07F045004AF2AD /* CLLocation+Mercator.mm */; };
3454D7BF1E07F045004AF2AD /* DateComponentsFormatter+ETA.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3454D79D1E07F045004AF2AD /* DateComponentsFormatter+ETA.swift */; };
@ -293,8 +290,6 @@
34D3B04F1E38A20C004100F9 /* Bundle+Init.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34D3B04D1E38A20C004100F9 /* Bundle+Init.swift */; };
34E50DD81F6FCAB1008EED49 /* UGCSummaryRatingCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34E50DD51F6FCAB1008EED49 /* UGCSummaryRatingCell.swift */; };
34E50DDB1F6FCAB1008EED49 /* UGCSummaryRatingCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 34E50DD61F6FCAB1008EED49 /* UGCSummaryRatingCell.xib */; };
34E50DE01F6FCBA1008EED49 /* UGCAddReviewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34E50DDD1F6FCBA1008EED49 /* UGCAddReviewCell.swift */; };
34E50DE31F6FCBA1008EED49 /* UGCAddReviewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 34E50DDE1F6FCBA1008EED49 /* UGCAddReviewCell.xib */; };
34E50DF01F6FCC41008EED49 /* UGCYourReviewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34E50DED1F6FCC41008EED49 /* UGCYourReviewCell.swift */; };
34E50DF31F6FCC41008EED49 /* UGCYourReviewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 34E50DEE1F6FCC41008EED49 /* UGCYourReviewCell.xib */; };
34E50DF81F6FCC96008EED49 /* UGCReviewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34E50DF51F6FCC96008EED49 /* UGCReviewCell.swift */; };
@ -305,7 +300,6 @@
34E7761F1F14DB48003040B3 /* PlacePageArea.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34E7761D1F14DB48003040B3 /* PlacePageArea.swift */; };
34E776331F15FAC2003040B3 /* MWMPlacePageManagerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34E776311F15FAC2003040B3 /* MWMPlacePageManagerHelper.mm */; };
34EF94291C05A6F30050B714 /* MWMSegue.m in Sources */ = {isa = PBXBuildFile; fileRef = F607C18D1C047FDC00B53A87 /* MWMSegue.m */; };
34F1ADD31F6BC09E001CE79D /* PPPReview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34F1ADD11F6BC09E001CE79D /* PPPReview.swift */; };
34F4072C1E9E1AFF00E57AC0 /* Banner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34F4071D1E9E1AFF00E57AC0 /* Banner.swift */; };
34F4072F1E9E1AFF00E57AC0 /* BannersCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34F4071E1E9E1AFF00E57AC0 /* BannersCache.swift */; };
34F407321E9E1AFF00E57AC0 /* BannerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34F4071F1E9E1AFF00E57AC0 /* BannerType.swift */; };
@ -375,8 +369,6 @@
47289E5A2212DFFF002ABFC0 /* EditOnWebAlertViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47289E582212DFFF002ABFC0 /* EditOnWebAlertViewController.swift */; };
47289E5B2212DFFF002ABFC0 /* EditOnWebAlertViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 47289E592212DFFF002ABFC0 /* EditOnWebAlertViewController.xib */; };
4728F69322CF89A400E00028 /* GradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4728F69222CF89A400E00028 /* GradientView.swift */; };
472C40E4232A7B9F009AA777 /* CatalogSingleItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 472C40E2232A7B9F009AA777 /* CatalogSingleItemCell.swift */; };
472C40E5232A7B9F009AA777 /* CatalogSingleItemCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 472C40E3232A7B9F009AA777 /* CatalogSingleItemCell.xib */; };
472E3F472146BCD30020E412 /* SubscriptionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 472E3F462146BCD30020E412 /* SubscriptionManager.swift */; };
472E3F4A2146C4CD0020E412 /* MWMPurchaseManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 472E3F492146C4CD0020E412 /* MWMPurchaseManager.mm */; };
472E3F4C2147D5700020E412 /* Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 472E3F4B2147D5700020E412 /* Subscription.swift */; };
@ -440,6 +432,8 @@
47C8789A22DF622400A772DA /* SubscriptionFailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 47C8789822DF622400A772DA /* SubscriptionFailViewController.xib */; };
47C8789D22DF662700A772DA /* SubscriptionExpiredViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C8789B22DF662700A772DA /* SubscriptionExpiredViewController.swift */; };
47C8789E22DF662700A772DA /* SubscriptionExpiredViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 47C8789C22DF662700A772DA /* SubscriptionExpiredViewController.xib */; };
47CF2E6123BA090400D11C30 /* FacilitiesController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47CF2E6023BA090400D11C30 /* FacilitiesController.swift */; };
47CF2E6323BA0DD500D11C30 /* CopyLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47CF2E6223BA0DD500D11C30 /* CopyLabel.swift */; };
47D0026721999DA900F651A2 /* PendingTransactionsHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47D0026621999DA900F651A2 /* PendingTransactionsHandler.swift */; };
47DF72B922520CE20004AB10 /* MWMRoutingOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = 474902D9224A54EC008D71E0 /* MWMRoutingOptions.mm */; };
47DF72BB225356BF0004AB10 /* DrivingOptions.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 47DF72BA225356BF0004AB10 /* DrivingOptions.storyboard */; };
@ -704,27 +698,17 @@
F653CE121C6DEC8E00A453F1 /* MWMDropDown.m in Sources */ = {isa = PBXBuildFile; fileRef = F653CE101C6DEB5A00A453F1 /* MWMDropDown.m */; };
F653CE191C71F62700A453F1 /* MWMAddPlaceNavigationBar.mm in Sources */ = {isa = PBXBuildFile; fileRef = F653CE151C71F60200A453F1 /* MWMAddPlaceNavigationBar.mm */; };
F6550C1F1FD81B3800352D88 /* RatingSummaryView+DefaultConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6550C1D1FD81B3800352D88 /* RatingSummaryView+DefaultConfig.swift */; };
F6558DA21E642CC0002203AE /* MWMFacilitiesController.m in Sources */ = {isa = PBXBuildFile; fileRef = F6558DA01E642CC0002203AE /* MWMFacilitiesController.m */; };
F655C027207278300048A241 /* DiscoveryMoreCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F655C026207278300048A241 /* DiscoveryMoreCell.swift */; };
F655C02920727A630048A241 /* DiscoveryMoreCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F655C02820727A630048A241 /* DiscoveryMoreCell.xib */; };
F65D1E1A20E4F11600FE31DD /* ugc_migration in Resources */ = {isa = PBXBuildFile; fileRef = F65D1E1920E4F11600FE31DD /* ugc_migration */; };
F660DEE51EAF4F59004DC056 /* MWMLocationManager+SpeedAndAltitude.swift in Sources */ = {isa = PBXBuildFile; fileRef = F660DEE31EAF4F59004DC056 /* MWMLocationManager+SpeedAndAltitude.swift */; };
F6664BFA1E6459CB00E703C2 /* PPFacilityCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6664BF71E6459CB00E703C2 /* PPFacilityCell.swift */; };
F6664BFD1E6459CB00E703C2 /* PPFacilityCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6664BF81E6459CB00E703C2 /* PPFacilityCell.xib */; };
F6664C021E6459DA00E703C2 /* PPReviewHeaderCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6664BFF1E6459DA00E703C2 /* PPReviewHeaderCell.swift */; };
F6664C051E6459DA00E703C2 /* PPReviewHeaderCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6664C001E6459DA00E703C2 /* PPReviewHeaderCell.xib */; };
F6664C131E645A4100E703C2 /* MWMPPReviewCell.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6664C101E645A4100E703C2 /* MWMPPReviewCell.mm */; };
F6664C161E645A4100E703C2 /* MWMPPReviewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6664C111E645A4100E703C2 /* MWMPPReviewCell.xib */; };
F6664BFA1E6459CB00E703C2 /* FacilityCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6664BF71E6459CB00E703C2 /* FacilityCell.swift */; };
F6664BFD1E6459CB00E703C2 /* FacilityCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6664BF81E6459CB00E703C2 /* FacilityCell.xib */; };
F6791B141C43DF0B007A8A6E /* MWMStartButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F6791B121C43DEA7007A8A6E /* MWMStartButton.m */; };
F682249B1E5B104600BC1C18 /* PPHotelDescriptionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F68224991E5B104600BC1C18 /* PPHotelDescriptionCell.swift */; };
F682249F1E5B105900BC1C18 /* PPHotelDescriptionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F682249D1E5B105900BC1C18 /* PPHotelDescriptionCell.xib */; };
F68BDF061EEA9A830009BB81 /* MyTargetSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F68BDF041EEA9A830009BB81 /* MyTargetSDK.framework */; };
F69018BD1E9F7CB600B3C10B /* MWMAutoupdateController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F69018BB1E9F7CB600B3C10B /* MWMAutoupdateController.xib */; };
F692F3831EA0FAF5001E82EB /* MWMAutoupdateController.mm in Sources */ = {isa = PBXBuildFile; fileRef = F69018B71E9E601400B3C10B /* MWMAutoupdateController.mm */; };
F69739B21FD197DB00FDA07D /* MWMDiscoveryTableManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = F69739B01FD197DB00FDA07D /* MWMDiscoveryTableManager.mm */; };
F69CE8D61E5C49B4002B5881 /* PPHotelCarouselCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F69CE8D41E5C49B4002B5881 /* PPHotelCarouselCell.swift */; };
F69CE8DA1E5C5088002B5881 /* PPHotelCarouselCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F69CE8D81E5C5088002B5881 /* PPHotelCarouselCell.xib */; };
F69CE8DE1E5C51AB002B5881 /* CarouselElement.xib in Resources */ = {isa = PBXBuildFile; fileRef = F69CE8DC1E5C51AB002B5881 /* CarouselElement.xib */; };
F6A2184A1CA3F26800BE2CC6 /* MWMEditorViralActivityItem.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6A218481CA3F26800BE2CC6 /* MWMEditorViralActivityItem.mm */; };
F6BD1D211CA412920047B8E8 /* MWMOsmAuthAlert.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6BD1D1F1CA412920047B8E8 /* MWMOsmAuthAlert.mm */; };
F6BD1D241CA412E40047B8E8 /* MWMOsmAuthAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6BD1D221CA412E30047B8E8 /* MWMOsmAuthAlert.xib */; };
@ -732,8 +716,6 @@
F6C3A1B221AC22810060EEC8 /* Alert 5.m4a in Resources */ = {isa = PBXBuildFile; fileRef = F6C3A1B121AC22810060EEC8 /* Alert 5.m4a */; };
F6D67CDC2062B9C00032FD38 /* BCCreateCategoryAlert.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6D67CDB2062B9C00032FD38 /* BCCreateCategoryAlert.swift */; };
F6D67CDE2062BBA60032FD38 /* MWMBCCreateCategoryAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6D67CDD2062BBA60032FD38 /* MWMBCCreateCategoryAlert.xib */; };
F6D67CE9206929590032FD38 /* PPPSearchSimilarButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6D67CE8206929590032FD38 /* PPPSearchSimilarButton.swift */; };
F6D67CEB2069318B0032FD38 /* PPPSearchSimilarButton.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6D67CEA2069318B0032FD38 /* PPPSearchSimilarButton.xib */; };
F6E2FD561E097BA00083EBEC /* MWMMapDownloaderButtonTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC021E097B9F0083EBEC /* MWMMapDownloaderButtonTableViewCell.m */; };
F6E2FD591E097BA00083EBEC /* MWMMapDownloaderButtonTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FC031E097B9F0083EBEC /* MWMMapDownloaderButtonTableViewCell.xib */; };
F6E2FD5C1E097BA00083EBEC /* MWMMapDownloaderCellHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC051E097B9F0083EBEC /* MWMMapDownloaderCellHeader.m */; };
@ -785,42 +767,16 @@
F6E2FE311E097BA00083EBEC /* MWMStreetEditorViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC871E097B9F0083EBEC /* MWMStreetEditorViewController.mm */; };
F6E2FE431E097BA00083EBEC /* MWMDirectionView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC951E097B9F0083EBEC /* MWMDirectionView.mm */; };
F6E2FE461E097BA00083EBEC /* MWMDirectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FC961E097B9F0083EBEC /* MWMDirectionView.xib */; };
F6E2FE491E097BA00083EBEC /* MWMPlacePageData.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC981E097B9F0083EBEC /* MWMPlacePageData.mm */; };
F6E2FE4C1E097BA00083EBEC /* MWMPlacePageManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC9A1E097B9F0083EBEC /* MWMPlacePageManager.mm */; };
F6E2FE4F1E097BA00083EBEC /* MWMActionBarButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FC9F1E097B9F0083EBEC /* MWMActionBarButton.m */; };
F6E2FE521E097BA00083EBEC /* MWMActionBarButton.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCA01E097B9F0083EBEC /* MWMActionBarButton.xib */; };
F6E2FE551E097BA00083EBEC /* MWMPlacePageActionBar.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCA21E097B9F0083EBEC /* MWMPlacePageActionBar.mm */; };
F6E2FE581E097BA00083EBEC /* MWMPlacePageActionBar.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCA31E097B9F0083EBEC /* MWMPlacePageActionBar.xib */; };
F6E2FE611E097BA00083EBEC /* MWMBookmarkCell.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCAB1E097B9F0083EBEC /* MWMBookmarkCell.mm */; };
F6E2FE641E097BA00083EBEC /* MWMBookmarkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCAC1E097B9F0083EBEC /* MWMBookmarkCell.xib */; };
F6E2FE671E097BA00083EBEC /* MWMPlacePageButtonCell.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCB11E097B9F0083EBEC /* MWMPlacePageButtonCell.mm */; };
F6E2FE6A1E097BA00083EBEC /* MWMPlacePageButtonCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCB21E097B9F0083EBEC /* MWMPlacePageButtonCell.xib */; };
F6E2FE6D1E097BA00083EBEC /* _MWMOHHeaderCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCB41E097B9F0083EBEC /* _MWMOHHeaderCell.xib */; };
F6E2FE701E097BA00083EBEC /* _MWMOHSubCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCB51E097B9F0083EBEC /* _MWMOHSubCell.xib */; };
F6E2FE761E097BA00083EBEC /* MWMOpeningHoursCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCB81E097B9F0083EBEC /* MWMOpeningHoursCell.xib */; };
F6E2FE791E097BA00083EBEC /* MWMOpeningHoursLayoutHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCBA1E097B9F0083EBEC /* MWMOpeningHoursLayoutHelper.mm */; };
F6E2FE7C1E097BA00083EBEC /* MWMPlacePageOpeningHoursCell.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCBC1E097B9F0083EBEC /* MWMPlacePageOpeningHoursCell.mm */; };
F6E2FE7F1E097BA00083EBEC /* MWMPlacePageOpeningHoursCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCBD1E097B9F0083EBEC /* MWMPlacePageOpeningHoursCell.xib */; };
F6E2FE821E097BA00083EBEC /* MWMPlacePageOpeningHoursDayView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCBF1E097B9F0083EBEC /* MWMPlacePageOpeningHoursDayView.m */; };
F6E2FE851E097BA00083EBEC /* MWMPlacePageOpeningHoursWeekDayView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCC01E097B9F0083EBEC /* MWMPlacePageOpeningHoursWeekDayView.xib */; };
F6E2FE881E097BA00083EBEC /* MWMPlacePageRegularCell.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCC31E097B9F0083EBEC /* MWMPlacePageRegularCell.mm */; };
F6E2FE8B1E097BA00083EBEC /* MWMPlacePageInfoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCC41E097B9F0083EBEC /* MWMPlacePageInfoCell.xib */; };
F6E2FE8E1E097BA00083EBEC /* MWMPlacePageLinkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCC51E097B9F0083EBEC /* MWMPlacePageLinkCell.xib */; };
F6E2FE941E097BA00083EBEC /* PlacePageTaxiCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCC91E097B9F0083EBEC /* PlacePageTaxiCell.xib */; };
F6E2FE971E097BA00083EBEC /* CopyLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCCB1E097B9F0083EBEC /* CopyLabel.m */; };
F6E2FE9A1E097BA00083EBEC /* MWMiPadPlacePageLayoutImpl.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCCD1E097B9F0083EBEC /* MWMiPadPlacePageLayoutImpl.mm */; };
F6E2FE9D1E097BA00083EBEC /* MWMiPhonePlacePageLayoutImpl.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCCF1E097B9F0083EBEC /* MWMiPhonePlacePageLayoutImpl.mm */; };
F6E2FEA01E097BA00083EBEC /* MWMPlacePageLayout.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCD11E097B9F0083EBEC /* MWMPlacePageLayout.mm */; };
F6E2FEA31E097BA00083EBEC /* MWMPPView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCD51E097B9F0083EBEC /* MWMPPView.mm */; };
F6E2FEA61E097BA00083EBEC /* MWMPPView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCD61E097B9F0083EBEC /* MWMPPView.xib */; };
F6E2FEA91E097BA00083EBEC /* _MWMPPPAddress.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCD81E097B9F0083EBEC /* _MWMPPPAddress.xib */; };
F6E2FEAC1E097BA00083EBEC /* PPPReview.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCD91E097B9F0083EBEC /* PPPReview.xib */; };
F6E2FEAF1E097BA00083EBEC /* _MWMPPPExternalTitle.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCDA1E097B9F0083EBEC /* _MWMPPPExternalTitle.xib */; };
F6E2FEB21E097BA00083EBEC /* _MWMPPPSchedule.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCDB1E097B9F0083EBEC /* _MWMPPPSchedule.xib */; };
F6E2FEB51E097BA00083EBEC /* _MWMPPPSpace.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCDC1E097B9F0083EBEC /* _MWMPPPSpace.xib */; };
F6E2FEB81E097BA00083EBEC /* _MWMPPPSubtitle.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCDD1E097B9F0083EBEC /* _MWMPPPSubtitle.xib */; };
F6E2FEBB1E097BA00083EBEC /* _MWMPPPTitle.xib in Resources */ = {isa = PBXBuildFile; fileRef = F6E2FCDE1E097B9F0083EBEC /* _MWMPPPTitle.xib */; };
F6E2FEBE1E097BA00083EBEC /* MWMPPPreviewLayoutHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCE01E097B9F0083EBEC /* MWMPPPreviewLayoutHelper.mm */; };
F6E2FED01E097BA00083EBEC /* MWMSearchFilterViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCEE1E097B9F0083EBEC /* MWMSearchFilterViewController.mm */; };
F6E2FED31E097BA00083EBEC /* MWMSearchHotelsFilterViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCF11E097B9F0083EBEC /* MWMSearchHotelsFilterViewController.mm */; };
F6E2FED61E097BA00083EBEC /* MWMSearchChangeModeView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6E2FCF31E097B9F0083EBEC /* MWMSearchChangeModeView.mm */; };
@ -895,15 +851,12 @@
1DFA2F6E20D3CA9200FB2C66 /* UIColorRoutines.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UIColorRoutines.h; sourceTree = "<group>"; };
28A0AB4B0D9B1048005BE974 /* Maps_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Maps_Prefix.pch; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
29B97316FDCFA39411CA2CEA /* main.mm */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; fileEncoding = 4; path = main.mm; sourceTree = "<group>"; };
33010DB221B7E14700925411 /* MWMPlaceDescriptionCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MWMPlaceDescriptionCell.xib; sourceTree = "<group>"; };
3304306C21D4EAFB00317CA3 /* SearchCategoryCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchCategoryCell.swift; sourceTree = "<group>"; };
33046831219C57180041F3A8 /* CategorySettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategorySettingsViewController.swift; sourceTree = "<group>"; };
33046835219C5A4E0041F3A8 /* CategorySettings.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = CategorySettings.storyboard; sourceTree = "<group>"; };
330473E821F7440C00DC4AEA /* MWMHotelParams.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMHotelParams.h; sourceTree = "<group>"; };
330473E921F7440C00DC4AEA /* MWMHotelParams.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMHotelParams.mm; sourceTree = "<group>"; };
331630D02191D74B00BB91A9 /* TagSectionHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TagSectionHeaderView.swift; sourceTree = "<group>"; };
331922AD21BAD29900D4AAC5 /* MWMPlaceDescriptionCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMPlaceDescriptionCell.h; sourceTree = "<group>"; };
331922AE21BAD29900D4AAC5 /* MWMPlaceDescriptionCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MWMPlaceDescriptionCell.m; sourceTree = "<group>"; };
3358607D217632A2006D11F2 /* BookmarksSharingViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BookmarksSharingViewController.swift; sourceTree = "<group>"; };
33603C84219F0F6300B11FFE /* SharingPropertiesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SharingPropertiesViewController.swift; sourceTree = "<group>"; };
337F98A021D37B5700C8AC27 /* SearchHistoryViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SearchHistoryViewController.xib; sourceTree = "<group>"; };
@ -1030,7 +983,6 @@
344BEAF11F66BDC30045DC45 /* RatingSummaryViewSettings.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RatingSummaryViewSettings.swift; sourceTree = "<group>"; };
344D63161E795A2D006F17CB /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
345050211E028B8000A8DC59 /* Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Bridging-Header.h"; sourceTree = "<group>"; };
3451F4EC1F026DAF00A981F2 /* PlacePageTaxiCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PlacePageTaxiCell.swift; sourceTree = "<group>"; };
3454D7991E07F045004AF2AD /* CALayer+RuntimeAttributes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+RuntimeAttributes.h"; sourceTree = "<group>"; };
3454D79A1E07F045004AF2AD /* CALayer+RuntimeAttributes.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+RuntimeAttributes.m"; sourceTree = "<group>"; };
3454D79B1E07F045004AF2AD /* CLLocation+Mercator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CLLocation+Mercator.h"; sourceTree = "<group>"; };
@ -1238,7 +1190,6 @@
34ABA62B1C2D57D500FE1BEC /* MWMInputPasswordValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWMInputPasswordValidator.m; sourceTree = "<group>"; };
34ABA62E1C2D58F300FE1BEC /* MWMInputEmailValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMInputEmailValidator.h; sourceTree = "<group>"; };
34ABA62F1C2D58F300FE1BEC /* MWMInputEmailValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWMInputEmailValidator.m; sourceTree = "<group>"; };
34AC7F901F06538B0050DE2B /* MWMPlacePageTaxiProvider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageTaxiProvider.h; sourceTree = "<group>"; };
34AC8FC71EFC01F500E7F910 /* MWMRoutePoint.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMRoutePoint.mm; sourceTree = "<group>"; };
34AC8FC81EFC01F500E7F910 /* MWMRoutePoint+CPP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MWMRoutePoint+CPP.h"; sourceTree = "<group>"; };
34AC8FD91EFC062400E7F910 /* UILabel+NumberOfVisibleLines.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UILabel+NumberOfVisibleLines.swift"; sourceTree = "<group>"; };
@ -1309,8 +1260,6 @@
34DFCD981F87ED5600AE2672 /* MWMReviewProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMReviewProtocol.h; sourceTree = "<group>"; };
34E50DD51F6FCAB1008EED49 /* UGCSummaryRatingCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UGCSummaryRatingCell.swift; sourceTree = "<group>"; };
34E50DD61F6FCAB1008EED49 /* UGCSummaryRatingCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = UGCSummaryRatingCell.xib; sourceTree = "<group>"; };
34E50DDD1F6FCBA1008EED49 /* UGCAddReviewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UGCAddReviewCell.swift; sourceTree = "<group>"; };
34E50DDE1F6FCBA1008EED49 /* UGCAddReviewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = UGCAddReviewCell.xib; sourceTree = "<group>"; };
34E50DED1F6FCC41008EED49 /* UGCYourReviewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UGCYourReviewCell.swift; sourceTree = "<group>"; };
34E50DEE1F6FCC41008EED49 /* UGCYourReviewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = UGCYourReviewCell.xib; sourceTree = "<group>"; };
34E50DF51F6FCC96008EED49 /* UGCReviewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UGCReviewCell.swift; sourceTree = "<group>"; };
@ -1324,7 +1273,6 @@
34E7761D1F14DB48003040B3 /* PlacePageArea.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PlacePageArea.swift; sourceTree = "<group>"; };
34E776301F15FAC2003040B3 /* MWMPlacePageManagerHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageManagerHelper.h; sourceTree = "<group>"; };
34E776311F15FAC2003040B3 /* MWMPlacePageManagerHelper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMPlacePageManagerHelper.mm; sourceTree = "<group>"; };
34F1ADD11F6BC09E001CE79D /* PPPReview.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PPPReview.swift; sourceTree = "<group>"; };
34F4071D1E9E1AFF00E57AC0 /* Banner.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Banner.swift; sourceTree = "<group>"; };
34F4071E1E9E1AFF00E57AC0 /* BannersCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BannersCache.swift; sourceTree = "<group>"; };
34F4071F1E9E1AFF00E57AC0 /* BannerType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BannerType.swift; sourceTree = "<group>"; };
@ -1469,8 +1417,6 @@
47289E582212DFFF002ABFC0 /* EditOnWebAlertViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditOnWebAlertViewController.swift; sourceTree = "<group>"; };
47289E592212DFFF002ABFC0 /* EditOnWebAlertViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = EditOnWebAlertViewController.xib; sourceTree = "<group>"; };
4728F69222CF89A400E00028 /* GradientView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = GradientView.swift; path = CustomViews/GradientView.swift; sourceTree = "<group>"; };
472C40E2232A7B9F009AA777 /* CatalogSingleItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CatalogSingleItemCell.swift; sourceTree = "<group>"; };
472C40E3232A7B9F009AA777 /* CatalogSingleItemCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CatalogSingleItemCell.xib; sourceTree = "<group>"; };
472E3F462146BCD30020E412 /* SubscriptionManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SubscriptionManager.swift; sourceTree = "<group>"; };
472E3F482146C4CD0020E412 /* MWMPurchaseManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMPurchaseManager.h; sourceTree = "<group>"; };
472E3F492146C4CD0020E412 /* MWMPurchaseManager.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMPurchaseManager.mm; sourceTree = "<group>"; };
@ -1554,6 +1500,8 @@
47C8789822DF622400A772DA /* SubscriptionFailViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SubscriptionFailViewController.xib; sourceTree = "<group>"; };
47C8789B22DF662700A772DA /* SubscriptionExpiredViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SubscriptionExpiredViewController.swift; sourceTree = "<group>"; };
47C8789C22DF662700A772DA /* SubscriptionExpiredViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SubscriptionExpiredViewController.xib; sourceTree = "<group>"; };
47CF2E6023BA090400D11C30 /* FacilitiesController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FacilitiesController.swift; sourceTree = "<group>"; };
47CF2E6223BA0DD500D11C30 /* CopyLabel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CopyLabel.swift; sourceTree = "<group>"; };
47D0026621999DA900F651A2 /* PendingTransactionsHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PendingTransactionsHandler.swift; sourceTree = "<group>"; };
47DF72BA225356BF0004AB10 /* DrivingOptions.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = DrivingOptions.storyboard; sourceTree = "<group>"; };
47E3C71F21108E9F008B3B27 /* BookmarksLoadedViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BookmarksLoadedViewController.swift; sourceTree = "<group>"; };
@ -1879,26 +1827,16 @@
F653CE151C71F60200A453F1 /* MWMAddPlaceNavigationBar.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = MWMAddPlaceNavigationBar.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
F653CE171C71F62400A453F1 /* MWMAddPlaceNavigationBar.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMAddPlaceNavigationBar.xib; sourceTree = "<group>"; };
F6550C1D1FD81B3800352D88 /* RatingSummaryView+DefaultConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "RatingSummaryView+DefaultConfig.swift"; sourceTree = "<group>"; };
F6558D9F1E642CC0002203AE /* MWMFacilitiesController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMFacilitiesController.h; sourceTree = "<group>"; };
F6558DA01E642CC0002203AE /* MWMFacilitiesController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWMFacilitiesController.m; sourceTree = "<group>"; };
F655C026207278300048A241 /* DiscoveryMoreCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiscoveryMoreCell.swift; sourceTree = "<group>"; };
F655C02820727A630048A241 /* DiscoveryMoreCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DiscoveryMoreCell.xib; sourceTree = "<group>"; };
F6588E2A1B15C26700EE1E58 /* MWMTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMTextView.h; sourceTree = "<group>"; };
F6588E2B1B15C26700EE1E58 /* MWMTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWMTextView.m; sourceTree = "<group>"; };
F65D1E1920E4F11600FE31DD /* ugc_migration */ = {isa = PBXFileReference; lastKnownFileType = folder; name = ugc_migration; path = ../../data/ugc_migration; sourceTree = "<group>"; };
F660DEE31EAF4F59004DC056 /* MWMLocationManager+SpeedAndAltitude.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "MWMLocationManager+SpeedAndAltitude.swift"; sourceTree = "<group>"; };
F6664BF71E6459CB00E703C2 /* PPFacilityCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PPFacilityCell.swift; sourceTree = "<group>"; };
F6664BF81E6459CB00E703C2 /* PPFacilityCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PPFacilityCell.xib; sourceTree = "<group>"; };
F6664BFF1E6459DA00E703C2 /* PPReviewHeaderCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PPReviewHeaderCell.swift; sourceTree = "<group>"; };
F6664C001E6459DA00E703C2 /* PPReviewHeaderCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PPReviewHeaderCell.xib; sourceTree = "<group>"; };
F6664C0F1E645A4100E703C2 /* MWMPPReviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPPReviewCell.h; sourceTree = "<group>"; };
F6664C101E645A4100E703C2 /* MWMPPReviewCell.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMPPReviewCell.mm; sourceTree = "<group>"; };
F6664C111E645A4100E703C2 /* MWMPPReviewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMPPReviewCell.xib; sourceTree = "<group>"; };
F6664BF71E6459CB00E703C2 /* FacilityCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FacilityCell.swift; sourceTree = "<group>"; };
F6664BF81E6459CB00E703C2 /* FacilityCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FacilityCell.xib; sourceTree = "<group>"; };
F6791B111C43DEA7007A8A6E /* MWMStartButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMStartButton.h; sourceTree = "<group>"; };
F6791B121C43DEA7007A8A6E /* MWMStartButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWMStartButton.m; sourceTree = "<group>"; };
F68224991E5B104600BC1C18 /* PPHotelDescriptionCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PPHotelDescriptionCell.swift; sourceTree = "<group>"; };
F682249D1E5B105900BC1C18 /* PPHotelDescriptionCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PPHotelDescriptionCell.xib; sourceTree = "<group>"; };
F68224A11E5B1B1A00BC1C18 /* MWMPlacePageButtonsProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageButtonsProtocol.h; sourceTree = "<group>"; };
F68BDF041EEA9A830009BB81 /* MyTargetSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = MyTargetSDK.framework; sourceTree = "<group>"; };
F69018B61E9E601400B3C10B /* MWMAutoupdateController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMAutoupdateController.h; sourceTree = "<group>"; };
F69018B71E9E601400B3C10B /* MWMAutoupdateController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMAutoupdateController.mm; sourceTree = "<group>"; };
@ -1906,9 +1844,6 @@
F69739AF1FD197DB00FDA07D /* MWMDiscoveryTableManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMDiscoveryTableManager.h; sourceTree = "<group>"; };
F69739B01FD197DB00FDA07D /* MWMDiscoveryTableManager.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMDiscoveryTableManager.mm; sourceTree = "<group>"; };
F69739B51FD19D9900FDA07D /* MWMDiscoveryTapDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MWMDiscoveryTapDelegate.h; sourceTree = "<group>"; };
F69CE8D41E5C49B4002B5881 /* PPHotelCarouselCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PPHotelCarouselCell.swift; sourceTree = "<group>"; };
F69CE8D81E5C5088002B5881 /* PPHotelCarouselCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PPHotelCarouselCell.xib; sourceTree = "<group>"; };
F69CE8DC1E5C51AB002B5881 /* CarouselElement.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CarouselElement.xib; sourceTree = "<group>"; };
F6A218471CA3F26800BE2CC6 /* MWMEditorViralActivityItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMEditorViralActivityItem.h; sourceTree = "<group>"; };
F6A218481CA3F26800BE2CC6 /* MWMEditorViralActivityItem.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMEditorViralActivityItem.mm; sourceTree = "<group>"; };
F6BBF2C41B4FFB72000CF8E2 /* MWMLocationAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMLocationAlert.h; sourceTree = "<group>"; };
@ -1920,8 +1855,6 @@
F6C3A1B121AC22810060EEC8 /* Alert 5.m4a */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Alert 5.m4a"; sourceTree = "<group>"; };
F6D67CDB2062B9C00032FD38 /* BCCreateCategoryAlert.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BCCreateCategoryAlert.swift; sourceTree = "<group>"; };
F6D67CDD2062BBA60032FD38 /* MWMBCCreateCategoryAlert.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MWMBCCreateCategoryAlert.xib; sourceTree = "<group>"; };
F6D67CE8206929590032FD38 /* PPPSearchSimilarButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PPPSearchSimilarButton.swift; sourceTree = "<group>"; };
F6D67CEA2069318B0032FD38 /* PPPSearchSimilarButton.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PPPSearchSimilarButton.xib; sourceTree = "<group>"; };
F6DF5F321CD1136800A87154 /* LocaleTranslator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocaleTranslator.h; sourceTree = "<group>"; };
F6E2FC011E097B9F0083EBEC /* MWMMapDownloaderButtonTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMMapDownloaderButtonTableViewCell.h; sourceTree = "<group>"; };
F6E2FC021E097B9F0083EBEC /* MWMMapDownloaderButtonTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWMMapDownloaderButtonTableViewCell.m; sourceTree = "<group>"; };
@ -2009,62 +1942,21 @@
F6E2FC941E097B9F0083EBEC /* MWMDirectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMDirectionView.h; sourceTree = "<group>"; };
F6E2FC951E097B9F0083EBEC /* MWMDirectionView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = MWMDirectionView.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
F6E2FC961E097B9F0083EBEC /* MWMDirectionView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMDirectionView.xib; sourceTree = "<group>"; };
F6E2FC971E097B9F0083EBEC /* MWMPlacePageData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageData.h; sourceTree = "<group>"; };
F6E2FC981E097B9F0083EBEC /* MWMPlacePageData.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMPlacePageData.mm; sourceTree = "<group>"; };
F6E2FC991E097B9F0083EBEC /* MWMPlacePageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageManager.h; sourceTree = "<group>"; };
F6E2FC9A1E097B9F0083EBEC /* MWMPlacePageManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMPlacePageManager.mm; sourceTree = "<group>"; };
F6E2FC9B1E097B9F0083EBEC /* MWMPlacePageProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageProtocol.h; sourceTree = "<group>"; };
F6E2FC9E1E097B9F0083EBEC /* MWMActionBarButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMActionBarButton.h; sourceTree = "<group>"; };
F6E2FC9F1E097B9F0083EBEC /* MWMActionBarButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWMActionBarButton.m; sourceTree = "<group>"; };
F6E2FCA01E097B9F0083EBEC /* MWMActionBarButton.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMActionBarButton.xib; sourceTree = "<group>"; };
F6E2FCA11E097B9F0083EBEC /* MWMPlacePageActionBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageActionBar.h; sourceTree = "<group>"; };
F6E2FCA21E097B9F0083EBEC /* MWMPlacePageActionBar.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = MWMPlacePageActionBar.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
F6E2FCA31E097B9F0083EBEC /* MWMPlacePageActionBar.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMPlacePageActionBar.xib; sourceTree = "<group>"; };
F6E2FCAA1E097B9F0083EBEC /* MWMBookmarkCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMBookmarkCell.h; sourceTree = "<group>"; };
F6E2FCAB1E097B9F0083EBEC /* MWMBookmarkCell.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMBookmarkCell.mm; sourceTree = "<group>"; };
F6E2FCAC1E097B9F0083EBEC /* MWMBookmarkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMBookmarkCell.xib; sourceTree = "<group>"; };
F6E2FCAD1E097B9F0083EBEC /* MWMPlacePageBookmarkDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageBookmarkDelegate.h; sourceTree = "<group>"; };
F6E2FCAE1E097B9F0083EBEC /* MWMPlacePageCellUpdateProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageCellUpdateProtocol.h; sourceTree = "<group>"; };
F6E2FCB01E097B9F0083EBEC /* MWMPlacePageButtonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageButtonCell.h; sourceTree = "<group>"; };
F6E2FCB11E097B9F0083EBEC /* MWMPlacePageButtonCell.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMPlacePageButtonCell.mm; sourceTree = "<group>"; };
F6E2FCB21E097B9F0083EBEC /* MWMPlacePageButtonCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMPlacePageButtonCell.xib; sourceTree = "<group>"; };
F6E2FCB41E097B9F0083EBEC /* _MWMOHHeaderCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = _MWMOHHeaderCell.xib; sourceTree = "<group>"; };
F6E2FCB51E097B9F0083EBEC /* _MWMOHSubCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = _MWMOHSubCell.xib; sourceTree = "<group>"; };
F6E2FCB81E097B9F0083EBEC /* MWMOpeningHoursCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMOpeningHoursCell.xib; sourceTree = "<group>"; };
F6E2FCB91E097B9F0083EBEC /* MWMOpeningHoursLayoutHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMOpeningHoursLayoutHelper.h; sourceTree = "<group>"; };
F6E2FCBA1E097B9F0083EBEC /* MWMOpeningHoursLayoutHelper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = MWMOpeningHoursLayoutHelper.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
F6E2FCBB1E097B9F0083EBEC /* MWMPlacePageOpeningHoursCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageOpeningHoursCell.h; sourceTree = "<group>"; };
F6E2FCBC1E097B9F0083EBEC /* MWMPlacePageOpeningHoursCell.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = MWMPlacePageOpeningHoursCell.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
F6E2FCBD1E097B9F0083EBEC /* MWMPlacePageOpeningHoursCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMPlacePageOpeningHoursCell.xib; sourceTree = "<group>"; };
F6E2FCBE1E097B9F0083EBEC /* MWMPlacePageOpeningHoursDayView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageOpeningHoursDayView.h; sourceTree = "<group>"; };
F6E2FCBF1E097B9F0083EBEC /* MWMPlacePageOpeningHoursDayView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWMPlacePageOpeningHoursDayView.m; sourceTree = "<group>"; };
F6E2FCC01E097B9F0083EBEC /* MWMPlacePageOpeningHoursWeekDayView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMPlacePageOpeningHoursWeekDayView.xib; sourceTree = "<group>"; };
F6E2FCC21E097B9F0083EBEC /* MWMPlacePageRegularCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageRegularCell.h; sourceTree = "<group>"; };
F6E2FCC31E097B9F0083EBEC /* MWMPlacePageRegularCell.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMPlacePageRegularCell.mm; sourceTree = "<group>"; };
F6E2FCC41E097B9F0083EBEC /* MWMPlacePageInfoCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMPlacePageInfoCell.xib; sourceTree = "<group>"; };
F6E2FCC51E097B9F0083EBEC /* MWMPlacePageLinkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMPlacePageLinkCell.xib; sourceTree = "<group>"; };
F6E2FCC91E097B9F0083EBEC /* PlacePageTaxiCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PlacePageTaxiCell.xib; sourceTree = "<group>"; };
F6E2FCCA1E097B9F0083EBEC /* CopyLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CopyLabel.h; sourceTree = "<group>"; };
F6E2FCCB1E097B9F0083EBEC /* CopyLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CopyLabel.m; sourceTree = "<group>"; };
F6E2FCCC1E097B9F0083EBEC /* MWMiPadPlacePageLayoutImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMiPadPlacePageLayoutImpl.h; sourceTree = "<group>"; };
F6E2FCCD1E097B9F0083EBEC /* MWMiPadPlacePageLayoutImpl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMiPadPlacePageLayoutImpl.mm; sourceTree = "<group>"; };
F6E2FCCE1E097B9F0083EBEC /* MWMiPhonePlacePageLayoutImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMiPhonePlacePageLayoutImpl.h; sourceTree = "<group>"; };
F6E2FCCF1E097B9F0083EBEC /* MWMiPhonePlacePageLayoutImpl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMiPhonePlacePageLayoutImpl.mm; sourceTree = "<group>"; };
F6E2FCD01E097B9F0083EBEC /* MWMPlacePageLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageLayout.h; sourceTree = "<group>"; };
F6E2FCD11E097B9F0083EBEC /* MWMPlacePageLayout.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMPlacePageLayout.mm; sourceTree = "<group>"; };
F6E2FCD21E097B9F0083EBEC /* MWMPlacePageLayoutImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPlacePageLayoutImpl.h; sourceTree = "<group>"; };
F6E2FCD41E097B9F0083EBEC /* MWMPPView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPPView.h; sourceTree = "<group>"; };
F6E2FCD51E097B9F0083EBEC /* MWMPPView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMPPView.mm; sourceTree = "<group>"; };
F6E2FCD61E097B9F0083EBEC /* MWMPPView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MWMPPView.xib; sourceTree = "<group>"; };
F6E2FCD81E097B9F0083EBEC /* _MWMPPPAddress.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = _MWMPPPAddress.xib; sourceTree = "<group>"; };
F6E2FCD91E097B9F0083EBEC /* PPPReview.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PPPReview.xib; sourceTree = "<group>"; };
F6E2FCDA1E097B9F0083EBEC /* _MWMPPPExternalTitle.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = _MWMPPPExternalTitle.xib; sourceTree = "<group>"; };
F6E2FCDB1E097B9F0083EBEC /* _MWMPPPSchedule.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = _MWMPPPSchedule.xib; sourceTree = "<group>"; };
F6E2FCDC1E097B9F0083EBEC /* _MWMPPPSpace.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = _MWMPPPSpace.xib; sourceTree = "<group>"; };
F6E2FCDD1E097B9F0083EBEC /* _MWMPPPSubtitle.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = _MWMPPPSubtitle.xib; sourceTree = "<group>"; };
F6E2FCDE1E097B9F0083EBEC /* _MWMPPPTitle.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = _MWMPPPTitle.xib; sourceTree = "<group>"; };
F6E2FCDF1E097B9F0083EBEC /* MWMPPPreviewLayoutHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMPPPreviewLayoutHelper.h; sourceTree = "<group>"; };
F6E2FCE01E097B9F0083EBEC /* MWMPPPreviewLayoutHelper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; lineEnding = 0; path = MWMPPPreviewLayoutHelper.mm; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
F6E2FCED1E097B9F0083EBEC /* MWMSearchFilterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMSearchFilterViewController.h; sourceTree = "<group>"; };
F6E2FCEE1E097B9F0083EBEC /* MWMSearchFilterViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMSearchFilterViewController.mm; sourceTree = "<group>"; };
F6E2FCEF1E097B9F0083EBEC /* MWMSearchFilterViewController_Protected.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMSearchFilterViewController_Protected.h; sourceTree = "<group>"; };
@ -2398,16 +2290,6 @@
name = Frameworks;
sourceTree = "<group>";
};
33010DB121B7E0E000925411 /* DescriptionCell */ = {
isa = PBXGroup;
children = (
33010DB221B7E14700925411 /* MWMPlaceDescriptionCell.xib */,
331922AD21BAD29900D4AAC5 /* MWMPlaceDescriptionCell.h */,
331922AE21BAD29900D4AAC5 /* MWMPlaceDescriptionCell.m */,
);
path = DescriptionCell;
sourceTree = "<group>";
};
33046837219C605E0041F3A8 /* Category settings */ = {
isa = PBXGroup;
children = (
@ -3507,15 +3389,6 @@
path = TipsAndTricks;
sourceTree = "<group>";
};
472C40E1232A7B4F009AA777 /* CatalogPromo */ = {
isa = PBXGroup;
children = (
472C40E2232A7B9F009AA777 /* CatalogSingleItemCell.swift */,
472C40E3232A7B9F009AA777 /* CatalogSingleItemCell.xib */,
);
path = CatalogPromo;
sourceTree = "<group>";
};
472E3F4221468AF40020E412 /* Subscriptions */ = {
isa = PBXGroup;
children = (
@ -4145,8 +4018,7 @@
F6558D951E642C18002203AE /* Controllers */ = {
isa = PBXGroup;
children = (
F6558D9F1E642CC0002203AE /* MWMFacilitiesController.h */,
F6558DA01E642CC0002203AE /* MWMFacilitiesController.m */,
47CF2E6023BA090400D11C30 /* FacilitiesController.swift */,
);
name = Controllers;
path = ../Controllers;
@ -4165,18 +4037,8 @@
isa = PBXGroup;
children = (
F6558D951E642C18002203AE /* Controllers */,
F6664BFF1E6459DA00E703C2 /* PPReviewHeaderCell.swift */,
F6664C001E6459DA00E703C2 /* PPReviewHeaderCell.xib */,
F6664BF71E6459CB00E703C2 /* PPFacilityCell.swift */,
F6664BF81E6459CB00E703C2 /* PPFacilityCell.xib */,
F68224991E5B104600BC1C18 /* PPHotelDescriptionCell.swift */,
F682249D1E5B105900BC1C18 /* PPHotelDescriptionCell.xib */,
F69CE8D41E5C49B4002B5881 /* PPHotelCarouselCell.swift */,
F69CE8D81E5C5088002B5881 /* PPHotelCarouselCell.xib */,
F69CE8DC1E5C51AB002B5881 /* CarouselElement.xib */,
F6664C0F1E645A4100E703C2 /* MWMPPReviewCell.h */,
F6664C101E645A4100E703C2 /* MWMPPReviewCell.mm */,
F6664C111E645A4100E703C2 /* MWMPPReviewCell.xib */,
F6664BF71E6459CB00E703C2 /* FacilityCell.swift */,
F6664BF81E6459CB00E703C2 /* FacilityCell.xib */,
);
path = BookingCells;
sourceTree = "<group>";
@ -4185,8 +4047,6 @@
isa = PBXGroup;
children = (
3445324A1F714FD70059FBCC /* UGCAddReview */,
34E50DDD1F6FCBA1008EED49 /* UGCAddReviewCell.swift */,
34E50DDE1F6FCBA1008EED49 /* UGCAddReviewCell.xib */,
344532361F6FFE6A0059FBCC /* UGCRating.swift */,
348F8A511F863B6100060C2A /* UGCReview.swift */,
34E50DF51F6FCC96008EED49 /* UGCReviewCell.swift */,
@ -4441,9 +4301,6 @@
children = (
34F4B0641F6AC6890035F4F3 /* UGCViewModel */,
F6E2FC931E097B9F0083EBEC /* DirectionView */,
F68224A11E5B1B1A00BC1C18 /* MWMPlacePageButtonsProtocol.h */,
F6E2FC971E097B9F0083EBEC /* MWMPlacePageData.h */,
F6E2FC981E097B9F0083EBEC /* MWMPlacePageData.mm */,
F6E2FC991E097B9F0083EBEC /* MWMPlacePageManager.h */,
F6E2FC9A1E097B9F0083EBEC /* MWMPlacePageManager.mm */,
34E776301F15FAC2003040B3 /* MWMPlacePageManagerHelper.h */,
@ -4493,17 +4350,7 @@
children = (
F6E2FC9D1E097B9F0083EBEC /* ActionBar */,
F6E2FCA81E097B9F0083EBEC /* Content */,
F6E2FCCA1E097B9F0083EBEC /* CopyLabel.h */,
F6E2FCCB1E097B9F0083EBEC /* CopyLabel.m */,
F6E2FCCC1E097B9F0083EBEC /* MWMiPadPlacePageLayoutImpl.h */,
F6E2FCCD1E097B9F0083EBEC /* MWMiPadPlacePageLayoutImpl.mm */,
F6E2FCCE1E097B9F0083EBEC /* MWMiPhonePlacePageLayoutImpl.h */,
F6E2FCCF1E097B9F0083EBEC /* MWMiPhonePlacePageLayoutImpl.mm */,
F6E2FCD01E097B9F0083EBEC /* MWMPlacePageLayout.h */,
F6E2FCD11E097B9F0083EBEC /* MWMPlacePageLayout.mm */,
F6E2FCD21E097B9F0083EBEC /* MWMPlacePageLayoutImpl.h */,
F6E2FCD31E097B9F0083EBEC /* PlacePageView */,
F6E2FCD71E097B9F0083EBEC /* Preview */,
47CF2E6223BA0DD500D11C30 /* CopyLabel.swift */,
);
path = PlacePageLayout;
sourceTree = "<group>";
@ -4514,9 +4361,6 @@
F6E2FC9E1E097B9F0083EBEC /* MWMActionBarButton.h */,
F6E2FC9F1E097B9F0083EBEC /* MWMActionBarButton.m */,
F6E2FCA01E097B9F0083EBEC /* MWMActionBarButton.xib */,
F6E2FCA11E097B9F0083EBEC /* MWMPlacePageActionBar.h */,
F6E2FCA21E097B9F0083EBEC /* MWMPlacePageActionBar.mm */,
F6E2FCA31E097B9F0083EBEC /* MWMPlacePageActionBar.xib */,
);
path = ActionBar;
sourceTree = "<group>";
@ -4524,50 +4368,20 @@
F6E2FCA81E097B9F0083EBEC /* Content */ = {
isa = PBXGroup;
children = (
472C40E1232A7B4F009AA777 /* CatalogPromo */,
33010DB121B7E0E000925411 /* DescriptionCell */,
F68224981E5B0FE100BC1C18 /* BookingCells */,
F6E2FCA91E097B9F0083EBEC /* BookmarkCell */,
F6E2FCAF1E097B9F0083EBEC /* ButtonCell */,
346DB81C1E5C4F6700E3123E /* Gallery */,
F6E2FCB31E097B9F0083EBEC /* OpeningHoursCell */,
F6E2FCC11E097B9F0083EBEC /* RegularCell */,
F6E2FCC61E097B9F0083EBEC /* TaxiCell */,
F68BDF181EF80DCC0009BB81 /* UGC */,
);
path = Content;
sourceTree = "<group>";
};
F6E2FCA91E097B9F0083EBEC /* BookmarkCell */ = {
isa = PBXGroup;
children = (
F6E2FCAA1E097B9F0083EBEC /* MWMBookmarkCell.h */,
F6E2FCAB1E097B9F0083EBEC /* MWMBookmarkCell.mm */,
F6E2FCAC1E097B9F0083EBEC /* MWMBookmarkCell.xib */,
F6E2FCAD1E097B9F0083EBEC /* MWMPlacePageBookmarkDelegate.h */,
F6E2FCAE1E097B9F0083EBEC /* MWMPlacePageCellUpdateProtocol.h */,
);
path = BookmarkCell;
sourceTree = "<group>";
};
F6E2FCAF1E097B9F0083EBEC /* ButtonCell */ = {
isa = PBXGroup;
children = (
F6E2FCB01E097B9F0083EBEC /* MWMPlacePageButtonCell.h */,
F6E2FCB11E097B9F0083EBEC /* MWMPlacePageButtonCell.mm */,
F6E2FCB21E097B9F0083EBEC /* MWMPlacePageButtonCell.xib */,
);
path = ButtonCell;
sourceTree = "<group>";
};
F6E2FCB31E097B9F0083EBEC /* OpeningHoursCell */ = {
isa = PBXGroup;
children = (
F6E2FCB41E097B9F0083EBEC /* _MWMOHHeaderCell.xib */,
F6E2FCB51E097B9F0083EBEC /* _MWMOHSubCell.xib */,
F6E2FCB81E097B9F0083EBEC /* MWMOpeningHoursCell.xib */,
F6E2FCB91E097B9F0083EBEC /* MWMOpeningHoursLayoutHelper.h */,
F6E2FCBA1E097B9F0083EBEC /* MWMOpeningHoursLayoutHelper.mm */,
F6E2FCBB1E097B9F0083EBEC /* MWMPlacePageOpeningHoursCell.h */,
F6E2FCBC1E097B9F0083EBEC /* MWMPlacePageOpeningHoursCell.mm */,
F6E2FCBD1E097B9F0083EBEC /* MWMPlacePageOpeningHoursCell.xib */,
@ -4578,56 +4392,6 @@
path = OpeningHoursCell;
sourceTree = "<group>";
};
F6E2FCC11E097B9F0083EBEC /* RegularCell */ = {
isa = PBXGroup;
children = (
F6E2FCC21E097B9F0083EBEC /* MWMPlacePageRegularCell.h */,
F6E2FCC31E097B9F0083EBEC /* MWMPlacePageRegularCell.mm */,
F6E2FCC41E097B9F0083EBEC /* MWMPlacePageInfoCell.xib */,
F6E2FCC51E097B9F0083EBEC /* MWMPlacePageLinkCell.xib */,
);
path = RegularCell;
sourceTree = "<group>";
};
F6E2FCC61E097B9F0083EBEC /* TaxiCell */ = {
isa = PBXGroup;
children = (
F6E2FCC91E097B9F0083EBEC /* PlacePageTaxiCell.xib */,
3451F4EC1F026DAF00A981F2 /* PlacePageTaxiCell.swift */,
34AC7F901F06538B0050DE2B /* MWMPlacePageTaxiProvider.h */,
);
path = TaxiCell;
sourceTree = "<group>";
};
F6E2FCD31E097B9F0083EBEC /* PlacePageView */ = {
isa = PBXGroup;
children = (
F6E2FCD41E097B9F0083EBEC /* MWMPPView.h */,
F6E2FCD51E097B9F0083EBEC /* MWMPPView.mm */,
F6E2FCD61E097B9F0083EBEC /* MWMPPView.xib */,
);
path = PlacePageView;
sourceTree = "<group>";
};
F6E2FCD71E097B9F0083EBEC /* Preview */ = {
isa = PBXGroup;
children = (
F6E2FCD81E097B9F0083EBEC /* _MWMPPPAddress.xib */,
F6E2FCDA1E097B9F0083EBEC /* _MWMPPPExternalTitle.xib */,
F6E2FCDB1E097B9F0083EBEC /* _MWMPPPSchedule.xib */,
F6E2FCDC1E097B9F0083EBEC /* _MWMPPPSpace.xib */,
F6E2FCDD1E097B9F0083EBEC /* _MWMPPPSubtitle.xib */,
F6E2FCDE1E097B9F0083EBEC /* _MWMPPPTitle.xib */,
F6E2FCDF1E097B9F0083EBEC /* MWMPPPreviewLayoutHelper.h */,
F6E2FCE01E097B9F0083EBEC /* MWMPPPreviewLayoutHelper.mm */,
F6D67CE8206929590032FD38 /* PPPSearchSimilarButton.swift */,
F6D67CEA2069318B0032FD38 /* PPPSearchSimilarButton.xib */,
34F1ADD11F6BC09E001CE79D /* PPPReview.swift */,
F6E2FCD91E097B9F0083EBEC /* PPPReview.xib */,
);
path = Preview;
sourceTree = "<group>";
};
F6E2FCE11E097B9F0083EBEC /* Search */ = {
isa = PBXGroup;
children = (
@ -5027,27 +4791,18 @@
6741A9581BF340DE002C974C /* 04_padauk.ttf in Resources */,
6741A9591BF340DE002C974C /* 05_khmeros.ttf in Resources */,
34AB66801FC5AA330078E451 /* MWMiPhoneRoutePreview.xib in Resources */,
F6D67CEB2069318B0032FD38 /* PPPSearchSimilarButton.xib in Resources */,
F61757F11FC731F5000AD0D0 /* DiscoveryOnlineTemplateCell.xib in Resources */,
6741A95B1BF340DE002C974C /* 06_code2000.ttf in Resources */,
F603E05E1FDE9703006B84D6 /* DiscoverySearchCollectionHolderCell.xib in Resources */,
6741A99F1BF340DE002C974C /* 07_roboto_medium.ttf in Resources */,
F6E2FE6D1E097BA00083EBEC /* _MWMOHHeaderCell.xib in Resources */,
F6E2FE701E097BA00083EBEC /* _MWMOHSubCell.xib in Resources */,
472C40E5232A7B9F009AA777 /* CatalogSingleItemCell.xib in Resources */,
F6E2FEA91E097BA00083EBEC /* _MWMPPPAddress.xib in Resources */,
4716EAC121A6E0570029B886 /* BookmarksVC.xib in Resources */,
F6E2FEAC1E097BA00083EBEC /* PPPReview.xib in Resources */,
F60C8BEF1FCED15A00DCF5FB /* DiscoverySearchCell.xib in Resources */,
CD4A1F1C230EB43B00F2A6B6 /* CatalogConnectionErrorView.xib in Resources */,
F65D1E1A20E4F11600FE31DD /* ugc_migration in Resources */,
F6E2FEAF1E097BA00083EBEC /* _MWMPPPExternalTitle.xib in Resources */,
F6E2FEB21E097BA00083EBEC /* _MWMPPPSchedule.xib in Resources */,
F6E2FEB51E097BA00083EBEC /* _MWMPPPSpace.xib in Resources */,
F6E2FEB81E097BA00083EBEC /* _MWMPPPSubtitle.xib in Resources */,
4554B6EE1E55F0F30084017F /* drules_proto_vehicle_dark.bin in Resources */,
34AB66141FC5AA320078E451 /* MWMNavigationInfoView.xib in Resources */,
F6E2FEBB1E097BA00083EBEC /* _MWMPPPTitle.xib in Resources */,
F61757E91FC72CDE000AD0D0 /* DiscoverySpinnerCell.xib in Resources */,
340E1EEC1E2F614400CE49BF /* Authorization.storyboard in Resources */,
6741A95C1BF340DE002C974C /* categories.txt in Resources */,
@ -5066,7 +4821,6 @@
6741A9501BF340DE002C974C /* fonts_whitelist.txt in Resources */,
34F73FA31E08300E00AC1FD6 /* Images.xcassets in Resources */,
34F73F9C1E082FF800AC1FD6 /* InfoPlist.strings in Resources */,
F6664C161E645A4100E703C2 /* MWMPPReviewCell.xib in Resources */,
340E1EEF1E2F614400CE49BF /* LaunchScreen.storyboard in Resources */,
34F73F9F1E082FF800AC1FD6 /* Localizable.strings in Resources */,
340E1EF21E2F614400CE49BF /* Main.storyboard in Resources */,
@ -5074,7 +4828,6 @@
F6E2FE521E097BA00083EBEC /* MWMActionBarButton.xib in Resources */,
F623DA6F1C9C2E62006A3436 /* MWMAddPlaceNavigationBar.xib in Resources */,
6741A9991BF340DE002C974C /* MWMAlertViewController.xib in Resources */,
F6E2FE641E097BA00083EBEC /* MWMBookmarkCell.xib in Resources */,
B366130B20D5E2E000E7DC3E /* CatalogCategoryCell.xib in Resources */,
F6E2FD951E097BA00083EBEC /* MWMBookmarkColorViewController.xib in Resources */,
F6E2FD9B1E097BA00083EBEC /* MWMBookmarkTitleCell.xib in Resources */,
@ -5118,7 +4871,7 @@
F62607FF207B83C400176C5A /* MWMSpinnerAlert.xib in Resources */,
F6EBB2731FD7E4FD00B69B6A /* DiscoveryNoResultsCell.xib in Resources */,
F6E2FD621E097BA00083EBEC /* MWMMapDownloaderLargeCountryTableViewCell.xib in Resources */,
F6664BFD1E6459CB00E703C2 /* PPFacilityCell.xib in Resources */,
F6664BFD1E6459CB00E703C2 /* FacilityCell.xib in Resources */,
3404F48C202894EA0090E401 /* BMCViewController.xib in Resources */,
F6E2FD681E097BA00083EBEC /* MWMMapDownloaderPlaceTableViewCell.xib in Resources */,
F6E2FD6E1E097BA00083EBEC /* MWMMapDownloaderSubplaceTableViewCell.xib in Resources */,
@ -5131,7 +4884,6 @@
995738DB235484410019AEE7 /* AllPassSubscriptionViewController.xib in Resources */,
F6E2FDEF1E097BA00083EBEC /* MWMOpeningHoursAddClosedTableViewCell.xib in Resources */,
F655C02920727A630048A241 /* DiscoveryMoreCell.xib in Resources */,
34E50DE31F6FCBA1008EED49 /* UGCAddReviewCell.xib in Resources */,
34B6FD602015E6BF00C18E97 /* DiscoveryBookingCell.xib in Resources */,
4788739020EE30B300F6826B /* LayersViewController.xib in Resources */,
F6E2FDF51E097BA00083EBEC /* MWMOpeningHoursAddScheduleTableViewCell.xib in Resources */,
@ -5154,11 +4906,7 @@
F6C16A671F9626B2000FE296 /* ReviewsViewController.xib in Resources */,
F6BD1D241CA412E40047B8E8 /* MWMOsmAuthAlert.xib in Resources */,
F6FE3C3C1CC5106500A73196 /* MWMPlaceDoesntExistAlert.xib in Resources */,
F6E2FE581E097BA00083EBEC /* MWMPlacePageActionBar.xib in Resources */,
F6E407D41FC4722F001F7821 /* MWMDiscoveryController.xib in Resources */,
F6E2FE6A1E097BA00083EBEC /* MWMPlacePageButtonCell.xib in Resources */,
F6E2FE8B1E097BA00083EBEC /* MWMPlacePageInfoCell.xib in Resources */,
F6E2FE8E1E097BA00083EBEC /* MWMPlacePageLinkCell.xib in Resources */,
F6E2FE7F1E097BA00083EBEC /* MWMPlacePageOpeningHoursCell.xib in Resources */,
34AB66711FC5AA330078E451 /* TransportTransitTrain.xib in Resources */,
33046836219C5A4E0041F3A8 /* CategorySettings.storyboard in Resources */,
@ -5166,9 +4914,7 @@
47C8789A22DF622400A772DA /* SubscriptionFailViewController.xib in Resources */,
47DF72BB225356BF0004AB10 /* DrivingOptions.storyboard in Resources */,
F6E2FE851E097BA00083EBEC /* MWMPlacePageOpeningHoursWeekDayView.xib in Resources */,
F6E2FE941E097BA00083EBEC /* PlacePageTaxiCell.xib in Resources */,
47289E5B2212DFFF002ABFC0 /* EditOnWebAlertViewController.xib in Resources */,
F6E2FEA61E097BA00083EBEC /* MWMPPView.xib in Resources */,
47E3C72221108E9F008B3B27 /* BookmarksLoadedViewController.xib in Resources */,
6741A9811BF340DE002C974C /* MWMRateAlert.xib in Resources */,
6741A9601BF340DE002C974C /* MWMRoutingDisclaimerAlert.xib in Resources */,
@ -5186,14 +4932,12 @@
408645FC21495EB1000A4A1D /* categories_cuisines.txt in Resources */,
F6E2FF391E097BA00083EBEC /* MWMSearchSuggestionCell.xib in Resources */,
34AB66231FC5AA330078E451 /* MWMiPadRoutePreview.xib in Resources */,
F6664C051E6459DA00E703C2 /* PPReviewHeaderCell.xib in Resources */,
BB25B1A71FB32767007276FA /* transit_colors.txt in Resources */,
3404F4962028A1B80090E401 /* BMCPermissionsCell.xib in Resources */,
F6E2FF421E097BA00083EBEC /* MWMSearchTableViewController.xib in Resources */,
34AB66681FC5AA330078E451 /* TransportTransitPedestrian.xib in Resources */,
F6E2FEEE1E097BA00083EBEC /* MWMSearchView.xib in Resources */,
470A89FF2134517600D72FBF /* BookmarksTutorialBlur.xib in Resources */,
33010DB321B7E14700925411 /* MWMPlaceDescriptionCell.xib in Resources */,
4501B1952077C35A001B9173 /* resources-xxxhdpi_dark in Resources */,
F6D67CDE2062BBA60032FD38 /* MWMBCCreateCategoryAlert.xib in Resources */,
4738A8E9239FC526007C0F43 /* AdBannerView.xib in Resources */,
@ -5214,8 +4958,6 @@
677A2DE21C0DD50900635A00 /* resources-default in Resources */,
F607C1881C032A8800B53A87 /* resources-hdpi_clear in Resources */,
F607C18A1C032A8800B53A87 /* resources-hdpi_dark in Resources */,
F69CE8DA1E5C5088002B5881 /* PPHotelCarouselCell.xib in Resources */,
F69CE8DE1E5C51AB002B5881 /* CarouselElement.xib in Resources */,
6741A97F1BF340DE002C974C /* resources-mdpi_clear in Resources */,
6741A9901BF340DE002C974C /* resources-mdpi_dark in Resources */,
6741A9981BF340DE002C974C /* resources-xhdpi_clear in Resources */,
@ -5225,7 +4967,6 @@
6741A9551BF340DE002C974C /* resources-xxhdpi_dark in Resources */,
340E1EF51E2F614400CE49BF /* SearchFilters.storyboard in Resources */,
B32FE74120D2844600EF7446 /* DownloadedBookmarksViewController.xib in Resources */,
F682249F1E5B105900BC1C18 /* PPHotelDescriptionCell.xib in Resources */,
B33D21AD20DA515800BAD749 /* MWMCategoryInfoCell.xib in Resources */,
340E1EF81E2F614400CE49BF /* Settings.storyboard in Resources */,
6741A9421BF340DE002C974C /* sound-strings in Resources */,
@ -5357,7 +5098,7 @@
F6E2FF5D1E097BA00083EBEC /* MWMRecentTrackSettingsController.mm in Sources */,
34AB66651FC5AA330078E451 /* TransportTransitTrain.swift in Sources */,
343064411E9FDC7300DC7665 /* SearchIndex.swift in Sources */,
F6664BFA1E6459CB00E703C2 /* PPFacilityCell.swift in Sources */,
F6664BFA1E6459CB00E703C2 /* FacilityCell.swift in Sources */,
475EFDBD239002D700A24B4C /* CatalogGalleryViewController.swift in Sources */,
CDCA273F2238087700167D87 /* MWMCarPlaySearchService.mm in Sources */,
348B926D1FF3B5E100379009 /* UIView+Animation.swift in Sources */,
@ -5394,11 +5135,9 @@
340475811E081B3300C92850 /* iosOGLContextFactory.mm in Sources */,
34AB66561FC5AA330078E451 /* TransportTransitPedestrian.swift in Sources */,
BB8123D62130427E00ADE512 /* MetalContextFactory.mm in Sources */,
F6D67CE9206929590032FD38 /* PPPSearchSimilarButton.swift in Sources */,
3467CEB2202C6EEE00D3C670 /* BMCNotificationsHeader.swift in Sources */,
34F4072F1E9E1AFF00E57AC0 /* BannersCache.swift in Sources */,
34D3B0211E389D05004100F9 /* MWMEditorAddAdditionalNameTableViewCell.m in Sources */,
F6E2FE491E097BA00083EBEC /* MWMPlacePageData.mm in Sources */,
99D363192358685300941BF4 /* SubscriptionGroupItem.swift in Sources */,
348F8A531F863B6100060C2A /* UGCReview.swift in Sources */,
340475501E081A4600C92850 /* fabric_logging_ios.mm in Sources */,
@ -5422,9 +5161,7 @@
34AB66471FC5AA330078E451 /* RouteManagerTableView.swift in Sources */,
47E98C102382C80600C800E0 /* PlacePageInfoViewController.swift in Sources */,
47DF72B922520CE20004AB10 /* MWMRoutingOptions.mm in Sources */,
F6E2FE611E097BA00083EBEC /* MWMBookmarkCell.mm in Sources */,
99B6A74E2362F5CD002C94CB /* PromoCoordinator.swift in Sources */,
F6E2FEA31E097BA00083EBEC /* MWMPPView.mm in Sources */,
3D15ACEE2155117000F725D5 /* MWMObjectsCategorySelectorDataSource.mm in Sources */,
F69739B21FD197DB00FDA07D /* MWMDiscoveryTableManager.mm in Sources */,
3454D7D11E07F045004AF2AD /* UIImage+RGBAData.m in Sources */,
@ -5488,7 +5225,6 @@
4767CDA620AB1F6200BD8166 /* LeftAlignedIconButton.swift in Sources */,
3454D7D41E07F045004AF2AD /* UIImageView+Coloring.m in Sources */,
3463BA671DE81DB90082417F /* MWMTrafficButtonViewController.mm in Sources */,
F6E2FE551E097BA00083EBEC /* MWMPlacePageActionBar.mm in Sources */,
34AB66051FC5AA320078E451 /* MWMNavigationDashboardManager+Entity.mm in Sources */,
34ABA6171C2D185C00FE1BEC /* MWMAuthorizationOSMLoginViewController.mm in Sources */,
991CE2DD2373145C009EB02A /* PromoAfterBookingCampaign.swift in Sources */,
@ -5515,7 +5251,6 @@
47B9065421C7FA400079C85E /* UIImageView+WebImage.m in Sources */,
F6E2FF481E097BA00083EBEC /* SettingsTableViewSelectableCell.swift in Sources */,
34BBD6581F826F810070CA50 /* AuthorizationTransitioningManager.swift in Sources */,
F6558DA21E642CC0002203AE /* MWMFacilitiesController.m in Sources */,
33F7668F21A57CDF00A88B16 /* EditOnWebViewController.swift in Sources */,
34AB664A1FC5AA330078E451 /* RouteManageriPadPresentationController.swift in Sources */,
B366130A20D5E2E000E7DC3E /* CatalogCategoryCell.swift in Sources */,
@ -5553,7 +5288,6 @@
479D306822C66C8F00D18278 /* MWMBookmarksBannerViewController.m in Sources */,
CDCA2748223FD24600167D87 /* MWMCarPlaySearchResultObject.mm in Sources */,
349D1AD81E2E325C004A2006 /* MWMBottomMenuLayout.m in Sources */,
F6E2FEBE1E097BA00083EBEC /* MWMPPPreviewLayoutHelper.mm in Sources */,
3454D7E01E07F045004AF2AD /* UITextField+RuntimeAttributes.m in Sources */,
1DFA2F6A20D3B57400FB2C66 /* UIColor+PartnerColor.m in Sources */,
347BFA901F27909200E5531F /* MenuArea.swift in Sources */,
@ -5565,7 +5299,6 @@
475EFDC123907DAA00A24B4C /* OpeningHoursViewController.swift in Sources */,
47A0416D238DBB6200D84E95 /* HotelPhotosViewController.swift in Sources */,
34AB66081FC5AA320078E451 /* MWMNavigationDashboardManager.mm in Sources */,
F6664C131E645A4100E703C2 /* MWMPPReviewCell.mm in Sources */,
47A0416F238DD0FD00D84E95 /* HotelDescriptionViewController.swift in Sources */,
991CE2BF2371D349009EB02A /* PromoCampaignManager.swift in Sources */,
F6E2FE431E097BA00083EBEC /* MWMDirectionView.mm in Sources */,
@ -5575,6 +5308,7 @@
F6E2FD561E097BA00083EBEC /* MWMMapDownloaderButtonTableViewCell.m in Sources */,
CDB4D5002231412900104869 /* MapTemplateBuilder.swift in Sources */,
47C8789022DF525A00A772DA /* SubscriptionSuccessViewController.swift in Sources */,
47CF2E6123BA090400D11C30 /* FacilitiesController.swift in Sources */,
3462258F1DDC5DBA001E8752 /* MWMSearchNoResultsAlert.mm in Sources */,
470F5A7D2189BB2F00754295 /* PaidRoutePurchase.swift in Sources */,
34AB66171FC5AA320078E451 /* MWMiPhoneRoutePreview.m in Sources */,
@ -5607,7 +5341,6 @@
4719A643219CB61D009F9AA7 /* BillingPendingTransaction.swift in Sources */,
4735008A23A83CF700661A95 /* DownloadedMapsDataSource.swift in Sources */,
CD9AD96F2281DF3600EC174A /* CategoryInfo.swift in Sources */,
F6E2FE881E097BA00083EBEC /* MWMPlacePageRegularCell.mm in Sources */,
3DEE1AEB21F72CD300054A91 /* MWMPowerManagmentViewController.mm in Sources */,
34AB66771FC5AA330078E451 /* TransportRoutePreviewStatus.swift in Sources */,
34BBD6641F8270AC0070CA50 /* AuthorizationTransitioning.swift in Sources */,
@ -5619,7 +5352,6 @@
34BBD65C1F826FD30070CA50 /* AuthorizationiPhonePresentationController.swift in Sources */,
56C74C391C74A3BC00B71B9F /* MWMInputEmailValidator.m in Sources */,
6741A9F51BF340DE002C974C /* BookmarksVC.mm in Sources */,
472C40E4232A7B9F009AA777 /* CatalogSingleItemCell.swift in Sources */,
B33D21B820E130D000BAD749 /* BookmarksTabViewController.swift in Sources */,
3358607E217632A2006D11F2 /* BookmarksSharingViewController.swift in Sources */,
99CB34C5236B00FD001D28AD /* WelcomeStorage.swift in Sources */,
@ -5639,7 +5371,6 @@
47F4F21523A6F06F0022FD56 /* AvailableMapsDataSource.swift in Sources */,
995739062355CAC40019AEE7 /* ImageViewCrossDisolve.swift in Sources */,
47B9065221C7FA400079C85E /* MWMWebImage.m in Sources */,
F6664C021E6459DA00E703C2 /* PPReviewHeaderCell.swift in Sources */,
F6E2FE7C1E097BA00083EBEC /* MWMPlacePageOpeningHoursCell.mm in Sources */,
340E1EFB1E2F614400CE49BF /* Storyboard.swift in Sources */,
34E776331F15FAC2003040B3 /* MWMPlacePageManagerHelper.mm in Sources */,
@ -5659,13 +5390,11 @@
F6381BF61CD12045004CA943 /* LocaleTranslator.mm in Sources */,
9917D17F2397B1D600A7E06E /* IPadModalPresentationController.swift in Sources */,
3444DFCD1F1760B900E73099 /* WidgetsArea.swift in Sources */,
F6E2FE9A1E097BA00083EBEC /* MWMiPadPlacePageLayoutImpl.mm in Sources */,
34D3B03C1E389D05004100F9 /* MWMEditorSwitchTableViewCell.m in Sources */,
344532381F6FFE6A0059FBCC /* UGCRating.swift in Sources */,
47A6F3C5235F47B90053FBA4 /* BookmarksSubscriptionButton.swift in Sources */,
34AB66411FC5AA330078E451 /* RouteManagerTransitioningManager.swift in Sources */,
3454D7CE1E07F045004AF2AD /* UIFont+MapsMeFonts.m in Sources */,
F682249B1E5B104600BC1C18 /* PPHotelDescriptionCell.swift in Sources */,
3454D7DD1E07F045004AF2AD /* UISwitch+RuntimeAttributes.m in Sources */,
CD4A1F1A230EADC100F2A6B6 /* CatalogConnectionErrorView.swift in Sources */,
991CE2C22371D349009EB02A /* PromoDiscoveryCampaign.swift in Sources */,
@ -5689,7 +5418,6 @@
F6E2FF691E097BA00083EBEC /* MWMUnitsController.mm in Sources */,
6741AA031BF340DE002C974C /* MWMActivityViewController.mm in Sources */,
472849012388098300176158 /* MyReviewViewController.swift in Sources */,
F6E2FE9D1E097BA00083EBEC /* MWMiPhonePlacePageLayoutImpl.mm in Sources */,
CDCA27382237F1BD00167D87 /* BookmarkInfo.swift in Sources */,
993F5509237C622700545511 /* DeepLinkHandlerStrategy.swift in Sources */,
34AB668C1FC5AA330078E451 /* NavigationStreetNameView.swift in Sources */,
@ -5699,7 +5427,6 @@
3488B0131E9D0AEC0068AFD8 /* AdBanner.swift in Sources */,
3404755F1E081A4600C92850 /* MWMLocationPredictor.mm in Sources */,
F6E2FE041E097BA00083EBEC /* MWMOpeningHoursDaysSelectorTableViewCell.mm in Sources */,
F6E2FE671E097BA00083EBEC /* MWMPlacePageButtonCell.mm in Sources */,
472E3F472146BCD30020E412 /* SubscriptionManager.swift in Sources */,
F6E2FE131E097BA00083EBEC /* MWMOpeningHoursTimeSelectorTableViewCell.mm in Sources */,
344532311F6FE5880059FBCC /* UGCSummaryRatingStarsCell.swift in Sources */,
@ -5725,12 +5452,11 @@
6741AA0B1BF340DE002C974C /* MWMMapViewControlsManager.mm in Sources */,
F6E2FED91E097BA00083EBEC /* MWMSearchContentView.m in Sources */,
F6BD1D211CA412920047B8E8 /* MWMOsmAuthAlert.mm in Sources */,
47CF2E6323BA0DD500D11C30 /* CopyLabel.swift in Sources */,
472848F92384CEC900176158 /* TaxiViewController.swift in Sources */,
34AB66321FC5AA330078E451 /* RouteManagerHeaderView.swift in Sources */,
347040301EA6470700038379 /* BorderedButton.swift in Sources */,
34F1ADD31F6BC09E001CE79D /* PPPReview.swift in Sources */,
F6E2FF4B1E097BA00083EBEC /* SettingsTableViewSwitchCell.swift in Sources */,
F6E2FE791E097BA00083EBEC /* MWMOpeningHoursLayoutHelper.mm in Sources */,
47A04173238E989200D84E95 /* HotelReviewsViewController.swift in Sources */,
472E3F4A2146C4CD0020E412 /* MWMPurchaseManager.mm in Sources */,
34ABA6211C2D517500FE1BEC /* MWMInputValidator.m in Sources */,
@ -5744,7 +5470,6 @@
CD4A1F132305872700F2A6B6 /* PromoBookingPresentationController.swift in Sources */,
3472B5D3200F501500DC6CD5 /* BackgroundFetchTaskFrameworkType.swift in Sources */,
F6E2FF301E097BA00083EBEC /* MWMSearchCommonCell.mm in Sources */,
F6E2FEA01E097BA00083EBEC /* MWMPlacePageLayout.mm in Sources */,
F655C027207278300048A241 /* DiscoveryMoreCell.swift in Sources */,
337F98B821D3D67E00C8AC27 /* SearchHistoryQueryCell.swift in Sources */,
99536111235DABB1008B218F /* BaseSubscriptionViewController.swift in Sources */,
@ -5799,7 +5524,6 @@
9917D17D2396793A00A7E06E /* PaidRoutesSubscriptionCampaign.swift in Sources */,
3404165C1E7C29AE00E2B6D6 /* PhotosInteractionAnimator.swift in Sources */,
993F550E237C622700545511 /* DeepLinkCataloguePathStrategy.swift in Sources */,
34E50DE01F6FCBA1008EED49 /* UGCAddReviewCell.swift in Sources */,
3404756E1E081A4600C92850 /* MWMSearch.mm in Sources */,
6741AA191BF340DE002C974C /* MWMDownloaderDialogCell.m in Sources */,
3DE1762422D614B8000214FF /* PromoAfterBookingViewController.swift in Sources */,
@ -5811,13 +5535,11 @@
34D3B0481E389D05004100F9 /* MWMNoteCell.m in Sources */,
CD9AD967228067F500EC174A /* MapInfo.swift in Sources */,
47F6E51221F61908004580CA /* CoreNotificationWrapper.mm in Sources */,
F6E2FE971E097BA00083EBEC /* CopyLabel.m in Sources */,
344532561F7155540059FBCC /* UGCReviewModel.swift in Sources */,
6741AA1D1BF340DE002C974C /* MWMDownloadTransitMapAlert.mm in Sources */,
346B42AC1DD5E3D20094EBEE /* MWMLocationNotFoundAlert.mm in Sources */,
340475091E08199E00C92850 /* MWMMyTarget.mm in Sources */,
340416501E7C086000E2B6D6 /* PhotoViewController.swift in Sources */,
331922AF21BAD29900D4AAC5 /* MWMPlaceDescriptionCell.m in Sources */,
674A7E301C0DB10B003D48E1 /* MWMMapWidgets.mm in Sources */,
34AB66291FC5AA330078E451 /* RouteManagerViewController.swift in Sources */,
33B19C65218B46C100B323A7 /* SharingTagsViewController.swift in Sources */,
@ -5834,7 +5556,6 @@
34AB66891FC5AA330078E451 /* NavigationControlView.swift in Sources */,
479EE94A2292FB03009DEBA6 /* ActivityIndicator.swift in Sources */,
34AB661D1FC5AA330078E451 /* MWMTaxiPreviewDataSource.mm in Sources */,
F69CE8D61E5C49B4002B5881 /* PPHotelCarouselCell.swift in Sources */,
47B9065321C7FA400079C85E /* MWMImageCache.m in Sources */,
993F550A237C622700545511 /* DeepLinkGeoStrategy.swift in Sources */,
F6FEA82E1C58F108007223CC /* MWMButton.m in Sources */,
@ -5869,7 +5590,6 @@
4788739220EE326500F6826B /* VerticallyAlignedButton.swift in Sources */,
3444DFDE1F18A5AF00E73099 /* SideButtonsArea.swift in Sources */,
CDCA278622451F5000167D87 /* RouteInfo.swift in Sources */,
3451F4EE1F026DAF00A981F2 /* PlacePageTaxiCell.swift in Sources */,
3467CEB6202C6FA900D3C670 /* BMCNotificationsCell.swift in Sources */,
34B846A32029DFEB0081ECCD /* BMCPermissionsHeader.swift in Sources */,
993F550D237C622700545511 /* DeepLinkLeadStrategy.swift in Sources */,

View file

@ -3,7 +3,6 @@
#import "MWMBookmarkTitleCell.h"
#import "MWMButtonCell.h"
#import "MWMNoteCell.h"
#import "MWMPlacePageData.h"
#import "SelectSetVC.h"
#import "SwiftBridge.h"

View file

@ -1,37 +0,0 @@
#import "MWMPlacePageTaxiProvider.h"
#import "MWMUGCReviewSource.h"
#import <CoreApi/UgcSummaryRatingType.h>
#import <CoreApi/PlacePageData.h>
typedef UIView * _Nullable (^MWMPlacePageButtonsDismissBlock)(NSInteger);
@protocol MWMReviewsViewModelProtocol;
@protocol MWMPlacePageButtonsProtocol<NSObject>
- (void)editPlace;
- (void)addPlace;
- (void)addBusiness;
- (void)book;
- (void)openDescriptionUrl;
- (void)openMoreUrl;
- (void)openReviewUrl;
- (void)editBookmark;
- (void)showAllFacilities;
- (void)showPhotoAtIndex:(NSInteger)index
referenceView:(UIView * _Nullable)referenceView
referenceViewWhenDismissingHandler:
(nonnull MWMPlacePageButtonsDismissBlock)referenceViewWhenDismissingHandler;
- (void)showGallery;
- (void)showUGCAddReview:(UgcSummaryRatingType)value fromSource:(MWMUGCReviewSource)source;
- (void)searchSimilar;
- (void)openLocalAdsURL;
- (void)openReviews:(id<MWMReviewsViewModelProtocol> _Nonnull)reviewsViewModel;
- (void)showPlaceDescription:(NSString * _Nonnull)htmlString;
- (void)openCatalogForURL:(NSURL * _Nullable)url;
@end

View file

@ -1,298 +0,0 @@
#import "MWMPlacePageActionBar.h"
#include "partners_api/taxi_provider.hpp"
#include "storage/storage_defines.hpp"
#include "map/place_page_info.hpp"
#include "map/routing_mark.hpp"
#include "platform/network_policy.hpp"
#include <optional>
#import <CoreApi/UgcSummaryRatingType.h>
#include <vector>
@class MWMPlacePageData;
@class MWMUGCReviewVM;
struct FeatureID;
namespace ugc
{
struct Review;
} // ugc
namespace local_ads
{
enum class EventType;
} // local_ads
namespace booking
{
struct HotelReview;
struct HotelFacility;
} // namespace booking
namespace place_page
{
class Info;
enum class Sections
{
Preview,
PromoCatalog,
Bookmark,
Description,
HotelPhotos,
HotelDescription,
HotelFacilities,
HotelReviews,
Metainfo,
Ad,
Buttons,
UGCRating,
UGCAddReview,
UGCReviews
};
enum class PreviewRows
{
Title,
ExternalTitle,
Subtitle,
Schedule,
Review,
SearchSimilar,
Address,
Space,
Banner
};
enum class HotelDescriptionRow
{
Regular,
ShowMore
};
enum class HotelPhotosRow
{
Regular
};
enum class HotelFacilitiesRow
{
Regular,
ShowMore
};
enum class HotelReviewsRow
{
Header,
Regular,
ShowMore
};
enum class MetainfoRows
{
OpeningHours,
ExtendedOpeningHours,
Phone,
Address,
Website,
Email,
Cuisine,
Operator,
Internet,
Coordinate,
LocalAdsCandidate,
LocalAdsCustomer
};
enum class AdRows
{
Taxi
};
enum class ButtonsRows
{
AddBusiness,
EditPlace,
AddPlace,
HotelDescription,
Other
};
enum class OpeningHours
{
AllDay,
Open,
Closed,
Unknown
};
enum class PromoCatalogRow
{
Guides,
GuidesNoInternetError,
GuidesRequestError
};
using NewSectionsAreReady = void (^)(NSRange const & range, MWMPlacePageData * data, BOOL isSection);
} // namespace place_page
typedef void (^RefreshPromoCallbackBlock)(NSIndexSet *insertedSections);
@class MWMGalleryItemModel;
@class MWMUGCViewModel;
@class MWMUGCReviewModel;
@class MWMUGCRatingValueType;
@class MWMDiscoveryCityGalleryObjects;
@class CatalogPromoItem;
@protocol MWMBanner;
/// ViewModel for place page.
@interface MWMPlacePageData : NSObject
@property(copy, nonatomic) MWMVoidBlock refreshPreviewCallback;
@property(copy, nonatomic) place_page::NewSectionsAreReady sectionsAreReadyCallback;
@property(copy, nonatomic) MWMVoidBlock bannerIsReadyCallback;
@property(copy, nonatomic) MWMVoidBlock bookingDataUpdatedCallback;
@property(copy, nonatomic) RefreshPromoCallbackBlock refreshPromoCallback;
@property(nonatomic, readonly) MWMUGCViewModel * ugc;
@property(nonatomic, readonly) MWMDiscoveryCityGalleryObjects *promoGallery;
@property(nonatomic, readonly) NSInteger bookingDiscount;
@property(nonatomic, readonly) BOOL isSmartDeal;
@property(nonatomic, readonly) BOOL isPopular;
- (place_page::Info const &)getRawData;
- (void)fillSections;
- (void)updateBookmarkStatus:(BOOL)isBookmark;
/// Country id for changing place page's fields which depend on application state.
- (storage::CountryId const &)countryId;
- (FeatureID const &)featureId;
// Regular
- (NSString *)title;
- (NSString *)subtitle;
- (NSString *)placeDescription;
- (place_page::OpeningHours)schedule;
- (NSString *)address;
- (float)ratingRawValue;
// Booking
- (void)fillOnlineBookingSections;
- (MWMUGCRatingValueType *)bookingRating;
- (NSString *)bookingPricing;
- (NSURL *)sponsoredURL;
- (NSURL *)deepLink;
- (NSURL *)sponsoredDescriptionURL;
- (NSURL *)sponsoredMoreURL;
- (NSURL *)sponsoredReviewURL;
- (NSURL *)bookingSearchURL;
- (NSString *)sponsoredId;
- (NSString *)hotelDescription;
- (std::vector<booking::HotelFacility> const &)facilities;
- (std::vector<booking::HotelReview> const &)hotelReviews;
- (NSUInteger)numberOfHotelReviews;
- (NSURL *)URLToAllReviews;
- (NSArray<MWMGalleryItemModel *> *)photos;
- (std::optional<int>)hotelRawApproximatePricing;
- (std::optional<ftypes::IsHotelChecker::Type>)hotelType;
// Partners
- (NSString *)partnerName;
- (int)partnerIndex;
// UGC
- (ftraits::UGCRatingCategories)ugcRatingCategories;
- (void)setUGCUpdateFrom:(MWMUGCReviewModel *)reviewModel
language:(NSString *)language
resultHandler:(void (^)(BOOL))resultHandler;
// Route points
- (RouteMarkType)routeMarkType;
- (size_t)intermediateIndex;
// Taxi
- (std::vector<taxi::Provider::Type> const &)taxiProviders;
// Banner
- (id<MWMBanner>)nativeAd;
// API
- (NSString *)apiURL;
// Bookmark
- (NSString *)externalTitle;
- (kml::PredefinedColor)bookmarkColor;
- (NSString *)bookmarkDescription;
- (NSString *)bookmarkCategory;
- (kml::MarkId)bookmarkId;
- (kml::MarkGroupId)bookmarkCategoryId;
- (BOOL)isBookmarkEditable;
// Local Ads
- (NSString *)localAdsURL;
- (void)logLocalAdsEvent:(local_ads::EventType)type;
// Promo Catalog
- (void)fillPromoCatalogSection;
- (CatalogPromoItem *)guideAtIndex:(NSUInteger)index;
// Table view's data
- (std::vector<place_page::Sections> const &)sections;
- (std::vector<place_page::PreviewRows> const &)previewRows;
- (std::vector<place_page::HotelPhotosRow> const &)photosRows;
- (std::vector<place_page::HotelDescriptionRow> const &)descriptionRows;
- (std::vector<place_page::HotelFacilitiesRow> const &)hotelFacilitiesRows;
- (std::vector<place_page::HotelReviewsRow> const &)hotelReviewsRows;
- (std::vector<place_page::MetainfoRows> const &)metainfoRows;
- (std::vector<place_page::AdRows> const &)adRows;
- (std::vector<place_page::ButtonsRows> const &)buttonsRows;
- (std::vector<place_page::PromoCatalogRow> const &)promoCatalogRows;
// Table view metainfo rows
- (NSString *)stringForRow:(place_page::MetainfoRows)row;
// Helpers
- (NSString *)phoneNumber;
- (BOOL)isBookmark;
- (BOOL)isApi;
- (BOOL)isBooking;
- (BOOL)isOpentable;
- (BOOL)isPartner;
- (BOOL)isHolidayObject;
- (BOOL)isPromoCatalog;
- (BOOL)isLargeToponym;
- (BOOL)isSightseeing;
- (BOOL)isOutdoor;
- (BOOL)isBookingSearch;
- (BOOL)isHTMLDescription;
- (BOOL)isMyPosition;
- (BOOL)isRoutePoint;
- (RoadWarningMarkType)roadType;
- (BOOL)isPreviewPlus;
- (BOOL)isPartnerAppInstalled;
- (nonnull NSString*)statPlacement;
+ (UgcSummaryRatingType)ratingValueType:(place_page::rating::Impress)impress;
// Coordinates
- (m2::PointD const &)mercator;
- (ms::LatLon)latLon;
- (NSString *)statisticsTags;
// TODO(Vlad): Use MWMSettings to store coordinate format.
+ (void)toggleCoordinateSystem;
- (void)reguestPromoCatalog;
- (NSInteger)bookmarkSectionPosition;
@end

File diff suppressed because it is too large Load diff

View file

@ -1,13 +1,9 @@
#import "MWMPlacePageManager.h"
#import "CLLocation+Mercator.h"
#import "MWMActivityViewController.h"
#import "MWMFacilitiesController.h"
#import "MWMFrameworkListener.h"
#import "MWMFrameworkStorageObserver.h"
#import "MWMLocationHelpers.h"
#import "MWMLocationObserver.h"
#import "MWMPlacePageData.h"
#import "MWMPlacePageLayout.h"
#import "MWMRoutePoint+CPP.h"
#import "MWMSearchManager+Filter.h"
#import "MWMStorage+UI.h"
@ -53,39 +49,6 @@ void logSponsoredEvent(PlacePageData *data, NSString *eventName)
[Statistics logEvent:eventName withParameters:stat atLocation:[MWMLocationManager lastLocation]];
}
void logSponsoredEvent(MWMPlacePageData * data, NSString * eventName)
{
auto const & latLon = data.latLon;
NSMutableDictionary * stat = [@{} mutableCopy];
if (data.isBooking)
{
stat[kStatProvider] = kStatBooking;
stat[kStatHotel] = data.sponsoredId;
stat[kStatHotelLocation] = makeLocationEventValue(latLon.m_lat, latLon.m_lon);
}
else if (data.isOpentable)
{
stat[kStatProvider] = kStatOpentable;
stat[kStatRestaurant] = data.sponsoredId;
stat[kStatRestaurantLocation] = makeLocationEventValue(latLon.m_lat, latLon.m_lon);
}
else if (data.isPartner)
{
stat[kStatProvider] = data.partnerName;
stat[kStatCategory] = @(data.ratingRawValue);
stat[kStatObjectLat] = @(latLon.m_lat);
stat[kStatObjectLon] = @(latLon.m_lon);
}
else
{
stat[kStatProvider] = kStatPlacePageHotelSearch;
stat[kStatHotelLocation] = makeLocationEventValue(latLon.m_lat, latLon.m_lon);
}
[Statistics logEvent:eventName withParameters:stat atLocation:[MWMLocationManager lastLocation]];
}
void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
{
auto const userPos = GetFramework().GetCurrentPosition();
@ -94,12 +57,7 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
}
} // namespace
@interface MWMPlacePageManager ()<MWMFrameworkStorageObserver, MWMPlacePageLayoutDelegate,
MWMPlacePageLayoutDataSource, MWMLocationObserver,
MWMBookmarksObserver, MWMGCReviewSaver>
@property(nonatomic) MWMPlacePageLayout * layout;
@property(nonatomic) MWMPlacePageData * data;
@interface MWMPlacePageManager ()<MWMGCReviewSaver>
@property(nonatomic) storage::NodeStatus currentDownloaderStatus;
@ -110,255 +68,16 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
@implementation MWMPlacePageManager
- (void)showReview {
[self show];
[self showUGCAddReview:UgcSummaryRatingTypeNone
fromSource:MWMUGCReviewSourceNotification];
}
- (void)show {
self.isSponsoredOpenLogged = NO;
self.currentDownloaderStatus = storage::NodeStatus::Undefined;
[MWMFrameworkListener addObserver:self];
self.data = [[MWMPlacePageData alloc] init];
[self.data fillSections];
if (!self.layout)
{
self.layout = [[MWMPlacePageLayout alloc] initWithOwnerView:self.ownerViewController.view
delegate:self
dataSource:self];
}
[MWMLocationManager addObserver:self];
[[MWMBookmarksManager sharedManager] addObserver:self];
[self setupSpeedAndDistance];
[self.layout showWithData:self.data];
// Call for the first time to produce changes
[self processCountryEvent:@([self.data countryId].c_str())];
}
- (void)update {
if (!self.isPPShown)
return;
self.data = [[MWMPlacePageData alloc] init];
[self.data fillSections];
[self setupSpeedAndDistance];
[self.layout updateWithData:self.data];
// [self show];
// [self showUGCAddReview:UgcSummaryRatingTypeNone
// fromSource:MWMUGCReviewSourceNotification];
}
- (BOOL)isPPShown {
return self.data != nil;
return GetFramework().HasPlacePageInfo();
}
- (void)dismiss
{
[self.layout close];
self.data = nil;
[[MWMBookmarksManager sharedManager] removeObserver:self];
[MWMLocationManager removeObserver:self];
[MWMFrameworkListener removeObserver:self];
}
#pragma mark - MWMBookmarksObserver
- (void)onBookmarkDeleted:(MWMMarkID)bookmarkId
{
auto data = self.data;
NSAssert(data && self.layout, @"It must be openned place page!");
if (!data.isBookmark || data.bookmarkId != bookmarkId)
return;
[self closePlacePage];
}
- (void)onBookmarksCategoryDeleted:(MWMMarkGroupID)groupId
{
auto data = self.data;
NSAssert(data && self.layout, @"It must be openned place page!");
if (!data.isBookmark || data.bookmarkCategoryId != groupId)
return;
[self closePlacePage];
}
#pragma mark - MWMPlacePageLayoutDataSource
- (void)downloadSelectedArea
{
auto data = self.data;
if (!data)
return;
auto const & countryId = [data countryId];
NodeAttrs nodeAttrs;
GetFramework().GetStorage().GetNodeAttrs(countryId, nodeAttrs);
switch (nodeAttrs.m_status)
{
case NodeStatus::NotDownloaded:
case NodeStatus::Partly: [MWMStorage downloadNode:@(countryId.c_str())]; break;
case NodeStatus::Undefined:
case NodeStatus::Error: [MWMStorage retryDownloadNode:@(countryId.c_str())]; break;
case NodeStatus::OnDiskOutOfDate: [MWMStorage updateNode:@(countryId.c_str())]; break;
case NodeStatus::Downloading:
case NodeStatus::Applying:
case NodeStatus::InQueue: [MWMStorage cancelDownloadNode:@(countryId.c_str())]; break;
case NodeStatus::OnDisk: break;
}
}
- (NSString *)distanceToObject
{
CLLocation * lastLocation = [MWMLocationManager lastLocation];
auto data = self.data;
if (!lastLocation || !data)
return @"";
std::string distance;
CLLocationCoordinate2D const & coord = lastLocation.coordinate;
ms::LatLon const & target = data.latLon;
double meters = ms::DistanceOnEarth(coord.latitude, coord.longitude, target.m_lat, target.m_lon);
if (meters < 0.)
return nil;
auto units = measurement_utils::Units::Metric;
settings::TryGet(settings::kMeasurementUnits, units);
std::string s;
switch (units) {
case measurement_utils::Units::Imperial:
measurement_utils::FormatDistanceWithLocalization(meters,
distance,
[[@" " stringByAppendingString:L(@"mile")] UTF8String],
[[@" " stringByAppendingString:L(@"foot")] UTF8String]);
case measurement_utils::Units::Metric:
measurement_utils::FormatDistanceWithLocalization(meters,
distance,
[[@" " stringByAppendingString:L(@"kilometer")] UTF8String],
[[@" " stringByAppendingString:L(@"meter")] UTF8String]);
}
return @(distance.c_str());
}
#pragma mark - MWMFrameworkStorageObserver
- (void)processCountryEvent:(NSString *)countryId
{
auto data = self.data;
if (!data || [data countryId] != countryId.UTF8String)
return;
if ([data countryId] == kInvalidCountryId)
{
[self.layout processDownloaderEventWithStatus:storage::NodeStatus::Undefined progress:0];
return;
}
NodeStatuses statuses;
GetFramework().GetStorage().GetNodeStatuses([data countryId], statuses);
auto const status = statuses.m_status;
if (status == self.currentDownloaderStatus)
return;
self.currentDownloaderStatus = status;
[self.layout processDownloaderEventWithStatus:status progress:0];
}
- (void)processCountry:(NSString *)countryId
downloadedBytes:(uint64_t)downloadedBytes
totalBytes:(uint64_t)totalBytes
{
auto data = self.data;
if (!data || countryId.UTF8String == kInvalidCountryId || [data countryId] != countryId.UTF8String)
return;
[self.layout
processDownloaderEventWithStatus:storage::NodeStatus::Downloading
progress:static_cast<CGFloat>(downloadedBytes) / totalBytes];
}
#pragma mark - MWMPlacePageLayoutDelegate
- (void)onPlacePageTopBoundChanged:(CGFloat)bound
{
[self.ownerViewController setPlacePageTopBound:bound];
[self.layout checkCellsVisible];
}
- (void)destroyLayout { self.layout = nil; }
- (void)closePlacePage { GetFramework().DeactivateMapSelection(true); }
- (BOOL)isPreviewPlus { return self.data.isPreviewPlus; }
- (void)onExpanded
{
if (self.isSponsoredOpenLogged)
return;
self.isSponsoredOpenLogged = YES;
auto data = self.data;
if (!data)
return;
NSMutableDictionary * parameters = [@{} mutableCopy];
if (data.isBooking)
parameters[kStatProvider] = kStatBooking;
else if (data.isPartner)
parameters[kStatProvider] = data.partnerName;
else if (data.isHolidayObject)
parameters[kStatProvider] = kStatHoliday;
else if (data.isPromoCatalog)
parameters[kStatProvider] = kStatMapsmeGuides;
parameters[kStatConnection] = [Statistics connectionTypeString];
parameters[kStatTags] = data.statisticsTags;
[Statistics logEvent:kStatPlacepageSponsoredOpen withParameters:parameters];
}
- (void)logStateChangeEventWithValue:(NSNumber *)value {
MWMPlacePageData * data = self.data;
if (data == nil) return;
NSString *types = data.statisticsTags;
NSNumber *lat = [NSNumber numberWithFloat:data.latLon.m_lat];
NSNumber *lon = [NSNumber numberWithFloat:data.latLon.m_lon];
[Statistics logEvent:kStatPlacePageChangeState withParameters:@{kStatTypes: types,
kStatLat: lat,
kStatLon: lon,
kStatValue: value}];
}
#pragma mark - MWMLocationObserver
- (void)onHeadingUpdate:(CLHeading *)heading
{
auto lastLocation = [MWMLocationManager lastLocation];
auto data = self.data;
if (!lastLocation || !data)
return;
auto const locationMercator = lastLocation.mercator;
auto const dataMercator = data.mercator;
if (base::AlmostEqualAbs(locationMercator, dataMercator, 1e-10))
return;
auto const info = location_util::compassInfoFromHeading(heading);
auto const angle = ang::AngleTo(locationMercator, dataMercator) + info.m_bearing;
[self.layout rotateDirectionArrowToAngle:angle];
}
- (void)setupSpeedAndDistance
{
[self.layout setDistanceToObject:self.distanceToObject];
if (self.data.isMyPosition)
[self.layout setSpeedAndAltitude:location_helpers::formattedSpeedAndAltitude(MWMLocationManager.lastLocation)];
}
- (void)onLocationUpdate:(CLLocation *)location
{
[self setupSpeedAndDistance];
}
- (void)mwm_refreshUI { [self.layout mwm_refreshUI]; }
- (void)routeFrom:(PlacePageData *)data {
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatBuildRoute)
@ -369,16 +88,6 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
[self closePlacePage];
}
- (void)routeFrom
{
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatBuildRoute)
withParameters:@{kStatValue : kStatSource}];
MWMRoutePoint * point = [self routePointWithType:MWMRoutePointTypeStart intermediateIndex:0];
[MWMRouter buildFromPoint:point bestRouter:YES];
[self closePlacePage];
}
- (void)routeTo:(PlacePageData *)data {
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatBuildRoute)
withParameters:@{kStatValue : kStatDestination}];
@ -396,36 +105,12 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
[self closePlacePage];
}
- (void)routeTo
{
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatBuildRoute)
withParameters:@{kStatValue : kStatDestination}];
if ([MWMRouter isOnRoute])
[MWMRouter stopRouting];
if ([MWMTrafficManager transitEnabled])
[MWMRouter setType:MWMRouterTypePublicTransport];
MWMRoutePoint * point = [self routePointWithType:MWMRoutePointTypeFinish intermediateIndex:0];
[MWMRouter buildToPoint:point bestRouter:YES];
[self closePlacePage];
}
- (void)routeAddStop:(PlacePageData *)data {
MWMRoutePoint *point = [self routePoint:data withType:MWMRoutePointTypeIntermediate intermediateIndex:0];
[MWMRouter addPointAndRebuild:point];
[self closePlacePage];
}
- (void)routeAddStop
{
MWMRoutePoint * point =
[self routePointWithType:MWMRoutePointTypeIntermediate intermediateIndex:0];
[MWMRouter addPointAndRebuild:point];
[self closePlacePage];
}
- (void)routeRemoveStop:(PlacePageData *)data {
MWMRoutePoint *point = nil;
auto const intermediateIndex = GetFramework().GetCurrentPlacePageInfo().GetIntermediateIndex();
@ -444,29 +129,6 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
[self closePlacePage];
}
- (void)routeRemoveStop
{
MWMRoutePoint * point = nil;
auto const intermediateIndex = GetFramework().GetCurrentPlacePageInfo().GetIntermediateIndex();
switch (GetFramework().GetCurrentPlacePageInfo().GetRouteMarkType())
{
case RouteMarkType::Start:
point =
[self routePointWithType:MWMRoutePointTypeStart intermediateIndex:intermediateIndex];
break;
case RouteMarkType::Finish:
point =
[self routePointWithType:MWMRoutePointTypeFinish intermediateIndex:intermediateIndex];
break;
case RouteMarkType::Intermediate:
point = [self routePointWithType:MWMRoutePointTypeIntermediate
intermediateIndex:intermediateIndex];
break;
}
[MWMRouter removePointAndRebuild:point];
[self closePlacePage];
}
- (void)orderTaxi:(PlacePageData *)data
{
NSString * providerString = nil;
@ -554,57 +216,10 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
intermediateIndex:intermediateIndex];
}
- (MWMRoutePoint *)routePointWithType:(MWMRoutePointType)type
intermediateIndex:(size_t)intermediateIndex
{
auto data = self.data;
if (!data)
return nil;
if (data.isMyPosition)
return [[MWMRoutePoint alloc] initWithLastLocationAndType:type
intermediateIndex:intermediateIndex];
NSString * title = nil;
if (data.title.length > 0)
title = data.title;
else if (data.address.length > 0)
title = data.address;
else if (data.subtitle.length > 0)
title = data.subtitle;
else if (data.isBookmark)
title = data.externalTitle;
else
title = L(@"core_placepage_unknown_place");
NSString * subtitle = nil;
if (data.subtitle.length > 0 && ![title isEqualToString:data.subtitle])
subtitle = data.subtitle;
return [[MWMRoutePoint alloc] initWithPoint:data.mercator
title:title
subtitle:subtitle
type:type
intermediateIndex:intermediateIndex];
}
- (void)share:(PlacePageData *)data {
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatShare)];
MWMActivityViewController * shareVC = [MWMActivityViewController shareControllerForPlacePage:data];
[shareVC presentInParentViewController:self.ownerViewController anchorView:self.layout.shareAnchor];
}
- (void)share
{
auto data = self.data;
if (!data)
return;
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatShare)];
MWMActivityViewController * shareVC = [MWMActivityViewController
shareControllerForPlacePageObject:static_cast<id<MWMPlacePageObject>>(data)];
[shareVC presentInParentViewController:self.ownerViewController
anchorView:self.layout.shareAnchor];
[shareVC presentInParentViewController:self.ownerViewController anchorView:nil]; // TODO: add anchor for iPad
}
- (void)editPlace
@ -620,16 +235,6 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
[[MWMMapViewControlsManager manager] addPlace:YES hasPoint:NO point:m2::PointD()];
}
- (void)addPlace
{
auto data = self.data;
if (!data)
return;
[Statistics logEvent:kStatEditorAddClick
withParameters:@{kStatValue : kStatPlacePageNonBuilding}];
[[MWMMapViewControlsManager manager] addPlace:NO hasPoint:YES point:data.mercator];
}
- (void)addPlace:(CLLocationCoordinate2D)coordinate
{
[Statistics logEvent:kStatEditorAddClick
@ -661,17 +266,6 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
f.UpdatePlacePageInfoForCurrentSelection(buildInfo);
}
- (void)addBookmark
{
auto data = self.data;
if (!data)
return;
RegisterEventIfPossible(eye::MapObject::Event::Type::AddToBookmark);
[Statistics logEvent:kStatBookmarkCreated];
[data updateBookmarkStatus:YES];
[self.layout reloadBookmarkSection:YES];
}
- (void)removeBookmark:(PlacePageData *)data
{
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatBookmarks)
@ -686,37 +280,12 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
f.UpdatePlacePageInfoForCurrentSelection(buildInfo);
}
- (void)removeBookmark
{
auto data = self.data;
if (!data)
return;
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatBookmarks)
withParameters:@{kStatValue : kStatRemove}];
[data updateBookmarkStatus:NO];
[self.layout reloadBookmarkSection:NO];
}
- (void)call:(PlacePageData *)data {
if (data.infoData.phoneUrl && [UIApplication.sharedApplication canOpenURL:data.infoData.phoneUrl]) {
[UIApplication.sharedApplication openURL:data.infoData.phoneUrl options:@{} completionHandler:nil];
}
}
- (void)call
{
MWMPlacePageData *data = self.data;
if (!data) return;
NSString *filteredDigits = [[data.phoneNumber componentsSeparatedByCharactersInSet:
[[NSCharacterSet decimalDigitCharacterSet] invertedSet]]
componentsJoinedByString:@""];
NSString *resultNumber = [data.phoneNumber hasPrefix:@"+"] ? [NSString stringWithFormat:@"+%@", filteredDigits] : filteredDigits;
NSURL *phoneURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@", resultNumber]];
if ([UIApplication.sharedApplication canOpenURL:phoneURL]) {
[UIApplication.sharedApplication openURL:phoneURL options:@{} completionHandler:nil];
}
}
- (void)editBookmark {
[self.ownerViewController openBookmarkEditor];
}
@ -746,66 +315,16 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
}
}
- (void)openPartnerWithStatisticLog:(NSString *)eventName proposedUrl:(NSURL *)proposedUrl
{
auto data = self.data;
if (!data)
return;
logSponsoredEvent(data, eventName);
NSURL * url = data.isPartnerAppInstalled ? data.deepLink : proposedUrl;
NSAssert(url, @"Sponsored url can't be nil!");
[UIApplication.sharedApplication openURL:url options:@{} completionHandler:nil];
if (data.isBooking)
[MWMEye transitionToBookingWithPos:CGPointMake(data.mercator.x, data.mercator.y)];
}
- (void)book:(PlacePageData *)data {
NSURL *url = [NSURL URLWithString:data.sponsoredURL];
[self openPartner:data withStatisticLog:kStatPlacePageHotelBook proposedUrl:url];
}
- (void)book
{
auto data = self.data;
if (!data)
return;
NSString * eventName = nil;
if (data.isBooking)
{
eventName = kStatPlacePageHotelBook;
}
else if (data.isOpentable)
{
eventName = kStatPlacePageRestaurantBook;
}
else
{
NSAssert(false, @"Invalid book case!");
return;
}
[self openPartnerWithStatisticLog:eventName proposedUrl:data.sponsoredURL];
}
- (void)openDescriptionUrl:(PlacePageData *)data {
NSURL *url = [NSURL URLWithString:data.sponsoredDescriptionURL];
[self openPartner:data withStatisticLog:kStatPlacePageHotelDetails proposedUrl:url];
}
- (void)openDescriptionUrl
{
auto data = self.data;
if (!data)
return;
[self openPartnerWithStatisticLog:kStatPlacePageHotelDetails
proposedUrl:data.sponsoredDescriptionURL];
}
- (void)openMoreUrl:(PlacePageData *)data {
NSURL *url = [NSURL URLWithString:data.sponsoredMoreURL];
if (!url) { return; }
@ -815,45 +334,11 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
[MWMEye transitionToBookingWithPos:CGPointMake(mercator.x, mercator.y)];
}
- (void)openMoreUrl
{
auto data = self.data;
if (!data)
return;
logSponsoredEvent(data, kStatPlacePageHotelMore);
[UIApplication.sharedApplication openURL:data.sponsoredMoreURL
options:@{} completionHandler:nil];
[MWMEye transitionToBookingWithPos:CGPointMake(data.mercator.x, data.mercator.y)];
}
- (void)openReviewUrl:(PlacePageData *)data {
NSURL *url = [NSURL URLWithString:data.sponsoredReviewURL];
[self openPartner:data withStatisticLog:kStatPlacePageHotelReviews proposedUrl:url];
}
- (void)openReviewUrl
{
auto data = self.data;
if (!data)
return;
[self openPartnerWithStatisticLog:kStatPlacePageHotelReviews
proposedUrl:data.sponsoredReviewURL];
}
- (void)searchBookingHotels
{
auto data = self.data;
if (!data)
return;
logSponsoredEvent(data, kStatPlacePageHotelBook);
NSURL * url = data.bookingSearchURL;
NSAssert(url, @"Search url can't be nil!");
[UIApplication.sharedApplication openURL:url options:@{} completionHandler:nil];
}
- (void)openPartner:(PlacePageData *)data
{
logSponsoredEvent(data, kStatPlacePageSponsoredActionButtonClick);
@ -862,17 +347,6 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
[UIApplication.sharedApplication openURL:url options:@{} completionHandler:nil];
}
- (void)openPartner
{
auto data = self.data;
if (!data)
return;
logSponsoredEvent(data, kStatPlacePageSponsoredActionButtonClick);
NSURL * url = data.sponsoredURL;
NSAssert(url, @"Partner url can't be nil!");
[UIApplication.sharedApplication openURL:url options:@{} completionHandler:nil];
}
- (void)avoidDirty {
[Statistics logEvent:kStatPlacepageDrivingOptionsAction
withParameters:@{kStatType : [kStatUnpaved capitalizedString]}];
@ -896,39 +370,6 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
[self closePlacePage];
}
- (void)showPhotoAtIndex:(NSInteger)index
referenceView:(UIView *)referenceView
referenceViewWhenDismissingHandler:
(MWMPlacePageButtonsDismissBlock)referenceViewWhenDismissingHandler
{
auto data = self.data;
if (!data)
return;
logSponsoredEvent(self.data, kStatPlacePageHotelGallery);
auto galleryModel = [[MWMGalleryModel alloc] initWithTitle:self.hotelName items:data.photos];
auto initialPhoto = galleryModel.items[index];
auto photoVC = [[MWMPhotosViewController alloc] initWithPhotos:galleryModel
initialPhoto:initialPhoto
referenceView:referenceView];
photoVC.referenceViewForPhotoWhenDismissingHandler = ^UIView *(MWMGalleryItemModel * photo) {
return referenceViewWhenDismissingHandler([galleryModel.items indexOfObject:photo]);
};
[[MapViewController sharedController] presentViewController:photoVC animated:YES completion:nil];
}
- (void)showGallery
{
auto data = self.data;
if (!data)
return;
logSponsoredEvent(self.data, kStatPlacePageHotelGallery);
auto galleryModel = [[MWMGalleryModel alloc] initWithTitle:self.hotelName items:data.photos];
auto galleryVc = [MWMGalleryViewController instanceWithModel:galleryModel];
[[MapViewController sharedController].navigationController pushViewController:galleryVc animated:YES];
}
- (void)showUGCAddReview:(PlacePageData *)data rating:(UgcSummaryRatingType)value fromSource:(MWMUGCReviewSource)source
{
NSMutableArray *ratings = [NSMutableArray array];
@ -964,50 +405,10 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
[[MapViewController sharedController].navigationController pushViewController:ugcVC animated:YES];
}
- (void)showUGCAddReview:(UgcSummaryRatingType)value fromSource:(MWMUGCReviewSource)source
{
auto data = self.data;
if (!data)
return;
NSMutableArray<MWMUGCRatingStars *> * ratings = [@[] mutableCopy];
for (auto & cat : data.ugcRatingCategories)
[ratings addObject:[[MWMUGCRatingStars alloc] initWithTitle:@(cat.c_str())
value:value
maxValue:5.0f]];
auto title = data.title;
RegisterEventIfPossible(eye::MapObject::Event::Type::UgcEditorOpened);
NSString * sourceString;
switch (source) {
case MWMUGCReviewSourcePlacePage:
sourceString = kStatPlacePage;
break;
case MWMUGCReviewSourcePlacePagePreview:
sourceString = kStatPlacePagePreview;
break;
case MWMUGCReviewSourceNotification:
sourceString = kStatNotification;
break;
}
[Statistics logEvent:kStatUGCReviewStart
withParameters:@{
kStatIsAuthenticated: @([MWMUser isAuthenticated]),
kStatIsOnline:
@(GetPlatform().ConnectionStatus() != Platform::EConnectionType::CONNECTION_NONE),
kStatMode: kStatAdd,
kStatFrom: sourceString
}];
auto ugcReviewModel =
[[MWMUGCReviewModel alloc] initWithReviewValue:value ratings:ratings title:title text:@""];
auto ugcVC = [MWMUGCAddReviewController instanceWithModel:ugcReviewModel saver: self];
[[MapViewController sharedController].navigationController pushViewController:ugcVC animated:YES];
}
- (void)searchSimilar
{
[Statistics logEvent:@"Placepage_Hotel_search_similar"
withParameters:@{kStatProvider : self.data.isBooking ? kStatBooking : kStatOSM}];
// [Statistics logEvent:@"Placepage_Hotel_search_similar"
// withParameters:@{kStatProvider : self.data.isBooking ? kStatBooking : kStatOSM}];
MWMHotelParams * params = [[MWMHotelParams alloc] init];
[[MWMSearchManager manager] showHotelFilterWithParams:params
@ -1025,11 +426,6 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
[[MapViewController sharedController].navigationController pushViewController:vc animated:YES];
}
- (void)showAllFacilities
{
NSAssert(false, @"deprecated");
}
- (void)openLocalAdsURL:(PlacePageData *)data
{
NSURL *url = [NSURL URLWithString:data.infoData.localAdsUrl];
@ -1048,33 +444,6 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
[self.ownerViewController openUrl:url];
}
- (void)openLocalAdsURL
{
auto data = self.data;
if (!data)
return;
auto url = [NSURL URLWithString:data.localAdsURL];
if (!url)
return;
auto const & feature = [data featureId];
[Statistics logEvent:kStatPlacePageOwnershipButtonClick
withParameters:@{
@"mwm_name" : @(feature.GetMwmName().c_str()),
@"mwm_version" : @(feature.GetMwmVersion()),
@"feature_id" : @(feature.m_index)
}
atLocation:[MWMLocationManager lastLocation]];
[self.ownerViewController openUrl:url];
}
//- (void)openSponsoredURL:(nullable NSURL *)url
//{
// if (auto u = url ?: self.data.sponsoredURL)
// [self.ownerViewController openUrl:u];
//}
- (void)openReviews:(id<MWMReviewsViewModelProtocol> _Nonnull)reviewsViewModel
{
auto reviewsVC = [[MWMReviewsViewController alloc] initWithViewModel:reviewsViewModel];
@ -1119,18 +488,14 @@ void RegisterEventIfPossible(eye::MapObject::Event::Type const type)
- (void)updateAvailableArea:(CGRect)frame
{
auto data = self.data;
if (data)
[self.layout updateAvailableArea:frame];
// auto data = self.data;
// if (data)
// [self.layout updateAvailableArea:frame];
}
#pragma mark - MWMFeatureHolder
- (FeatureID const &)featureId { return GetFramework().GetCurrentPlacePageInfo().GetID(); }
#pragma mark - MWMBookingInfoHolder
- (std::vector<booking::HotelFacility> const &)hotelFacilities { return self.data.facilities; }
- (NSString *)hotelName { return self.data.title; }
#pragma mark - Ownerfacilities

View file

@ -6,7 +6,6 @@
@interface MWMPlacePageManagerHelper : NSObject
+ (void)updateAvailableArea:(CGRect)frame;
+ (void)showUGCAddReview:(UgcSummaryRatingType)value fromSource:(MWMUGCReviewSource)source;
+ (void)showUGCAddReview:(PlacePageData *)data
rating:(UgcSummaryRatingType)value
fromSource:(MWMUGCReviewSource)source;

View file

@ -11,7 +11,6 @@
@interface MWMPlacePageManager ()
- (void)updateAvailableArea:(CGRect)frame;
- (void)showUGCAddReview:(UgcSummaryRatingType)value fromPreview:(BOOL)fromPreview;
- (void)showUGCAddReview:(PlacePageData *)data rating:(UgcSummaryRatingType)value fromSource:(MWMUGCReviewSource)source;
- (void)searchSimilar;
- (void)editPlace;
@ -52,12 +51,6 @@
[[MWMMapViewControlsManager manager].placePageManager updateAvailableArea:frame];
}
+ (void)showUGCAddReview:(UgcSummaryRatingType)value fromSource:(MWMUGCReviewSource)source
{
[[MWMMapViewControlsManager manager].placePageManager showUGCAddReview:value
fromSource:source];
}
+ (void)showUGCAddReview:(PlacePageData *)data rating:(UgcSummaryRatingType)value fromSource:(MWMUGCReviewSource)source {
[[MWMMapViewControlsManager manager].placePageManager showUGCAddReview:data rating:value fromSource:source];
}

View file

@ -1,31 +1,4 @@
#import "MWMMapViewControlsManager.h"
#import "MWMPlacePageButtonsProtocol.h"
@class MWMViewController;
@protocol MWMActionBarProtocol<NSObject>
- (void)routeFrom;
- (void)routeTo;
- (void)routeAddStop;
- (void)routeRemoveStop;
- (void)share;
- (void)addBookmark;
- (void)removeBookmark;
- (void)call;
- (void)book;
- (void)searchBookingHotels;
- (void)openPartner;
- (void)downloadSelectedArea;
- (void)avoidToll;
- (void)avoidDirty;
- (void)avoidFerry;
@end
struct FeatureID;
@ -35,24 +8,9 @@ struct FeatureID;
@end
namespace booking
{
struct HotelFacility;
}
@protocol MWMPlacePageProtocol<MWMFeatureHolder>
@protocol MWMBookingInfoHolder<NSObject>
- (NSString *)hotelName;
@end
@protocol MWMPlacePageProtocol<MWMActionBarProtocol, MWMPlacePageButtonsProtocol, MWMFeatureHolder, MWMBookingInfoHolder>
- (void)show;
- (void)update;
- (void)showReview;
- (BOOL)isPPShown;
- (void)dismiss;
- (void)mwm_refreshUI;
@end

View file

@ -2083,7 +2083,7 @@
<userDefinedRuntimeAttribute type="string" keyPath="coloring" value="MWMBlack"/>
</userDefinedRuntimeAttributes>
</imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="250" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8eU-Fj-XRv" customClass="CopyLabel">
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="250" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8eU-Fj-XRv" customClass="CopyLabel" customModule="maps_me" customModuleProvider="target">
<rect key="frame" x="56" y="0.0" width="287" height="44"/>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>

View file

@ -2,61 +2,69 @@
#import "MWMButton.h"
#import "MWMCircularProgress.h"
NSString * titleForPartner(NSInteger partnerIndex)
{
NSString * str = [NSString stringWithFormat:@"sponsored_partner%ld_action", (long)partnerIndex];
NSString * localizedStr = L(str);
static NSString *titleForPartner(NSInteger partnerIndex) {
NSString *str = [NSString stringWithFormat:@"sponsored_partner%ld_action", (long)partnerIndex];
NSString *localizedStr = L(str);
NSCAssert(![str isEqualToString:localizedStr], @"Localization is absent.");
return localizedStr;
}
NSString * titleForButton(MWMActionBarButtonType type, NSInteger partnerIndex, BOOL isSelected)
{
switch (type)
{
case MWMActionBarButtonTypeDownload: return L(@"download");
case MWMActionBarButtonTypeBooking:
case MWMActionBarButtonTypeOpentable: return L(@"book_button");
case MWMActionBarButtonTypeBookingSearch: return L(@"booking_search");
case MWMActionBarButtonTypeCall: return L(@"placepage_call_button");
case MWMActionBarButtonTypeBookmark: return L(isSelected ? @"delete" : @"save");
case MWMActionBarButtonTypeRouteFrom: return L(@"p2p_from_here");
case MWMActionBarButtonTypeRouteTo: return L(@"p2p_to_here");
case MWMActionBarButtonTypeShare: return L(@"share");
case MWMActionBarButtonTypeMore: return L(@"placepage_more_button");
case MWMActionBarButtonTypeRouteAddStop: return L(@"placepage_add_stop");
case MWMActionBarButtonTypeRouteRemoveStop: return L(@"placepage_remove_stop");
case MWMActionBarButtonTypeAvoidToll: return L(@"avoid_toll_roads_placepage");
case MWMActionBarButtonTypeAvoidDirty: return L(@"avoid_unpaved_roads_placepage");
case MWMActionBarButtonTypeAvoidFerry: return L(@"avoid_ferry_crossing_placepage");
case MWMActionBarButtonTypePartner: return titleForPartner(partnerIndex);
NSString *titleForButton(MWMActionBarButtonType type, NSInteger partnerIndex, BOOL isSelected) {
switch (type) {
case MWMActionBarButtonTypeDownload:
return L(@"download");
case MWMActionBarButtonTypeBooking:
case MWMActionBarButtonTypeOpentable:
return L(@"book_button");
case MWMActionBarButtonTypeBookingSearch:
return L(@"booking_search");
case MWMActionBarButtonTypeCall:
return L(@"placepage_call_button");
case MWMActionBarButtonTypeBookmark:
return L(isSelected ? @"delete" : @"save");
case MWMActionBarButtonTypeRouteFrom:
return L(@"p2p_from_here");
case MWMActionBarButtonTypeRouteTo:
return L(@"p2p_to_here");
case MWMActionBarButtonTypeShare:
return L(@"share");
case MWMActionBarButtonTypeMore:
return L(@"placepage_more_button");
case MWMActionBarButtonTypeRouteAddStop:
return L(@"placepage_add_stop");
case MWMActionBarButtonTypeRouteRemoveStop:
return L(@"placepage_remove_stop");
case MWMActionBarButtonTypeAvoidToll:
return L(@"avoid_toll_roads_placepage");
case MWMActionBarButtonTypeAvoidDirty:
return L(@"avoid_unpaved_roads_placepage");
case MWMActionBarButtonTypeAvoidFerry:
return L(@"avoid_ferry_crossing_placepage");
case MWMActionBarButtonTypePartner:
return titleForPartner(partnerIndex);
}
}
NSString * imageNameForPartner(NSInteger partnerIndex)
{
static NSString *imageNameForPartner(NSInteger partnerIndex) {
return [NSString stringWithFormat:@"ic_28px_logo_partner%ld", (long)partnerIndex];
}
UIImage * imageForPartner(NSInteger partnerIndex)
{
UIImage * img = [UIImage imageNamed:imageNameForPartner(partnerIndex)];
static UIImage *imageForPartner(NSInteger partnerIndex) {
UIImage *img = [UIImage imageNamed:imageNameForPartner(partnerIndex)];
NSCAssert(img != nil, @"Partner image is absent.");
return img;
}
UIColor * textColorForPartner(NSInteger partnerIndex)
{
NSString * textColor = [NSString stringWithFormat:@"partner%ldTextColor", (long)partnerIndex];
UIColor * color = [UIColor colorWithName:textColor];
static UIColor *textColorForPartner(NSInteger partnerIndex) {
NSString *textColor = [NSString stringWithFormat:@"partner%ldTextColor", (long)partnerIndex];
UIColor *color = [UIColor colorWithName:textColor];
NSCAssert(color != nil, @"Partner text color is absent.");
return color;
}
UIColor * backgroundColorForPartner(NSInteger partnerIndex)
{
NSString * colorName = [NSString stringWithFormat:@"partner%ldBackground", (long)partnerIndex];
UIColor * color = [UIColor colorWithName:colorName];
static UIColor *backgroundColorForPartner(NSInteger partnerIndex) {
NSString *colorName = [NSString stringWithFormat:@"partner%ldBackground", (long)partnerIndex];
UIColor *color = [UIColor colorWithName:colorName];
NSCAssert(color != nil, @"Partner background color is absent.");
return color;
}
@ -64,55 +72,49 @@ UIColor * backgroundColorForPartner(NSInteger partnerIndex)
@interface MWMActionBarButton () <MWMCircularProgressProtocol>
@property(nonatomic) MWMActionBarButtonType type;
@property(nonatomic) MWMCircularProgress * mapDownloadProgress;
@property(nonatomic) MWMCircularProgress *mapDownloadProgress;
@property(nonatomic) NSInteger partnerIndex;
@property(weak, nonatomic) IBOutlet MWMButton * button;
@property(weak, nonatomic) IBOutlet UILabel * label;
@property(weak, nonatomic) IBOutlet UIView * extraBackground;
@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)configButton:(BOOL)isSelected disabled:(BOOL)isDisabled
{
- (void)configButton:(BOOL)isSelected disabled:(BOOL)isDisabled {
self.label.text = titleForButton(self.type, self.partnerIndex, isSelected);
self.extraBackground.hidden = YES;
switch (self.type)
{
case MWMActionBarButtonTypeDownload:
{
if (self.mapDownloadProgress)
return;
switch (self.type) {
case MWMActionBarButtonTypeDownload: {
if (self.mapDownloadProgress)
return;
self.mapDownloadProgress = [MWMCircularProgress downloaderProgressForParentView:self.button];
self.mapDownloadProgress.delegate = self;
self.mapDownloadProgress = [MWMCircularProgress downloaderProgressForParentView:self.button];
self.mapDownloadProgress.delegate = self;
MWMCircularProgressStateVec affectedStates = @[@(MWMCircularProgressStateNormal),
@(MWMCircularProgressStateSelected)];
MWMCircularProgressStateVec affectedStates =
@[@(MWMCircularProgressStateNormal), @(MWMCircularProgressStateSelected)];
[self.mapDownloadProgress setImageName:@"ic_download" forStates:affectedStates];
[self.mapDownloadProgress setColoring:MWMButtonColoringBlue forStates:affectedStates];
break;
[self.mapDownloadProgress setImageName:@"ic_download" forStates:affectedStates];
[self.mapDownloadProgress setColoring:MWMButtonColoringBlue forStates:affectedStates];
break;
}
case MWMActionBarButtonTypeBooking:
[self.button setImage:[UIImage imageNamed:@"ic_booking_logo"] forState:UIControlStateNormal];
self.label.textColor = UIColor.whiteColor;
self.backgroundColor = [UIColor bookingBackground];
if (!IPAD)
{
if (!IPAD) {
self.extraBackground.backgroundColor = [UIColor bookingBackground];
self.extraBackground.hidden = NO;
}
break;
case MWMActionBarButtonTypeBookingSearch:
[self.button setImage:[UIImage imageNamed:@"ic_booking_search"]
forState:UIControlStateNormal];
[self.button setImage:[UIImage imageNamed:@"ic_booking_search"] forState:UIControlStateNormal];
self.label.textColor = UIColor.whiteColor;
self.backgroundColor = [UIColor bookingBackground];
if (!IPAD)
{
if (!IPAD) {
self.extraBackground.backgroundColor = [UIColor bookingBackground];
self.extraBackground.hidden = NO;
}
@ -121,17 +123,17 @@ UIColor * backgroundColorForPartner(NSInteger partnerIndex)
[self.button setImage:[UIImage imageNamed:@"ic_opentable"] forState:UIControlStateNormal];
self.label.textColor = UIColor.whiteColor;
self.backgroundColor = [UIColor opentableBackground];
if (!IPAD)
{
if (!IPAD) {
self.extraBackground.backgroundColor = [UIColor opentableBackground];
self.extraBackground.hidden = NO;
}
break;
case MWMActionBarButtonTypeCall:
[self.button setImage:[UIImage imageNamed:@"ic_placepage_phone_number"]
forState:UIControlStateNormal];
[self.button setImage:[UIImage imageNamed:@"ic_placepage_phone_number"] forState:UIControlStateNormal];
break;
case MWMActionBarButtonTypeBookmark:
[self setupBookmarkButton:isSelected];
break;
case MWMActionBarButtonTypeBookmark: [self setupBookmarkButton:isSelected]; break;
case MWMActionBarButtonTypeRouteFrom:
[self.button setImage:[UIImage imageNamed:@"ic_route_from"] forState:UIControlStateNormal];
break;
@ -142,16 +144,13 @@ UIColor * backgroundColorForPartner(NSInteger partnerIndex)
[self.button setImage:[UIImage imageNamed:@"ic_menu_share"] forState:UIControlStateNormal];
break;
case MWMActionBarButtonTypeMore:
[self.button setImage:[UIImage imageNamed:@"ic_placepage_more"]
forState:UIControlStateNormal];
[self.button setImage:[UIImage imageNamed:@"ic_placepage_more"] forState:UIControlStateNormal];
break;
case MWMActionBarButtonTypeRouteAddStop:
[self.button setImage:[UIImage imageNamed:@"ic_add_route_point"]
forState:UIControlStateNormal];
[self.button setImage:[UIImage imageNamed:@"ic_add_route_point"] forState:UIControlStateNormal];
break;
case MWMActionBarButtonTypeRouteRemoveStop:
[self.button setImage:[UIImage imageNamed:@"ic_remove_route_point"]
forState:UIControlStateNormal];
[self.button setImage:[UIImage imageNamed:@"ic_remove_route_point"] forState:UIControlStateNormal];
break;
case MWMActionBarButtonTypePartner:
[self.button setImage:imageForPartner(self.partnerIndex) forState:UIControlStateNormal];
@ -159,17 +158,14 @@ UIColor * backgroundColorForPartner(NSInteger partnerIndex)
self.backgroundColor = backgroundColorForPartner(self.partnerIndex);
break;
case MWMActionBarButtonTypeAvoidToll:
[self.button setImage:[UIImage imageNamed:@"ic_avoid_tolls"]
forState:UIControlStateNormal];
break;
[self.button setImage:[UIImage imageNamed:@"ic_avoid_tolls"] forState:UIControlStateNormal];
break;
case MWMActionBarButtonTypeAvoidDirty:
[self.button setImage:[UIImage imageNamed:@"ic_avoid_dirty"]
forState:UIControlStateNormal];
break;
[self.button setImage:[UIImage imageNamed:@"ic_avoid_dirty"] forState:UIControlStateNormal];
break;
case MWMActionBarButtonTypeAvoidFerry:
[self.button setImage:[UIImage imageNamed:@"ic_avoid_ferry"]
forState:UIControlStateNormal];
break;
[self.button setImage:[UIImage imageNamed:@"ic_avoid_ferry"] forState:UIControlStateNormal];
break;
}
self.button.enabled = !isDisabled;
}
@ -178,10 +174,8 @@ UIColor * backgroundColorForPartner(NSInteger partnerIndex)
buttonType:(MWMActionBarButtonType)type
partnerIndex:(NSInteger)partnerIndex
isSelected:(BOOL)isSelected
isDisabled:(BOOL)isDisabled
{
MWMActionBarButton * button =
[NSBundle.mainBundle loadNibNamed:[self className] owner:nil options:nil].firstObject;
isDisabled:(BOOL)isDisabled {
MWMActionBarButton *button = [NSBundle.mainBundle loadNibNamed:[self className] owner:nil options:nil].firstObject;
button.delegate = delegate;
button.type = type;
button.partnerIndex = partnerIndex;
@ -189,21 +183,18 @@ UIColor * backgroundColorForPartner(NSInteger partnerIndex)
return button;
}
- (void)progressButtonPressed:(MWMCircularProgress *)progress
{
- (void)progressButtonPressed:(MWMCircularProgress *)progress {
[self.delegate tapOnButtonWithType:MWMActionBarButtonTypeDownload];
}
- (IBAction)tap
{
- (IBAction)tap {
if (self.type == MWMActionBarButtonTypeBookmark)
[self setBookmarkSelected:!self.button.isSelected];
[self.delegate tapOnButtonWithType:self.type];
}
- (void)setBookmarkSelected:(BOOL)isSelected
{
- (void)setBookmarkSelected:(BOOL)isSelected {
if (isSelected)
[self.button.imageView startAnimating];
@ -211,9 +202,8 @@ UIColor * backgroundColorForPartner(NSInteger partnerIndex)
self.label.text = L(isSelected ? @"delete" : @"save");
}
- (void)setupBookmarkButton:(BOOL)isSelected
{
MWMButton * btn = self.button;
- (void)setupBookmarkButton:(BOOL)isSelected {
MWMButton *btn = self.button;
[btn setImage:[UIImage imageNamed:@"ic_bookmarks_off"] forState:UIControlStateNormal];
[btn setImage:[UIImage imageNamed:@"ic_bookmarks_on"] forState:UIControlStateSelected];
[btn setImage:[UIImage imageNamed:@"ic_bookmarks_on"] forState:UIControlStateHighlighted];
@ -222,13 +212,12 @@ UIColor * backgroundColorForPartner(NSInteger partnerIndex)
[self setBookmarkSelected:isSelected];
NSUInteger const animationImagesCount = 11;
NSMutableArray * animationImages = [NSMutableArray arrayWithCapacity:animationImagesCount];
for (NSUInteger i = 0; i < animationImagesCount; ++i)
{
UIImage * image = [UIImage imageNamed:[NSString stringWithFormat:@"ic_bookmarks_%@", @(i + 1)]];
NSMutableArray *animationImages = [NSMutableArray arrayWithCapacity:animationImagesCount];
for (NSUInteger i = 0; i < animationImagesCount; ++i) {
UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"ic_bookmarks_%@", @(i + 1)]];
animationImages[i] = image;
}
UIImageView * animationIV = btn.imageView;
UIImageView *animationIV = btn.imageView;
animationIV.animationImages = animationImages;
animationIV.animationRepeatCount = 1;
}

View file

@ -1,24 +0,0 @@
#import "MWMCircularProgressState.h"
@class MWMPlacePageData;
@protocol MWMActionBarProtocol;
@interface MWMPlacePageActionBar : SolidTouchView
+ (MWMPlacePageActionBar *)actionBarWithDelegate:(id<MWMActionBarProtocol>)delegate;
- (void)configureWithData:(MWMPlacePageData *)data;
@property(nonatomic) BOOL isAreaNotDownloaded;
- (void)setVisible:(BOOL)visible;
- (void)setDownloadingProgress:(CGFloat)progress;
- (void)setDownloadingState:(MWMCircularProgressState)state;
- (UIView *)shareAnchor;
- (instancetype)init __attribute__((unavailable("call actionBarForPlacePage: instead")));
- (instancetype)initWithCoder:(NSCoder *)aDecoder __attribute__((unavailable("call actionBarForPlacePage: instead")));
- (instancetype)initWithFrame:(CGRect)frame __attribute__((unavailable("call actionBarForPlacePage: instead")));
@end

View file

@ -1,310 +0,0 @@
#import "MWMPlacePageActionBar.h"
#import <CoreApi/AppInfo.h>
#import "MWMActionBarButton.h"
#import "MWMCircularProgress.h"
#import "MWMNavigationDashboardManager.h"
#import "MWMPlacePageProtocol.h"
#import "MWMRouter.h"
#import "MapViewController.h"
#import "MWMPlacePageData.h"
@interface MWMPlacePageActionBar ()<MWMActionBarButtonDelegate>
{
std::vector<MWMActionBarButtonType> m_visibleButtons;
std::vector<MWMActionBarButtonType> m_additionalButtons;
}
@property(nonatomic) NSLayoutConstraint * visibleConstraint;
@property(weak, nonatomic) IBOutlet UIStackView * barButtons;
@property(weak, nonatomic) id<MWMActionBarProtocol> delegate;
@property(weak, nonatomic) MWMPlacePageData * data;
@end
@implementation MWMPlacePageActionBar
+ (MWMPlacePageActionBar *)actionBarWithDelegate:(id<MWMActionBarProtocol>)delegate
{
MWMPlacePageActionBar * bar =
[NSBundle.mainBundle loadNibNamed:[self className] owner:nil options:nil].firstObject;
bar.delegate = delegate;
bar.translatesAutoresizingMaskIntoConstraints = NO;
return bar;
}
- (void)configureWithData:(MWMPlacePageData *)data
{
self.data = data;
[self configureButtons];
self.autoresizingMask = UIViewAutoresizingNone;
[self setNeedsLayout];
}
- (void)clearButtons
{
m_visibleButtons.clear();
m_additionalButtons.clear();
[self.barButtons.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
}
- (void)setFirstButton:(MWMPlacePageData *)data
{
std::vector<MWMActionBarButtonType> buttons;
if (self.isAreaNotDownloaded)
{
buttons.push_back(MWMActionBarButtonTypeDownload);
}
else
{
BOOL const isRoutePlanning =
[MWMNavigationDashboardManager manager].state != MWMNavigationDashboardStateHidden;
if (isRoutePlanning)
buttons.push_back(MWMActionBarButtonTypeRouteFrom);
BOOL const isBooking = [data isBooking];
if (isBooking)
buttons.push_back(MWMActionBarButtonTypeBooking);
BOOL const isOpentable = [data isOpentable];
if (isOpentable)
buttons.push_back(MWMActionBarButtonTypeOpentable);
BOOL const isPartner = [data isPartner] && [data sponsoredURL] != nil;
if (isPartner)
buttons.push_back(MWMActionBarButtonTypePartner);
BOOL const isBookingSearch = [data isBookingSearch];
if (isBookingSearch)
buttons.push_back(MWMActionBarButtonTypeBookingSearch);
BOOL const isPhoneCallAvailable =
[AppInfo sharedInfo].canMakeCalls && [data phoneNumber].length > 0;
if (isPhoneCallAvailable)
buttons.push_back(MWMActionBarButtonTypeCall);
if (!isRoutePlanning)
buttons.push_back(MWMActionBarButtonTypeRouteFrom);
}
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));
}
- (void)setSecondButton:(MWMPlacePageData *)data
{
std::vector<MWMActionBarButtonType> buttons;
BOOL const isCanAddIntermediatePoint = [MWMRouter canAddIntermediatePoint];
BOOL const isNavigationReady =
[MWMNavigationDashboardManager manager].state == MWMNavigationDashboardStateReady;
if (isCanAddIntermediatePoint && isNavigationReady)
buttons.push_back(MWMActionBarButtonTypeRouteAddStop);
buttons.push_back(MWMActionBarButtonTypeBookmark);
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(MWMActionBarButtonTypeRouteTo); }
- (void)setFourthButton
{
if (m_additionalButtons.empty())
{
m_visibleButtons.push_back(MWMActionBarButtonTypeShare);
}
else
{
m_visibleButtons.push_back(MWMActionBarButtonTypeMore);
m_additionalButtons.push_back(MWMActionBarButtonTypeShare);
}
}
- (void)addButtons2UI:(MWMPlacePageData *)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 == MWMActionBarButtonTypeBookmark ? [data isBookmark] : NO);
auto const isDisabled = (buttonType == MWMActionBarButtonTypeBookmark && [data isBookmark] && !data.isBookmarkEditable);
auto button = [MWMActionBarButton buttonWithDelegate:self
buttonType:buttonType
partnerIndex:partnerIndex
isSelected:isSelected
isDisabled:isDisabled];
[self.barButtons addArrangedSubview:button];
}
}
- (void)setSingleButton { m_visibleButtons.push_back(MWMActionBarButtonTypeRouteRemoveStop); }
- (void)setButtons:(MWMPlacePageData *)data
{
RoadWarningMarkType roadType = [data roadType];
if ([data isRoutePoint])
{
[self setSingleButton];
} else if (roadType != RoadWarningMarkType::Count) {
switch (roadType) {
case RoadWarningMarkType::Toll:
m_visibleButtons.push_back(MWMActionBarButtonTypeAvoidToll);
break;
case RoadWarningMarkType::Ferry:
m_visibleButtons.push_back(MWMActionBarButtonTypeAvoidFerry);
break;
case RoadWarningMarkType::Dirty:
m_visibleButtons.push_back(MWMActionBarButtonTypeAvoidDirty);
break;
default:
break;
}
}
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;
}
- (void)setDownloadingProgress:(CGFloat)progress
{
self.progressFromActiveButton.progress = progress;
}
- (MWMCircularProgress *)progressFromActiveButton
{
if (self.isAreaNotDownloaded)
{
for (MWMActionBarButton * button in self.barButtons.subviews)
{
if ([button type] == MWMActionBarButtonTypeDownload)
return button.mapDownloadProgress;
}
}
return nil;
}
- (void)setIsAreaNotDownloaded:(BOOL)isAreaNotDownloaded
{
if (_isAreaNotDownloaded == isAreaNotDownloaded)
return;
_isAreaNotDownloaded = isAreaNotDownloaded;
[self configureButtons];
}
- (UIView *)shareAnchor { return self.barButtons.subviews.lastObject; }
#pragma mark - MWMActionBarButtonDelegate
- (void)tapOnButtonWithType:(MWMActionBarButtonType)type
{
id<MWMActionBarProtocol> delegate = self.delegate;
auto data = self.data;
switch (type)
{
case MWMActionBarButtonTypeDownload: [delegate downloadSelectedArea]; break;
case MWMActionBarButtonTypeOpentable:
case MWMActionBarButtonTypeBooking: [delegate book]; break;
case MWMActionBarButtonTypeBookingSearch: [delegate searchBookingHotels]; break;
case MWMActionBarButtonTypeCall: [delegate call]; break;
case MWMActionBarButtonTypeBookmark:
if ([data isBookmark])
[delegate removeBookmark];
else
[delegate addBookmark];
break;
case MWMActionBarButtonTypeRouteFrom: [delegate routeFrom]; break;
case MWMActionBarButtonTypeRouteTo: [delegate routeTo]; break;
case MWMActionBarButtonTypeShare: [delegate share]; break;
case MWMActionBarButtonTypeMore: [self showActionSheet]; break;
case MWMActionBarButtonTypeRouteAddStop: [delegate routeAddStop]; break;
case MWMActionBarButtonTypeRouteRemoveStop: [delegate routeRemoveStop]; break;
case MWMActionBarButtonTypeAvoidToll: [delegate avoidToll]; break;
case MWMActionBarButtonTypeAvoidDirty: [delegate avoidDirty]; break;
case MWMActionBarButtonTypeAvoidFerry: [delegate avoidFerry]; break;
case MWMActionBarButtonTypePartner: [delegate openPartner]; break;
}
}
#pragma mark - ActionSheet
- (void)showActionSheet
{
NSString * cancel = L(@"cancel");
auto data = self.data;
BOOL const isTitleNotEmpty = [data title].length > 0;
NSString * title = isTitleNotEmpty ? [data title] : [data subtitle];
NSString * subtitle = isTitleNotEmpty ? [data subtitle] : nil;
UIViewController * vc = static_cast<UIViewController *>([MapViewController sharedController]);
NSMutableArray<NSString *> * titles = [@[] mutableCopy];
for (auto const buttonType : m_additionalButtons)
{
BOOL const isSelected = buttonType == MWMActionBarButtonTypeBookmark ? [data isBookmark] : NO;
if (NSString * title = titleForButton(buttonType, [data partnerIndex], isSelected))
[titles addObject:title];
else
NSAssert(false, @"Title can't be nil!");
}
UIAlertController * alertController =
[UIAlertController alertControllerWithTitle:title
message:subtitle
preferredStyle:UIAlertControllerStyleActionSheet];
alertController.popoverPresentationController.sourceView = self.shareAnchor;
alertController.popoverPresentationController.sourceRect = self.shareAnchor.bounds;
UIAlertAction * cancelAction =
[UIAlertAction actionWithTitle:cancel style:UIAlertActionStyleCancel handler:nil];
for (auto i = 0; i < titles.count; i++)
{
UIAlertAction * commonAction =
[UIAlertAction actionWithTitle:titles[i]
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
[self tapOnButtonWithType:self->m_additionalButtons[i]];
}];
[alertController addAction:commonAction];
}
[alertController addAction:cancelAction];
[vc presentViewController:alertController animated:YES completion:nil];
}
- (void)setVisible:(BOOL)visible
{
self.visibleConstraint.active = NO;
NSLayoutYAxisAnchor * bottomAnchor = self.superview.bottomAnchor;
if (@available(iOS 11.0, *))
bottomAnchor = self.superview.safeAreaLayoutGuide.bottomAnchor;
self.alpha = visible ? 1 : 0;
self.visibleConstraint =
[bottomAnchor constraintEqualToAnchor:visible ? self.bottomAnchor : self.topAnchor];
self.visibleConstraint.active = YES;
}
@end

View file

@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<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>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view contentMode="scaleToFill" id="iN0-l3-epB" customClass="MWMPlacePageActionBar" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="360" height="48"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="EPN-YR-G6Y">
<rect key="frame" x="-100" y="0.0" width="560" height="148"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="pressBackground"/>
</userDefinedRuntimeAttributes>
</view>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="separator_image" translatesAutoresizingMaskIntoConstraints="NO" id="WPU-f0-gXc">
<rect key="frame" x="0.0" y="0.0" width="360" height="1"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="7JI-Ia-wWj"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="coloring" value="MWMSeparator"/>
</userDefinedRuntimeAttributes>
</imageView>
<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>
<constraint firstAttribute="trailing" secondItem="EPN-YR-G6Y" secondAttribute="trailing" constant="-100" id="1Yz-8I-5ir">
<variation key="heightClass=regular-widthClass=regular" constant="0.0"/>
</constraint>
<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>
<outlet property="barButtons" destination="XTz-GN-vut" id="4ot-0U-fXd"/>
</connections>
<point key="canvasLocation" x="335" y="266"/>
</view>
</objects>
<resources>
<image name="separator_image" width="1" height="1"/>
</resources>
</document>

View file

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="CarouselElement" id="M3h-Po-OZ2" customClass="CarouselElement" customModule="maps_me" customModuleProvider="target" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="150" height="100"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
<rect key="frame" x="0.0" y="0.0" width="150" height="100"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="49T-yd-qah">
<rect key="frame" x="0.0" y="0.0" width="150" height="100"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="pressBackground"/>
</userDefinedRuntimeAttributes>
</imageView>
<view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Mmh-sw-uHm">
<rect key="frame" x="0.0" y="0.0" width="150" height="100"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.20000000000000001" colorSpace="calibratedRGB"/>
</view>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_arrow_gray_right" translatesAutoresizingMaskIntoConstraints="NO" id="2V7-Dd-KtM">
<rect key="frame" x="61" y="36" width="28" height="28"/>
<constraints>
<constraint firstAttribute="width" constant="28" id="MjA-so-bnW"/>
<constraint firstAttribute="height" constant="28" id="QqY-ls-uTz"/>
</constraints>
</imageView>
</subviews>
</view>
<constraints>
<constraint firstItem="2V7-Dd-KtM" firstAttribute="centerY" secondItem="M3h-Po-OZ2" secondAttribute="centerY" id="0V7-LW-t5Z"/>
<constraint firstAttribute="trailing" secondItem="49T-yd-qah" secondAttribute="trailing" id="58H-hY-Vr2"/>
<constraint firstItem="49T-yd-qah" firstAttribute="top" secondItem="M3h-Po-OZ2" secondAttribute="top" id="7Cs-L0-7Uc"/>
<constraint firstItem="49T-yd-qah" firstAttribute="leading" secondItem="M3h-Po-OZ2" secondAttribute="leading" id="9uw-Hk-2jO"/>
<constraint firstAttribute="bottom" secondItem="49T-yd-qah" secondAttribute="bottom" id="Drb-T8-arB"/>
<constraint firstItem="2V7-Dd-KtM" firstAttribute="centerX" secondItem="M3h-Po-OZ2" secondAttribute="centerX" id="rid-0X-v4H"/>
</constraints>
<connections>
<outlet property="image" destination="49T-yd-qah" id="oUk-H9-V0F"/>
<outletCollection property="dimMask" destination="Mmh-sw-uHm" collectionClass="NSMutableArray" id="DdN-K1-Ytc"/>
<outletCollection property="dimMask" destination="2V7-Dd-KtM" collectionClass="NSMutableArray" id="BeV-h5-wJV"/>
</connections>
<point key="canvasLocation" x="43" y="118"/>
</collectionViewCell>
</objects>
<resources>
<image name="ic_arrow_gray_right" width="28" height="28"/>
</resources>
</document>

View file

@ -1,5 +1,4 @@
@objc(MWMPPFacilityCell)
final class PPFacilityCell: MWMTableViewCell {
final class FacilityCell: MWMTableViewCell {
@IBOutlet private var facility: UILabel!
@objc func config(with str: String) {

View file

@ -1,25 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="15505" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15510"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" rowHeight="49" id="6kl-PA-DNT" customClass="MWMPPFacilityCell" propertyAccessControl="all">
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" rowHeight="49" id="6kl-PA-DNT" customClass="FacilityCell" customModule="maps_me" customModuleProvider="target">
<rect key="frame" x="0.0" y="0.0" width="375" height="49"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6kl-PA-DNT" id="JBd-XZ-fhG">
<rect key="frame" x="0.0" y="0.0" width="375" height="48.5"/>
<rect key="frame" x="0.0" y="0.0" width="375" height="49"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xW7-gO-pph">
<rect key="frame" x="16" y="14" width="343" height="21"/>
<rect key="frame" x="16" y="14" width="343" height="21.5"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>

View file

@ -1,12 +0,0 @@
#import "MWMTableViewCell.h"
namespace booking
{
struct HotelReview;
}
@interface MWMPPReviewCell : MWMTableViewCell
- (void)configWithReview:(booking::HotelReview const &)review;
@end

View file

@ -1,69 +0,0 @@
#import "MWMPPReviewCell.h"
#include "partners_api/booking_api.hpp"
@interface MWMPPReviewCell ()
@property(weak, nonatomic) IBOutlet UILabel * name;
@property(weak, nonatomic) IBOutlet UILabel * rating;
@property(weak, nonatomic) IBOutlet UILabel * date;
@property(weak, nonatomic) IBOutlet UILabel * positiveReview;
@property(weak, nonatomic) IBOutlet UILabel * negativeReview;
@property(weak, nonatomic) IBOutlet UIImageView * positiveIcon;
@property(weak, nonatomic) IBOutlet UIImageView * negativeIcon;
@property(nonatomic) IBOutletCollection(NSLayoutConstraint) NSArray<NSLayoutConstraint *> * inactiveWhenNoPositiveReviews;
@property(nonatomic) IBOutletCollection(NSLayoutConstraint) NSArray<NSLayoutConstraint *> * inactiveWhenNoNegativeReviews;
@property(nonatomic) IBOutletCollection(NSLayoutConstraint) NSArray<NSLayoutConstraint *> * activateWhenNoPositiveReviews;
@property(nonatomic) IBOutletCollection(NSLayoutConstraint) NSArray<NSLayoutConstraint *> * activateWhenNoNegativeReviews;
@property(nonatomic) IBOutlet NSLayoutConstraint * activeWhenReviewsAreEmpty;
@end
@implementation MWMPPReviewCell
- (void)configWithReview:(booking::HotelReview const &)review
{
self.name.text = @(review.m_author.c_str());
self.rating.text = @(review.m_score).stringValue;
auto formatter = [[NSDateFormatter alloc] init];
formatter.timeStyle = NSDateFormatterNoStyle;
formatter.dateStyle = NSDateFormatterLongStyle;
self.date.text = [formatter stringFromDate:
[NSDate dateWithTimeIntervalSince1970:std::chrono::duration_cast<std::chrono::seconds>(review.m_date.time_since_epoch()).count()]];
self.positiveReview.text = @(review.m_pros.c_str());
self.negativeReview.text = @(review.m_cons.c_str());
if (!self.positiveReview.text.length)
{
for (NSLayoutConstraint * c in self.inactiveWhenNoPositiveReviews)
c.active = NO;
self.positiveIcon.hidden = self.positiveReview.hidden = YES;
for (NSLayoutConstraint * c in self.activateWhenNoPositiveReviews)
c.priority = UILayoutPriorityDefaultHigh;
}
if (!self.negativeReview.text.length)
{
for (NSLayoutConstraint * c in self.inactiveWhenNoNegativeReviews)
c.active = NO;
self.negativeIcon.hidden = self.negativeReview.hidden = YES;
for (NSLayoutConstraint * c in self.activateWhenNoNegativeReviews)
c.priority = UILayoutPriorityDefaultHigh;
}
if (self.negativeIcon.hidden && self.positiveIcon.hidden)
self.activeWhenReviewsAreEmpty.priority = UILayoutPriorityDefaultHigh;
[self setNeedsLayout];
}
@end

View file

@ -1,146 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="Alignment constraints to the first baseline" minToolsVersion="6.0"/>
<capability name="Constraints to layout margins" minToolsVersion="6.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" rowHeight="173" id="Lz1-M8-PNp" customClass="MWMPPReviewCell" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="375" height="173"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Lz1-M8-PNp" id="JmU-zX-lG2">
<rect key="frame" x="0.0" y="0.0" width="375" height="172.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="499" text="Name" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6Q8-RL-48E">
<rect key="frame" x="16" y="16" width="278" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular17"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
</userDefinedRuntimeAttributes>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="501" verticalHuggingPriority="251" text="Rating" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="OLG-Tc-sAw">
<rect key="frame" x="302" y="19" width="49" height="21"/>
<constraints>
<constraint firstAttribute="height" constant="21" id="DMe-wi-WoV"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium20"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
</userDefinedRuntimeAttributes>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Date" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="2Tp-mn-Q3B">
<rect key="frame" x="16" y="41" width="335" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular13"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackSecondaryText"/>
</userDefinedRuntimeAttributes>
</label>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_bad" translatesAutoresizingMaskIntoConstraints="NO" id="haU-XM-cHZ">
<rect key="frame" x="16" y="127" width="24" height="24"/>
<constraints>
<constraint firstAttribute="height" constant="24" id="Uel-MI-EWr"/>
<constraint firstAttribute="width" constant="24" id="mcd-h5-MUP"/>
</constraints>
</imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="800" text="Positive" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TrQ-v5-OtL">
<rect key="frame" x="60" y="78" width="291" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular14"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
</userDefinedRuntimeAttributes>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="850" text="Negative" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Alj-pH-AWU">
<rect key="frame" x="60" y="123" width="291" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular14"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
</userDefinedRuntimeAttributes>
</label>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_good" translatesAutoresizingMaskIntoConstraints="NO" id="oMn-kq-Yit">
<rect key="frame" x="16" y="82" width="24" height="24"/>
<constraints>
<constraint firstAttribute="height" constant="24" id="Ry7-o5-zze"/>
<constraint firstAttribute="width" constant="24" id="n7n-du-CID"/>
</constraints>
</imageView>
</subviews>
<constraints>
<constraint firstItem="Alj-pH-AWU" firstAttribute="top" secondItem="TrQ-v5-OtL" secondAttribute="bottom" constant="24" id="2yl-Jg-4iH"/>
<constraint firstItem="Alj-pH-AWU" firstAttribute="leading" secondItem="haU-XM-cHZ" secondAttribute="trailing" constant="20" id="3Ik-6S-gE3"/>
<constraint firstAttribute="bottom" secondItem="Alj-pH-AWU" secondAttribute="bottom" constant="28.5" id="7l6-vm-GHZ"/>
<constraint firstItem="oMn-kq-Yit" firstAttribute="centerY" secondItem="TrQ-v5-OtL" secondAttribute="firstBaseline" id="83x-6l-y62"/>
<constraint firstAttribute="bottom" secondItem="TrQ-v5-OtL" secondAttribute="bottom" priority="250" constant="28" id="9Ci-5y-Pyh"/>
<constraint firstAttribute="trailingMargin" secondItem="Alj-pH-AWU" secondAttribute="trailing" constant="8" id="AwS-1P-3h3"/>
<constraint firstItem="haU-XM-cHZ" firstAttribute="leading" secondItem="6Q8-RL-48E" secondAttribute="leading" id="B0B-1J-Ymo"/>
<constraint firstItem="TrQ-v5-OtL" firstAttribute="top" secondItem="2Tp-mn-Q3B" secondAttribute="bottom" constant="16" id="EYc-ch-f6m"/>
<constraint firstItem="6Q8-RL-48E" firstAttribute="top" secondItem="JmU-zX-lG2" secondAttribute="top" constant="16" id="FSl-xA-2RI"/>
<constraint firstItem="TrQ-v5-OtL" firstAttribute="leading" secondItem="oMn-kq-Yit" secondAttribute="trailing" constant="20" id="Ivw-l9-wfM"/>
<constraint firstAttribute="trailingMargin" secondItem="OLG-Tc-sAw" secondAttribute="trailing" constant="8" id="KSP-mn-dXv"/>
<constraint firstItem="OLG-Tc-sAw" firstAttribute="leading" secondItem="6Q8-RL-48E" secondAttribute="trailing" constant="8" id="Srv-O6-N6Q"/>
<constraint firstItem="OLG-Tc-sAw" firstAttribute="top" secondItem="JmU-zX-lG2" secondAttribute="topMargin" constant="8" id="TLf-us-MQD"/>
<constraint firstItem="2Tp-mn-Q3B" firstAttribute="leading" secondItem="6Q8-RL-48E" secondAttribute="leading" id="cN5-cV-4pZ"/>
<constraint firstAttribute="bottom" secondItem="2Tp-mn-Q3B" secondAttribute="bottom" priority="100" constant="16" id="dZI-nT-JLN"/>
<constraint firstItem="6Q8-RL-48E" firstAttribute="leading" secondItem="JmU-zX-lG2" secondAttribute="leading" constant="16" id="duT-Ds-3Vg"/>
<constraint firstItem="Alj-pH-AWU" firstAttribute="top" secondItem="2Tp-mn-Q3B" secondAttribute="bottom" priority="250" constant="16" id="grx-dG-STE"/>
<constraint firstItem="2Tp-mn-Q3B" firstAttribute="top" secondItem="6Q8-RL-48E" secondAttribute="bottom" constant="4" id="k6a-m2-5FS"/>
<constraint firstItem="oMn-kq-Yit" firstAttribute="leading" secondItem="6Q8-RL-48E" secondAttribute="leading" id="ms3-hy-jUX"/>
<constraint firstItem="haU-XM-cHZ" firstAttribute="centerY" secondItem="Alj-pH-AWU" secondAttribute="firstBaseline" id="pmR-D4-dyc"/>
<constraint firstAttribute="trailingMargin" secondItem="TrQ-v5-OtL" secondAttribute="trailing" constant="8" id="tRq-58-P1o"/>
<constraint firstAttribute="trailingMargin" secondItem="2Tp-mn-Q3B" secondAttribute="trailing" constant="8" id="y7b-Ao-obh"/>
</constraints>
</tableViewCellContentView>
<inset key="separatorInset" minX="16" minY="0.0" maxX="0.0" maxY="0.0"/>
<connections>
<outlet property="activeWhenReviewsAreEmpty" destination="dZI-nT-JLN" id="Uq1-Bh-ff2"/>
<outlet property="date" destination="2Tp-mn-Q3B" id="405-oa-b39"/>
<outlet property="name" destination="6Q8-RL-48E" id="pTz-i2-dbv"/>
<outlet property="negativeIcon" destination="haU-XM-cHZ" id="uRY-F0-FwL"/>
<outlet property="negativeReview" destination="Alj-pH-AWU" id="8uB-j8-0NI"/>
<outlet property="positiveIcon" destination="oMn-kq-Yit" id="aqq-Mz-9wJ"/>
<outlet property="positiveReview" destination="TrQ-v5-OtL" id="fMW-gT-QWC"/>
<outlet property="rating" destination="OLG-Tc-sAw" id="0Tw-oU-ScM"/>
<outletCollection property="activateWhenNoNegativeReviews" destination="9Ci-5y-Pyh" id="UaR-Tb-qJg"/>
<outletCollection property="inactiveWhenNoNegativeReviews" destination="2yl-Jg-4iH" id="gfz-Gn-L36"/>
<outletCollection property="inactiveWhenNoNegativeReviews" destination="3Ik-6S-gE3" id="ly7-pL-jjo"/>
<outletCollection property="inactiveWhenNoNegativeReviews" destination="7l6-vm-GHZ" id="vQK-PR-VLa"/>
<outletCollection property="inactiveWhenNoNegativeReviews" destination="AwS-1P-3h3" id="taq-4H-our"/>
<outletCollection property="activateWhenNoPositiveReviews" destination="grx-dG-STE" id="6jt-sR-CxU"/>
<outletCollection property="inactiveWhenNoNegativeReviews" destination="grx-dG-STE" id="3mP-Gq-39Q"/>
<outletCollection property="inactiveWhenNoPositiveReviews" destination="EYc-ch-f6m" id="qsU-ca-rDH"/>
<outletCollection property="inactiveWhenNoPositiveReviews" destination="EYc-ch-f6m" id="9TP-oH-aap"/>
<outletCollection property="inactiveWhenNoPositiveReviews" destination="Ivw-l9-wfM" id="ocu-5C-SCX"/>
<outletCollection property="inactiveWhenNoPositiveReviews" destination="tRq-58-P1o" id="5fb-jx-zFe"/>
<outletCollection property="inactiveWhenNoPositiveReviews" destination="2yl-Jg-4iH" id="ANF-i7-SOa"/>
</connections>
<point key="canvasLocation" x="29.5" y="-15.5"/>
</tableViewCell>
</objects>
<resources>
<image name="ic_bad" width="24" height="24"/>
<image name="ic_good" width="24" height="24"/>
</resources>
</document>

View file

@ -1,71 +0,0 @@
final class CarouselElement: UICollectionViewCell {
@IBOutlet private weak var image: UIImageView!
@IBOutlet private var dimMask: [UIView]!
func config(with url: URL, isLastCell: Bool) {
image.wi_setImage(with: url, transitionDuration: kDefaultAnimationDuration)
dimMask.forEach { $0.isHidden = !isLastCell }
}
override func prepareForReuse() {
super.prepareForReuse()
image.image = nil;
}
}
@objc(MWMPPHotelCarouselCell)
final class PPHotelCarouselCell: MWMTableViewCell {
@IBOutlet private weak var collectionView: UICollectionView!
fileprivate var dataSource: [GalleryItemModel] = []
fileprivate let kMaximumNumberOfPhotos = 5
fileprivate weak var delegate: MWMPlacePageButtonsProtocol?
@objc func config(with ds: [GalleryItemModel], delegate d: MWMPlacePageButtonsProtocol?) {
dataSource = ds
delegate = d
collectionView.contentOffset = .zero
collectionView.delegate = self
collectionView.dataSource = self
collectionView.register(cellClass: CarouselElement.self)
collectionView.reloadData()
}
}
extension PPHotelCarouselCell: UICollectionViewDelegate, UICollectionViewDataSource {
private var isFullPhotosCarousel: Bool {
return dataSource.count <= kMaximumNumberOfPhotos
}
private func isLastCell(_ indexPath: IndexPath) -> Bool {
return (indexPath.item == kMaximumNumberOfPhotos - 1) && !isFullPhotosCarousel
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withCellClass: CarouselElement.self,
indexPath: indexPath) as! CarouselElement
cell.config(with: dataSource[indexPath.item].imageURL, isLastCell: isLastCell(indexPath))
return cell
}
func collectionView(_: UICollectionView, numberOfItemsInSection _: Int) -> Int {
return isFullPhotosCarousel ? dataSource.count : kMaximumNumberOfPhotos
}
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
guard let d = delegate else { return }
if isLastCell(indexPath) {
d.showGallery()
} else {
let section = indexPath.section
d.showPhoto(at: indexPath.item,
referenceView: collectionView.cellForItem(at: indexPath),
referenceViewWhenDismissingHandler: { index -> UIView? in
let indexPath = IndexPath(item: index, section: section)
return collectionView.cellForItem(at: indexPath)
})
}
}
}

View file

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" rowHeight="109" id="Sg7-wE-7Ir" customClass="MWMPPHotelCarouselCell" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="375" height="109"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Sg7-wE-7Ir" id="aSG-gb-Vaa">
<rect key="frame" x="0.0" y="0.0" width="375" height="108.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<collectionView multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" dataMode="none" translatesAutoresizingMaskIntoConstraints="NO" id="5Cw-QQ-VRc">
<rect key="frame" x="0.0" y="4" width="375" height="100"/>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstAttribute="height" priority="900" constant="100" id="BgC-ps-kiz"/>
</constraints>
<collectionViewFlowLayout key="collectionViewLayout" scrollDirection="horizontal" minimumLineSpacing="4" minimumInteritemSpacing="4" id="KiF-3P-pUG">
<size key="itemSize" width="150" height="100"/>
<size key="headerReferenceSize" width="0.0" height="0.0"/>
<size key="footerReferenceSize" width="0.0" height="0.0"/>
<inset key="sectionInset" minX="4" minY="0.0" maxX="4" maxY="0.0"/>
</collectionViewFlowLayout>
</collectionView>
</subviews>
<constraints>
<constraint firstItem="5Cw-QQ-VRc" firstAttribute="leading" secondItem="aSG-gb-Vaa" secondAttribute="leading" id="Nlk-Ll-dRR"/>
<constraint firstAttribute="trailing" secondItem="5Cw-QQ-VRc" secondAttribute="trailing" id="qgf-Dc-kSN"/>
<constraint firstItem="5Cw-QQ-VRc" firstAttribute="top" secondItem="aSG-gb-Vaa" secondAttribute="top" constant="4" id="vNM-Jj-E95"/>
<constraint firstAttribute="bottom" secondItem="5Cw-QQ-VRc" secondAttribute="bottom" constant="4.5" id="yac-xe-eNm"/>
</constraints>
</tableViewCellContentView>
<connections>
<outlet property="collectionView" destination="5Cw-QQ-VRc" id="IdD-9L-EmF"/>
</connections>
<point key="canvasLocation" x="41.5" y="86.5"/>
</tableViewCell>
</objects>
</document>

View file

@ -1,46 +0,0 @@
@objc(MWMPPHotelDescriptionCell)
final class PPHotelDescriptionCell: MWMTableViewCell {
private let kMaximumDescriptionHeight: CGFloat = 60
@IBOutlet private var compactModeConstraints: [NSLayoutConstraint]!
@IBOutlet private weak var descriptionText: UILabel!
@IBOutlet private weak var buttonZeroHeight: NSLayoutConstraint!
@IBOutlet private weak var button: UIButton!
private weak var updateDelegate: MWMPlacePageCellUpdateProtocol?
private var isNeedToForceLayout: Bool = false
@objc func config(with description: String, delegate: MWMPlacePageCellUpdateProtocol) {
descriptionText.text = description
descriptionText.sizeToFit()
updateDelegate = delegate
isNeedToForceLayout = true
}
override func layoutSubviews() {
super.layoutSubviews()
if isNeedToForceLayout {
isNeedToForceLayout = false
let isCompact = descriptionText.height > kMaximumDescriptionHeight
if isCompact {
compactModeConstraints.forEach { $0.priority = UILayoutPriority.defaultHigh }
}
hideButton(!isCompact)
}
}
private func hideButton(_ isHidden: Bool = true) {
button.isHidden = isHidden
buttonZeroHeight.priority = isHidden ? UILayoutPriority.defaultHigh : UILayoutPriority.defaultLow
}
@IBAction private func tap() {
animateConstraints(animations: {
self.compactModeConstraints.forEach { $0.priority = UILayoutPriority.defaultLow }
self.hideButton()
}, completion: {
self.updateDelegate?.cellUpdated()
})
}
}

View file

@ -1,73 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="PPHotelDescriptionCell" rowHeight="44" id="x5g-my-EeP" customClass="MWMPPHotelDescriptionCell" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="x5g-my-EeP" id="2f0-Qh-gMq">
<rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ILZ-NI-VZb">
<rect key="frame" x="16" y="14" width="343" height="15.5"/>
<constraints>
<constraint firstAttribute="height" priority="250" constant="60" id="p7P-XI-WnA"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular16"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
</label>
<button opaque="NO" contentMode="scaleToFill" verticalCompressionResistancePriority="501" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="n7r-xF-fbc">
<rect key="frame" x="0.0" y="43.5" width="375" height="0.0"/>
<constraints>
<constraint firstAttribute="height" priority="500" id="VFr-Uh-l7q"/>
<constraint firstAttribute="height" priority="250" constant="36" id="fsJ-u1-4gE"/>
</constraints>
<state key="normal" title="Button"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular17"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="booking_show_more"/>
</userDefinedRuntimeAttributes>
<connections>
<action selector="tap" destination="x5g-my-EeP" eventType="touchUpInside" id="Wdx-Mm-VxZ"/>
</connections>
</button>
</subviews>
<constraints>
<constraint firstItem="n7r-xF-fbc" firstAttribute="top" secondItem="ILZ-NI-VZb" secondAttribute="bottom" constant="14" id="5yR-UL-Ok7"/>
<constraint firstAttribute="trailing" secondItem="n7r-xF-fbc" secondAttribute="trailing" id="YSr-mm-xOp"/>
<constraint firstItem="ILZ-NI-VZb" firstAttribute="top" secondItem="2f0-Qh-gMq" secondAttribute="top" constant="14" id="eb7-UC-1N6"/>
<constraint firstAttribute="bottom" secondItem="n7r-xF-fbc" secondAttribute="bottom" id="f81-in-UJU"/>
<constraint firstItem="n7r-xF-fbc" firstAttribute="leading" secondItem="2f0-Qh-gMq" secondAttribute="leading" id="l0U-Us-SvH"/>
<constraint firstItem="ILZ-NI-VZb" firstAttribute="leading" secondItem="2f0-Qh-gMq" secondAttribute="leading" constant="16" id="lBK-OX-lOc"/>
<constraint firstAttribute="trailing" secondItem="ILZ-NI-VZb" secondAttribute="trailing" constant="16" id="u9S-uq-2ZH"/>
</constraints>
</tableViewCellContentView>
<inset key="separatorInset" minX="10" minY="0.0" maxX="0.0" maxY="0.0"/>
<connections>
<outlet property="button" destination="n7r-xF-fbc" id="3nI-UG-vie"/>
<outlet property="buttonZeroHeight" destination="VFr-Uh-l7q" id="QC8-Cm-oAX"/>
<outlet property="descriptionText" destination="ILZ-NI-VZb" id="iRg-Ca-5vg"/>
<outletCollection property="compactModeConstraints" destination="fsJ-u1-4gE" collectionClass="NSMutableArray" id="mpD-RN-ypi"/>
<outletCollection property="compactModeConstraints" destination="p7P-XI-WnA" collectionClass="NSMutableArray" id="3EH-oK-qAl"/>
</connections>
<point key="canvasLocation" x="-67.5" y="145"/>
</tableViewCell>
</objects>
</document>

View file

@ -1,10 +0,0 @@
@objc(MWMPPReviewHeaderCell)
final class PPReviewHeaderCell: UITableViewCell {
@IBOutlet private var rating: UILabel!
@IBOutlet private var count: UILabel!
@objc func config(rating: UGCRatingValueType, numberOfReviews: Int) {
self.rating.text = rating.value
count.text = String(format:L("placepage_summary_rating_description"), numberOfReviews)
}
}

View file

@ -1,61 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" rowHeight="73" id="YCM-4v-MNp" customClass="MWMPPReviewHeaderCell" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="375" height="73"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="YCM-4v-MNp" id="Bqc-Cr-hRy">
<rect key="frame" x="0.0" y="0.0" width="375" height="72.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="249" verticalCompressionResistancePriority="751" text="Rating" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3Nd-AC-y0A">
<rect key="frame" x="16" y="14" width="343" height="20.5"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.33333333329999998" green="0.5450980392" blue="0.1843137255" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium16"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="green"/>
</userDefinedRuntimeAttributes>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Based on" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="yHa-uA-HgQ">
<rect key="frame" x="16" y="42.5" width="343" height="19.5"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular13"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackSecondaryText"/>
</userDefinedRuntimeAttributes>
</label>
</subviews>
<constraints>
<constraint firstItem="3Nd-AC-y0A" firstAttribute="leading" secondItem="Bqc-Cr-hRy" secondAttribute="leading" constant="16" id="1oh-58-1HH"/>
<constraint firstAttribute="bottom" secondItem="yHa-uA-HgQ" secondAttribute="bottom" constant="10" id="5MN-Aa-uDa"/>
<constraint firstAttribute="trailing" secondItem="3Nd-AC-y0A" secondAttribute="trailing" constant="16" id="Fdk-Pa-d2K"/>
<constraint firstItem="yHa-uA-HgQ" firstAttribute="leading" secondItem="Bqc-Cr-hRy" secondAttribute="leading" constant="16" id="H1u-t0-j9A"/>
<constraint firstItem="3Nd-AC-y0A" firstAttribute="top" secondItem="Bqc-Cr-hRy" secondAttribute="top" constant="14" id="a9O-bD-Fyd"/>
<constraint firstAttribute="trailing" secondItem="yHa-uA-HgQ" secondAttribute="trailing" constant="16" id="dKx-92-hOf"/>
<constraint firstItem="yHa-uA-HgQ" firstAttribute="top" secondItem="3Nd-AC-y0A" secondAttribute="bottom" constant="8" id="teF-4b-skN"/>
</constraints>
</tableViewCellContentView>
<color key="backgroundColor" red="0.27450980392156865" green="0.62745098039215685" blue="0.27450980392156865" alpha="0.16" colorSpace="calibratedRGB"/>
<inset key="separatorInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
<connections>
<outlet property="count" destination="yHa-uA-HgQ" id="sGr-0J-scb"/>
<outlet property="rating" destination="3Nd-AC-y0A" id="WIl-W1-jte"/>
</connections>
<point key="canvasLocation" x="3.5" y="40.5"/>
</tableViewCell>
</objects>
</document>

View file

@ -1,14 +0,0 @@
#import "MWMTableViewCell.h"
@protocol MWMPlacePageButtonsProtocol
, MWMPlacePageCellUpdateProtocol;
@interface MWMBookmarkCell : MWMTableViewCell
- (void)configureWithText:(NSString *)text
updateCellDelegate:(id<MWMPlacePageCellUpdateProtocol>)updateCellDelegate
editBookmarkDelegate:(id<MWMPlacePageButtonsProtocol>)editBookmarkDelegate
isHTML:(BOOL)isHTML
isEditable:(BOOL)isEditable;
@end

View file

@ -1,195 +0,0 @@
#import "MWMBookmarkCell.h"
#import "MWMPlacePageCellUpdateProtocol.h"
#import "MWMPlacePageProtocol.h"
#import "SwiftBridge.h"
namespace
{
void * kContext = &kContext;
// https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/KeyValueObserving/Articles/KVOBasics.html
NSString * const kTextViewContentSizeKeyPath = @"contentSize";
} // namespace
@interface MWMBookmarkCell ()
@property(weak, nonatomic) IBOutlet UITextView * textView;
@property(weak, nonatomic) IBOutlet UIImageView * spinner;
@property(weak, nonatomic) IBOutlet UIButton * editButton;
@property(weak, nonatomic) IBOutlet UIImageView * gradientView;
@property(nonatomic) IBOutlet NSLayoutConstraint * textViewHeight;
@property(weak, nonatomic) IBOutlet NSLayoutConstraint * moreButtonHeight;
@property(nonatomic) IBOutlet NSLayoutConstraint * textViewZeroHeight;
@property(weak, nonatomic) id<MWMPlacePageCellUpdateProtocol> updateCellDelegate;
@property(weak, nonatomic) id<MWMPlacePageButtonsProtocol> editBookmarkDelegate;
@property(copy, nonatomic) NSAttributedString * attributedHTML;
@property(nonatomic) BOOL isOpen;
@end
@implementation MWMBookmarkCell
- (void)awakeFromNib
{
[super awakeFromNib];
[self registerObserver];
self.textView.textContainer.lineFragmentPadding = 0;
}
- (void)dealloc { [self unregisterObserver]; }
- (void)unregisterObserver
{
[self.textView removeObserver:self forKeyPath:kTextViewContentSizeKeyPath context:kContext];
}
- (void)registerObserver
{
[self.textView addObserver:self
forKeyPath:kTextViewContentSizeKeyPath
options:NSKeyValueObservingOptionNew
context:kContext];
}
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context
{
if (context == kContext)
{
NSValue * s = change[@"new"];
auto const height = s.CGSizeValue.height;
auto const boundedHeight = self.textViewHeight.constant;
if (height < boundedHeight || self.isOpen)
[self stateOpen:YES];
else
[self stateOpen:NO];
[self setNeedsLayout];
[self.updateCellDelegate cellUpdated];
return;
}
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
- (void)configureWithText:(NSString *)text
updateCellDelegate:(id<MWMPlacePageCellUpdateProtocol>)updateCellDelegate
editBookmarkDelegate:(id<MWMPlacePageButtonsProtocol>)editBookmarkDelegate
isHTML:(BOOL)isHTML
isEditable:(BOOL)isEditable
{
self.attributedHTML = nil;
self.isOpen = NO;
self.textViewHeight.active = NO;
self.textViewZeroHeight.active = NO;
self.updateCellDelegate = updateCellDelegate;
self.editBookmarkDelegate = editBookmarkDelegate;
self.editButton.enabled = isEditable;
if (!text.length)
[self configWithEmptyDescription];
else if (isHTML)
[self configHTML:text];
else
[self configPlain:text];
}
- (void)configWithEmptyDescription
{
[self stopSpinner];
[self stateOpen:YES];
self.textViewZeroHeight.active = YES;
}
- (void)configHTML:(NSString *)text
{
if (self.attributedHTML)
{
[self stopSpinner];
self.textViewZeroHeight.active = NO;
self.textView.attributedText = self.attributedHTML;
// In case when after setting attributed text into textView its content height is about 0 but
// not 0 (e.g. 0.33).
// When it happens we need to call sizeToFit to display bookmark description.
if (self.textView.contentSize.height < 1)
[self.textView sizeToFit];
}
else
{
self.textViewZeroHeight.active = YES;
[self startSpinner];
[self stateOpen:YES];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
auto font = [UIFont regular16];
auto color = [UIColor blackPrimaryText];
auto str = [[NSMutableAttributedString alloc] initWithHtmlString:text
baseFont:font
estimatedWidth:[UIScreen mainScreen].bounds.size.width - 32.0f];
if (str)
{
[str addAttribute:NSForegroundColorAttributeName value:color range:NSMakeRange(0, str.length)];
self.attributedHTML = str;
}
else
{
self.attributedHTML =
[[NSAttributedString alloc] initWithString:text
attributes:@{
NSFontAttributeName : font,
NSForegroundColorAttributeName : color
}];
}
dispatch_async(dispatch_get_main_queue(), ^{
[self configHTML:nil];
});
});
}
}
- (void)configPlain:(NSString *)text
{
[self stopSpinner];
self.textView.text = text;
}
- (void)stateOpen:(BOOL)isOpen
{
self.moreButtonHeight.constant = isOpen ? 0 : 33;
self.textViewHeight.active = !isOpen;
self.gradientView.hidden = isOpen;
}
- (void)startSpinner
{
self.editButton.hidden = YES;
NSString * postfix = [UIColor isNightMode] ? @"dark" : @"light";
self.spinner.image = [UIImage imageNamed:[NSString stringWithFormat:@"Spinner_%@", postfix]];
[self.spinner startRotation:1];
}
- (void)stopSpinner
{
[self.spinner stopRotation];
self.editButton.hidden = NO;
self.spinner.hidden = YES;
}
- (IBAction)moreTap
{
self.isOpen = YES;
[self stateOpen:YES];
[self setNeedsLayout];
}
- (IBAction)editTap { [self.editBookmarkDelegate editBookmark]; }
@end

View file

@ -1,143 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="14868" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14824"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="MWMBookmarkCell" id="45K-kk-B2o" customClass="MWMBookmarkCell">
<rect key="frame" x="0.0" y="0.0" width="320" height="240"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="45K-kk-B2o" id="wdW-iu-3p9">
<rect key="frame" x="0.0" y="0.0" width="320" height="240"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" scrollEnabled="NO" editable="NO" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="Fsd-1g-BiQ">
<rect key="frame" x="16" y="0.0" width="288" height="161"/>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="height" constant="161" id="9oh-yS-fXg"/>
<constraint firstAttribute="height" priority="750" id="Fzu-Vb-HiG"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="14"/>
<textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
<dataDetectorType key="dataDetectorTypes" phoneNumber="YES" link="YES"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular16"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
<connections>
<outlet property="delegate" destination="45K-kk-B2o" id="Uxb-zy-JaE"/>
</connections>
</textView>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="gradient_light" translatesAutoresizingMaskIntoConstraints="NO" id="nxK-lC-JqY">
<rect key="frame" x="16" y="137.5" width="288" height="24"/>
<constraints>
<constraint firstAttribute="height" constant="24" id="lxX-KK-ccK"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="mwm_name" value="gradient"/>
</userDefinedRuntimeAttributes>
</imageView>
<button opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ZiC-VG-fs0">
<rect key="frame" x="0.0" y="161.5" width="320" height="33"/>
<constraints>
<constraint firstAttribute="height" constant="33" id="I3z-10-2aB"/>
</constraints>
<inset key="contentEdgeInsets" minX="16" minY="0.0" maxX="9" maxY="0.0"/>
<state key="normal" title="more"/>
<state key="highlighted" backgroundImage="dialog_btn_press"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular16"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorHighlightedName" value="linkBlueHighlighted"/>
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="text_more_button"/>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
<connections>
<action selector="moreTap" destination="45K-kk-B2o" eventType="touchUpInside" id="OVi-Cl-kDK"/>
</connections>
</button>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="separator_image" translatesAutoresizingMaskIntoConstraints="NO" id="ZHb-qS-nFh">
<rect key="frame" x="16" y="194.5" width="304" height="1"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="Nie-DF-2Ki"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="coloring" value="MWMSeparator"/>
</userDefinedRuntimeAttributes>
</imageView>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="fKp-HW-1bX">
<rect key="frame" x="0.0" y="195.5" width="320" height="44"/>
<constraints>
<constraint firstAttribute="height" constant="44" id="GrP-Iw-EEG"/>
</constraints>
<inset key="contentEdgeInsets" minX="16" minY="0.0" maxX="9" maxY="0.0"/>
<state key="normal" title="Edit Bookmark"/>
<state key="highlighted" backgroundImage="dialog_btn_press"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular17"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorHighlightedName" value="linkBlueHighlighted"/>
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="placepage_edit_bookmark_button"/>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorDisabledName" value="buttonDisabledBlueText"/>
</userDefinedRuntimeAttributes>
<connections>
<action selector="editTap" destination="45K-kk-B2o" eventType="touchUpInside" id="Ikn-Gw-zfT"/>
</connections>
</button>
<imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Xqf-Fb-Ojj">
<rect key="frame" x="142" y="199.5" width="36" height="36"/>
<constraints>
<constraint firstAttribute="width" constant="36" id="gj2-Tn-x6I"/>
<constraint firstAttribute="height" constant="36" id="rzU-50-2nS"/>
</constraints>
</imageView>
</subviews>
<constraints>
<constraint firstItem="Xqf-Fb-Ojj" firstAttribute="centerX" secondItem="fKp-HW-1bX" secondAttribute="centerX" id="3SE-at-on8"/>
<constraint firstItem="fKp-HW-1bX" firstAttribute="top" secondItem="ZHb-qS-nFh" secondAttribute="bottom" id="5GI-iV-NcW"/>
<constraint firstItem="Xqf-Fb-Ojj" firstAttribute="centerY" secondItem="fKp-HW-1bX" secondAttribute="centerY" id="Bjg-lo-TFI"/>
<constraint firstAttribute="bottom" secondItem="fKp-HW-1bX" secondAttribute="bottom" constant="0.5" id="Lni-kV-hFB"/>
<constraint firstItem="ZHb-qS-nFh" firstAttribute="leading" secondItem="wdW-iu-3p9" secondAttribute="leading" constant="16" id="MNZ-uJ-rat"/>
<constraint firstItem="nxK-lC-JqY" firstAttribute="trailing" secondItem="Fsd-1g-BiQ" secondAttribute="trailing" id="Nuc-hw-k7g"/>
<constraint firstAttribute="trailing" secondItem="Fsd-1g-BiQ" secondAttribute="trailing" constant="16" id="Oli-Wc-XEw"/>
<constraint firstItem="Fsd-1g-BiQ" firstAttribute="leading" secondItem="wdW-iu-3p9" secondAttribute="leading" constant="16" id="Sf7-Sm-qjx"/>
<constraint firstAttribute="trailing" secondItem="ZiC-VG-fs0" secondAttribute="trailing" id="YnE-ZS-uvq"/>
<constraint firstItem="Fsd-1g-BiQ" firstAttribute="top" secondItem="wdW-iu-3p9" secondAttribute="top" id="eq7-sX-Xmu"/>
<constraint firstItem="nxK-lC-JqY" firstAttribute="leading" secondItem="Fsd-1g-BiQ" secondAttribute="leading" id="fEH-Mb-jKl"/>
<constraint firstItem="ZiC-VG-fs0" firstAttribute="top" secondItem="nxK-lC-JqY" secondAttribute="bottom" id="fzw-Ku-ogi"/>
<constraint firstItem="ZHb-qS-nFh" firstAttribute="top" secondItem="ZiC-VG-fs0" secondAttribute="bottom" id="lhB-Bz-I7t"/>
<constraint firstItem="ZiC-VG-fs0" firstAttribute="top" secondItem="Fsd-1g-BiQ" secondAttribute="bottom" priority="750" id="ljR-q8-Ogv"/>
<constraint firstItem="ZiC-VG-fs0" firstAttribute="leading" secondItem="wdW-iu-3p9" secondAttribute="leading" id="o7K-ik-8fC"/>
<constraint firstAttribute="trailing" secondItem="ZHb-qS-nFh" secondAttribute="trailing" id="s0h-Qw-irP"/>
<constraint firstItem="nxK-lC-JqY" firstAttribute="bottom" secondItem="Fsd-1g-BiQ" secondAttribute="bottom" priority="750" id="vF4-nA-hcQ"/>
<constraint firstAttribute="trailing" secondItem="fKp-HW-1bX" secondAttribute="trailing" id="x31-Te-nkc"/>
<constraint firstItem="fKp-HW-1bX" firstAttribute="leading" secondItem="wdW-iu-3p9" secondAttribute="leading" id="xUk-eO-3jw"/>
</constraints>
</tableViewCellContentView>
<inset key="separatorInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
<connections>
<outlet property="editButton" destination="fKp-HW-1bX" id="Rgx-Ve-h8A"/>
<outlet property="gradientView" destination="nxK-lC-JqY" id="YhF-GP-daD"/>
<outlet property="moreButtonHeight" destination="I3z-10-2aB" id="qrJ-gd-leK"/>
<outlet property="spinner" destination="Xqf-Fb-Ojj" id="7Ke-6f-72t"/>
<outlet property="textView" destination="Fsd-1g-BiQ" id="YNE-YF-QNS"/>
<outlet property="textViewHeight" destination="9oh-yS-fXg" id="wSI-K7-3Sn"/>
<outlet property="textViewZeroHeight" destination="Fzu-Vb-HiG" id="F1e-1k-Ip3"/>
</connections>
<point key="canvasLocation" x="421.73913043478262" y="287.27678571428572"/>
</tableViewCell>
</objects>
<resources>
<image name="dialog_btn_press" width="280" height="44"/>
<image name="gradient_light" width="1" height="24"/>
<image name="separator_image" width="1" height="1"/>
</resources>
</document>

View file

@ -1,8 +0,0 @@
@protocol MWMPlacePageBookmarkDelegate<NSObject>
@required
- (void)editBookmarkTap;
- (void)reloadBookmark;
- (void)moreTap;
@end

View file

@ -1,5 +0,0 @@
@protocol MWMPlacePageCellUpdateProtocol<NSObject>
- (void)cellUpdated;
@end

View file

@ -1,24 +0,0 @@
#import "MWMTableViewCell.h"
@protocol MWMPlacePageButtonsProtocol;
namespace place_page
{
enum class ButtonsRows;
} // namespace place_page
@interface MWMPlacePageButtonCell : MWMTableViewCell
- (void)configWithTitle:(NSString *)title
action:(MWMVoidBlock)action
isInsetButton:(BOOL)isInsetButton;
- (void)configForRow:(place_page::ButtonsRows)row
withAction:(MWMVoidBlock)action;
- (void)setEnabled:(BOOL)enabled;
- (BOOL)isEnabled;
- (place_page::ButtonsRows)rowType;
@end

View file

@ -1,122 +0,0 @@
#import "MWMPlacePageButtonCell.h"
#import "MWMPlacePageData.h"
#import "SwiftBridge.h"
@interface MWMPlacePageButtonCell ()
@property(weak, nonatomic) IBOutlet MWMBorderedButton * titleButton;
@property(nonatomic) place_page::ButtonsRows rowType;
@property(copy, nonatomic) MWMVoidBlock action;
@property(weak, nonatomic) IBOutlet NSLayoutConstraint * buttonTop;
@property(weak, nonatomic) IBOutlet NSLayoutConstraint * buttonTrailing;
@property(weak, nonatomic) IBOutlet NSLayoutConstraint * buttonBottom;
@property(weak, nonatomic) IBOutlet NSLayoutConstraint * buttonLeading;
@property(weak, nonatomic) IBOutlet NSLayoutConstraint * buttonHeight;
@property(nonatomic) BOOL isInsetButton;
@end
@implementation MWMPlacePageButtonCell
- (void)awakeFromNib
{
[super awakeFromNib];
[self.titleButton setTitleColor:[UIColor linkBlueHighlighted] forState:UIControlStateDisabled];
[self.titleButton setTitleColor:[UIColor linkBlue] forState:UIControlStateNormal];
}
- (void)setEnabled:(BOOL)enabled { self.titleButton.enabled = enabled; }
- (BOOL)isEnabled { return self.titleButton.isEnabled; }
- (void)configWithTitle:(NSString *)title
action:(MWMVoidBlock)action
isInsetButton:(BOOL)isInsetButton
{
self.rowType = place_page::ButtonsRows::Other;
self.action = action;
self.isInsetButton = isInsetButton;
[self.titleButton setTitle:title forState:UIControlStateNormal];
}
- (void)configForRow:(place_page::ButtonsRows)row
withAction:(MWMVoidBlock)action
{
using place_page::ButtonsRows;
self.rowType = row;
self.action = action;
NSString * title = nil;
BOOL isInsetButton = NO;
switch (row)
{
case ButtonsRows::AddPlace:
title = L(@"placepage_add_place_button");
isInsetButton = YES;
break;
case ButtonsRows::EditPlace:
title = L(@"edit_place");
isInsetButton = YES;
break;
case ButtonsRows::AddBusiness:
title = L(@"placepage_add_business_button");
isInsetButton = YES;
break;
case ButtonsRows::HotelDescription:
title = L(@"details_on_bookingcom");
isInsetButton = YES;
break;
case ButtonsRows::Other:
break;
}
self.isInsetButton = isInsetButton;
[self.titleButton setTitle:title forState:UIControlStateNormal];
}
- (IBAction)buttonTap
{
if (self.action)
self.action();
}
#pragma mark - Properties
- (void)setIsInsetButton:(BOOL)isInsetButton
{
_isInsetButton = isInsetButton;
auto titleButton = self.titleButton;
auto btnLayer = titleButton.layer;
if (isInsetButton)
{
self.backgroundColor = UIColor.clearColor;
self.buttonTop.constant = 8;
self.buttonTrailing.constant = 16;
self.buttonBottom.constant = 8;
self.buttonLeading.constant = 16;
self.buttonHeight.constant = 36;
[titleButton setBorderColor:[UIColor linkBlue]];
[titleButton setBorderHighlightedColor:[UIColor linkBlueHighlighted]];
btnLayer.borderWidth = 1;
btnLayer.borderColor = [UIColor linkBlue].CGColor;
btnLayer.cornerRadius = 8;
self.isSeparatorHidden = YES;
}
else
{
self.backgroundColor = [UIColor white];
self.buttonTop.constant = 0;
self.buttonTrailing.constant = 0;
self.buttonBottom.constant = 0;
self.buttonLeading.constant = 0;
self.buttonHeight.constant = 44;
btnLayer.borderWidth = 0;
}
}
@end

View file

@ -1,58 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="KGk-i7-Jjw" customClass="MWMPlacePageButtonCell" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KGk-i7-Jjw" id="H2p-sc-9uM">
<rect key="frame" x="0.0" y="0.0" width="320" height="43.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="jmU-dJ-aRH" customClass="MWMBorderedButton">
<rect key="frame" x="0.0" y="0.0" width="320" height="43"/>
<constraints>
<constraint firstAttribute="height" priority="999" constant="44" id="gfO-mi-8yS"/>
</constraints>
<inset key="contentEdgeInsets" minX="16" minY="0.0" maxX="9" maxY="0.0"/>
<state key="normal" title="Edit"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular17"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorName" value="linkBlue"/>
</userDefinedRuntimeAttributes>
<connections>
<action selector="buttonTap" destination="KGk-i7-Jjw" eventType="touchUpInside" id="aCZ-5a-EUl"/>
</connections>
</button>
</subviews>
<constraints>
<constraint firstItem="jmU-dJ-aRH" firstAttribute="top" secondItem="H2p-sc-9uM" secondAttribute="top" id="NxH-y9-BLI"/>
<constraint firstAttribute="trailing" secondItem="jmU-dJ-aRH" secondAttribute="trailing" id="bcE-yn-K3v"/>
<constraint firstAttribute="bottom" secondItem="jmU-dJ-aRH" secondAttribute="bottom" id="sc3-KG-vSR"/>
<constraint firstItem="jmU-dJ-aRH" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" id="yES-81-JAM"/>
</constraints>
</tableViewCellContentView>
<inset key="separatorInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
<connections>
<outlet property="buttonBottom" destination="sc3-KG-vSR" id="jFy-8o-BFc"/>
<outlet property="buttonHeight" destination="gfO-mi-8yS" id="DSe-Nx-JNh"/>
<outlet property="buttonLeading" destination="yES-81-JAM" id="0fE-sF-ByK"/>
<outlet property="buttonTop" destination="NxH-y9-BLI" id="IrC-52-6q5"/>
<outlet property="buttonTrailing" destination="bcE-yn-K3v" id="sC9-CJ-8Zz"/>
<outlet property="titleButton" destination="jmU-dJ-aRH" id="IXC-pf-YHH"/>
</connections>
</tableViewCell>
</objects>
</document>

View file

@ -1,40 +0,0 @@
@objc class CatalogSingleItemCell: UITableViewCell {
@IBOutlet var placeTitleLabel: UILabel!
@IBOutlet var placeDescriptionLabel: UILabel!
@IBOutlet var guideNameLabel: UILabel!
@IBOutlet var guideAuthorLabel: UILabel!
@IBOutlet var moreButton: UIButton!
@IBOutlet var placeImageView: UIImageView!
@IBOutlet var openCatalogButton: UIButton!
@IBOutlet var moreButtonHeightConstraint: NSLayoutConstraint!
@IBOutlet var guideContainerView: UIView!
@IBOutlet var headerLabel: UILabel!
@objc var onMore: MWMVoidBlock?
@objc var onView: MWMVoidBlock?
override func awakeFromNib() {
super.awakeFromNib()
guideContainerView.layer.borderColor = UIColor.blackDividers().cgColor
headerLabel.text = L("pp_discovery_place_related_header").uppercased()
}
@objc func config(_ promoItem: CatalogPromoItem) {
placeTitleLabel.text = promoItem.placeTitle
placeDescriptionLabel.text = promoItem.placeDescription
guideNameLabel.text = promoItem.guideName
guideAuthorLabel.text = promoItem.guideAuthor
guard let url = URL(string: promoItem.imageUrl) else {
return
}
placeImageView.wi_setImage(with: url)
}
@IBAction func onMoreButton(_ sender: UIButton) {
onMore?()
}
@IBAction func onCatalogButton(_ sender: UIButton) {
onView?()
}
}

View file

@ -1,266 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="14868" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<device id="retina6_1" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14824"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" rowHeight="379" id="KGk-i7-Jjw" customClass="CatalogSingleItemCell" customModule="maps_me" customModuleProvider="target">
<rect key="frame" x="0.0" y="0.0" width="375" height="454"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KGk-i7-Jjw" id="H2p-sc-9uM">
<rect key="frame" x="0.0" y="0.0" width="375" height="454"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="THIS PLACE IN GUIDES CATALOG" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Bhy-Em-Lsy">
<rect key="frame" x="16" y="0.0" width="351" height="48"/>
<constraints>
<constraint firstAttribute="height" constant="48" id="gtd-gt-qrH"/>
</constraints>
<fontDescription key="fontDescription" type="system" weight="medium" pointSize="14"/>
<color key="textColor" white="0.0" alpha="0.54000000000000004" colorSpace="calibratedWhite"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium14"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackSecondaryText"/>
</userDefinedRuntimeAttributes>
</label>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kay-Ql-Q4u">
<rect key="frame" x="0.0" y="48" width="375" height="176"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Государственный музей изобразительных искусств имени А.С. Пушкина" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tjG-Xk-PW2">
<rect key="frame" x="16" y="16" width="343" height="34"/>
<fontDescription key="fontDescription" type="system" weight="semibold" pointSize="14"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium14"/>
</userDefinedRuntimeAttributes>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="252" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="5" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="kpd-Fx-T2M">
<rect key="frame" x="16" y="58" width="343" height="84"/>
<string key="text">музейный комплекс, обладающий одим из крупнейших в России художественных собраний зарубежного искусства. хранящий артефакты, созданные мастерами разных эпох - от Древнего Египта и античной Греции до наших...</string>
<fontDescription key="fontDescription" type="system" pointSize="14"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular14"/>
</userDefinedRuntimeAttributes>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="88F-wd-Imb">
<rect key="frame" x="16" y="142" width="343" height="30"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="rDb-rD-JRG"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="14"/>
<state key="normal" title="...more">
<color key="titleColor" red="0.1176470588" green="0.58823529409999997" blue="0.94117647059999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium14"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorHighlightedName" value="linkBlueHighlighted"/>
</userDefinedRuntimeAttributes>
<connections>
<action selector="onMoreButton:" destination="KGk-i7-Jjw" eventType="touchUpInside" id="SJG-1o-t1H"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="trailing" secondItem="88F-wd-Imb" secondAttribute="trailing" constant="16" id="73A-q6-tAz"/>
<constraint firstItem="kpd-Fx-T2M" firstAttribute="bottom" secondItem="88F-wd-Imb" secondAttribute="top" id="7Gt-Kz-poP"/>
<constraint firstItem="kpd-Fx-T2M" firstAttribute="leading" secondItem="kay-Ql-Q4u" secondAttribute="leading" constant="16" id="CCp-zf-4IS"/>
<constraint firstItem="tjG-Xk-PW2" firstAttribute="leading" secondItem="kay-Ql-Q4u" secondAttribute="leading" constant="16" id="Go3-Yq-c0h"/>
<constraint firstAttribute="trailing" secondItem="tjG-Xk-PW2" secondAttribute="trailing" constant="16" id="b0i-hn-Hxq"/>
<constraint firstAttribute="trailing" secondItem="kpd-Fx-T2M" secondAttribute="trailing" constant="16" id="n5t-Nq-zfJ"/>
<constraint firstItem="88F-wd-Imb" firstAttribute="leading" secondItem="kay-Ql-Q4u" secondAttribute="leading" constant="16" id="oOE-MR-E9Q"/>
<constraint firstItem="kpd-Fx-T2M" firstAttribute="top" secondItem="tjG-Xk-PW2" secondAttribute="bottom" constant="8" id="qTs-xs-PmG"/>
<constraint firstItem="tjG-Xk-PW2" firstAttribute="top" secondItem="kay-Ql-Q4u" secondAttribute="top" constant="16" id="rh5-PZ-qDd"/>
<constraint firstAttribute="bottom" secondItem="88F-wd-Imb" secondAttribute="bottom" constant="4" id="zlw-mE-wCH"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="evd-YR-GpP">
<rect key="frame" x="0.0" y="224.5" width="375" height="230"/>
<subviews>
<view clipsSubviews="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ghb-tP-72g">
<rect key="frame" x="8" y="8" width="359" height="214"/>
<subviews>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="0uF-jB-pU1">
<rect key="frame" x="0.0" y="0.0" width="179.5" height="214"/>
</imageView>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="o8R-cD-WTy">
<rect key="frame" x="179.5" y="0.0" width="179.5" height="214"/>
<subviews>
<button opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ze9-RJ-Rq3">
<rect key="frame" x="8" y="166" width="163.5" height="40"/>
<color key="backgroundColor" red="0.1176470588" green="0.58823529409999997" blue="0.94117647059999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="height" constant="40" id="Gyf-59-hAU">
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
<integer key="value" value="6"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</constraint>
</constraints>
<fontDescription key="fontDescription" type="system" weight="semibold" pointSize="14"/>
<state key="normal" title="View"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="textColorName" value="white"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorHighlightedName" value="white"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium14"/>
<userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
<integer key="value" value="6"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundHighlightedColorName" value="linkBlueHighlighted"/>
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="pp_discovery_place_related_cta_button"/>
</userDefinedRuntimeAttributes>
<connections>
<action selector="onCatalogButton:" destination="KGk-i7-Jjw" eventType="touchUpInside" id="R6p-sj-fF0"/>
</connections>
</button>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="HbZ-ve-HXd">
<rect key="frame" x="8" y="8" width="164" height="150"/>
<subviews>
<view clipsSubviews="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="6DT-fQ-3vs">
<rect key="frame" x="0.0" y="23.5" width="164" height="103.5"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Государственный музей изобразительных искусств имени А.С. Пушкина" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="upe-j8-l1G">
<rect key="frame" x="0.0" y="0.0" width="164" height="84"/>
<fontDescription key="fontDescription" type="system" weight="semibold" pointSize="14"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium14"/>
</userDefinedRuntimeAttributes>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ArrivalGuides" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Waz-Lf-ctY">
<rect key="frame" x="0.0" y="89" width="164" height="14.5"/>
<fontDescription key="fontDescription" type="system" pointSize="12"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackSecondaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular12"/>
</userDefinedRuntimeAttributes>
</label>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="Waz-Lf-ctY" firstAttribute="leading" secondItem="6DT-fQ-3vs" secondAttribute="leading" id="1tU-G6-BSG"/>
<constraint firstAttribute="trailing" secondItem="Waz-Lf-ctY" secondAttribute="trailing" id="2R6-46-cEL"/>
<constraint firstAttribute="trailing" secondItem="upe-j8-l1G" secondAttribute="trailing" id="5xd-Sx-liP"/>
<constraint firstItem="upe-j8-l1G" firstAttribute="top" secondItem="6DT-fQ-3vs" secondAttribute="top" id="80W-jL-oOy"/>
<constraint firstItem="upe-j8-l1G" firstAttribute="leading" secondItem="6DT-fQ-3vs" secondAttribute="leading" id="RHu-zB-VtC"/>
<constraint firstItem="Waz-Lf-ctY" firstAttribute="top" secondItem="upe-j8-l1G" secondAttribute="bottom" constant="5" id="f50-Yt-aRG"/>
<constraint firstAttribute="bottom" secondItem="Waz-Lf-ctY" secondAttribute="bottom" priority="750" id="ger-Jg-y9b"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
</view>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="6DT-fQ-3vs" firstAttribute="top" relation="greaterThanOrEqual" secondItem="HbZ-ve-HXd" secondAttribute="top" id="9Rd-1H-pHc"/>
<constraint firstItem="6DT-fQ-3vs" firstAttribute="leading" secondItem="HbZ-ve-HXd" secondAttribute="leading" id="R7d-As-wQl"/>
<constraint firstAttribute="trailing" secondItem="6DT-fQ-3vs" secondAttribute="trailing" id="ad4-VA-mmy"/>
<constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="6DT-fQ-3vs" secondAttribute="bottom" id="nve-Qv-YAk"/>
<constraint firstItem="6DT-fQ-3vs" firstAttribute="centerY" secondItem="HbZ-ve-HXd" secondAttribute="centerY" id="uUw-Oa-fis"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
</view>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="trailing" secondItem="ze9-RJ-Rq3" secondAttribute="trailing" constant="8" id="1nZ-QE-Jl9"/>
<constraint firstItem="HbZ-ve-HXd" firstAttribute="top" secondItem="o8R-cD-WTy" secondAttribute="top" constant="8" id="ES2-1c-rqP"/>
<constraint firstItem="HbZ-ve-HXd" firstAttribute="leading" secondItem="o8R-cD-WTy" secondAttribute="leading" constant="8" id="Hl2-pb-KTL"/>
<constraint firstItem="ze9-RJ-Rq3" firstAttribute="leading" secondItem="o8R-cD-WTy" secondAttribute="leading" constant="8" id="NLz-HH-JBM"/>
<constraint firstAttribute="trailing" secondItem="HbZ-ve-HXd" secondAttribute="trailing" constant="7.5" id="dBa-G7-DyF"/>
<constraint firstAttribute="bottom" secondItem="ze9-RJ-Rq3" secondAttribute="bottom" constant="8" id="w4e-Ys-oD8"/>
<constraint firstItem="ze9-RJ-Rq3" firstAttribute="top" secondItem="HbZ-ve-HXd" secondAttribute="bottom" constant="8" id="x1n-Uz-e5W"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
</view>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="o8R-cD-WTy" firstAttribute="width" secondItem="0uF-jB-pU1" secondAttribute="width" id="7wv-s9-z2C"/>
<constraint firstItem="o8R-cD-WTy" firstAttribute="top" secondItem="Ghb-tP-72g" secondAttribute="top" id="DGt-0I-uvZ"/>
<constraint firstAttribute="bottom" secondItem="0uF-jB-pU1" secondAttribute="bottom" id="GmC-ZU-HJX"/>
<constraint firstItem="0uF-jB-pU1" firstAttribute="top" secondItem="Ghb-tP-72g" secondAttribute="top" id="JVp-6B-17T"/>
<constraint firstItem="o8R-cD-WTy" firstAttribute="leading" secondItem="0uF-jB-pU1" secondAttribute="trailing" id="PKV-gN-N3x"/>
<constraint firstAttribute="bottom" secondItem="o8R-cD-WTy" secondAttribute="bottom" id="QzU-gd-PoE"/>
<constraint firstAttribute="trailing" secondItem="o8R-cD-WTy" secondAttribute="trailing" id="RAn-Mh-44b"/>
<constraint firstItem="0uF-jB-pU1" firstAttribute="leading" secondItem="Ghb-tP-72g" secondAttribute="leading" id="gf1-gA-kSp"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
<integer key="value" value="6"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="layer.borderWidth">
<integer key="value" value="1"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="trailing" secondItem="Ghb-tP-72g" secondAttribute="trailing" constant="8" id="0Tc-T2-xBa"/>
<constraint firstAttribute="width" secondItem="evd-YR-GpP" secondAttribute="height" multiplier="375:230" id="4eY-3E-zji"/>
<constraint firstItem="Ghb-tP-72g" firstAttribute="top" secondItem="evd-YR-GpP" secondAttribute="top" constant="8" id="jCO-Nq-jHN"/>
<constraint firstAttribute="bottom" secondItem="Ghb-tP-72g" secondAttribute="bottom" constant="8" id="kRD-fP-4Jt"/>
<constraint firstItem="Ghb-tP-72g" firstAttribute="leading" secondItem="evd-YR-GpP" secondAttribute="leading" constant="8" id="od2-jM-7hy"/>
</constraints>
</view>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="trailing" secondItem="kay-Ql-Q4u" secondAttribute="trailing" id="8SD-Ku-wKV"/>
<constraint firstItem="kay-Ql-Q4u" firstAttribute="top" secondItem="Bhy-Em-Lsy" secondAttribute="bottom" id="A0q-UZ-3c0"/>
<constraint firstAttribute="trailing" secondItem="Bhy-Em-Lsy" secondAttribute="trailing" constant="8" id="AUz-U2-KYy"/>
<constraint firstAttribute="trailing" secondItem="evd-YR-GpP" secondAttribute="trailing" id="BJC-oG-cu7"/>
<constraint firstItem="Bhy-Em-Lsy" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" constant="16" id="Edf-ct-YWL"/>
<constraint firstItem="evd-YR-GpP" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" id="KZv-Zk-DWv"/>
<constraint firstAttribute="bottom" secondItem="evd-YR-GpP" secondAttribute="bottom" constant="-0.5" id="QaL-1H-QL7"/>
<constraint firstItem="Bhy-Em-Lsy" firstAttribute="top" secondItem="H2p-sc-9uM" secondAttribute="top" id="ZB3-X6-FpP"/>
<constraint firstItem="evd-YR-GpP" firstAttribute="top" secondItem="kay-Ql-Q4u" secondAttribute="bottom" constant="0.5" id="arD-or-Jjt"/>
<constraint firstItem="kay-Ql-Q4u" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" id="fQx-Oz-tPS"/>
</constraints>
</tableViewCellContentView>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<viewLayoutGuide key="safeArea" id="njF-e1-oar"/>
<connections>
<outlet property="guideAuthorLabel" destination="Waz-Lf-ctY" id="T4F-L6-HTu"/>
<outlet property="guideContainerView" destination="Ghb-tP-72g" id="aHA-6o-eAq"/>
<outlet property="guideNameLabel" destination="upe-j8-l1G" id="glR-SC-J3U"/>
<outlet property="headerLabel" destination="Bhy-Em-Lsy" id="HCr-bt-obJ"/>
<outlet property="moreButton" destination="88F-wd-Imb" id="f6t-sm-CHR"/>
<outlet property="moreButtonHeightConstraint" destination="rDb-rD-JRG" id="gsR-hZ-ucq"/>
<outlet property="openCatalogButton" destination="ze9-RJ-Rq3" id="8aT-Dt-HuW"/>
<outlet property="placeDescriptionLabel" destination="kpd-Fx-T2M" id="Lxc-RG-H5c"/>
<outlet property="placeImageView" destination="0uF-jB-pU1" id="i7t-iy-IMY"/>
<outlet property="placeTitleLabel" destination="tjG-Xk-PW2" id="CEX-4c-lSg"/>
</connections>
<point key="canvasLocation" x="177.536231884058" y="15.066964285714285"/>
</tableViewCell>
</objects>
</document>

View file

@ -0,0 +1,26 @@
@objc(MWMFacilitiesController)
final class FacilitiesController: MWMTableViewController {
@objc var name: String?
@objc var facilities: [HotelFacility]?
override func viewDidLoad() {
super.viewDidLoad()
tableView.estimatedRowHeight = 44
tableView.rowHeight = UITableView.automaticDimension
tableView.register(cell: FacilityCell.self)
title = name
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
facilities?.count ?? 0
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(cell: FacilityCell.self)!
cell.config(with: facilities![indexPath.row].name)
return cell
}
}

View file

@ -1,10 +0,0 @@
#import "MWMTableViewController.h"
@class HotelFacility;
@interface MWMFacilitiesController : MWMTableViewController
@property(nonatomic, copy) NSString *name;
@property(nonatomic, copy) NSArray<HotelFacility *> *facilities;
@end

View file

@ -1,29 +0,0 @@
#import "MWMFacilitiesController.h"
#import "SwiftBridge.h"
@implementation MWMFacilitiesController
- (void)viewDidLoad {
[super viewDidLoad];
self.tableView.estimatedRowHeight = 44;
self.tableView.rowHeight = UITableViewAutomaticDimension;
[self.tableView registerWithCellClass:[MWMPPFacilityCell class]];
self.title = self.name;
}
#pragma mark - TableView
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.facilities.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
Class cls = [MWMPPFacilityCell class];
MWMPPFacilityCell *c = (MWMPPFacilityCell *)[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath];
[c configWith:self.facilities[indexPath.row].name];
return c;
}
@end

View file

@ -1,9 +0,0 @@
#import "MWMTableViewCell.h"
@protocol MWMPlacePageButtonsProtocol;
@interface MWMPlaceDescriptionCell : MWMTableViewCell
- (void)configureWithDescription:(NSString *)text delegate:(id<MWMPlacePageButtonsProtocol>)delegate;
@end

View file

@ -1,63 +0,0 @@
#import "MWMPlaceDescriptionCell.h"
#import "SwiftBridge.h"
@interface MWMPlaceDescriptionCell ()
@property(weak, nonatomic) IBOutlet UITextView * textView;
@property(copy, nonatomic) NSAttributedString * attributedHTML;
@property(copy, nonatomic) NSString * originalText;
@property(weak, nonatomic) id<MWMPlacePageButtonsProtocol> delegate;
@end
@implementation MWMPlaceDescriptionCell
- (void)configureWithDescription:(NSString *)text delegate:(id<MWMPlacePageButtonsProtocol>)delegate {
self.delegate = delegate;
self.attributedHTML = nil;
self.originalText = text;
self.textView.textContainer.lineBreakMode = NSLineBreakByTruncatingTail;
[self configHTML:text];
}
- (void)configHTML:(NSString *)text {
if (self.attributedHTML) {
if (self.attributedHTML.length <= 500) {
self.textView.attributedText = self.attributedHTML;
} else {
self.textView.attributedText = [self.attributedHTML attributedSubstringFromRange:NSMakeRange(0, 500)];
}
} else {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
UIFont *font = [UIFont regular14];
UIColor *color = [UIColor blackPrimaryText];
NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init];
style.lineSpacing = 4.0;
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithHtmlString:text
baseFont:font
paragraphStyle:style];
if (str) {
[str addAttribute:NSForegroundColorAttributeName value:color range:NSMakeRange(0, str.length)];
self.attributedHTML = str;
} else {
self.attributedHTML =
[[NSAttributedString alloc] initWithString:text
attributes:@{
NSFontAttributeName : font,
NSForegroundColorAttributeName : color,
NSParagraphStyleAttributeName : style
}];
}
dispatch_async(dispatch_get_main_queue(), ^{
[self configHTML:nil];
});
});
}
}
- (IBAction)moreButtonPressed:(UIButton *)sender {
[self.delegate showPlaceDescription:self.originalText];
}
@end

View file

@ -1,81 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="14490.70" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14490.49"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="MWMPlaceDescriptionCell" rowHeight="178" id="Nyp-bg-ADZ" customClass="MWMPlaceDescriptionCell">
<rect key="frame" x="0.0" y="0.0" width="320" height="178"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" ambiguous="YES" tableViewCell="Nyp-bg-ADZ" id="g5P-Il-QmR">
<rect key="frame" x="0.0" y="0.0" width="320" height="177.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" editable="NO" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="HsW-qJ-7Mr">
<rect key="frame" x="16" y="0.0" width="288" height="150"/>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="height" relation="lessThanOrEqual" constant="150" id="Mc2-fE-z2W"/>
</constraints>
<string key="text">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.</string>
<fontDescription key="fontDescription" type="system" pointSize="16"/>
<textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
<dataDetectorType key="dataDetectorTypes" phoneNumber="YES" link="YES"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular16"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
<userDefinedRuntimeAttribute type="number" keyPath="textContainer.lineFragmentPadding">
<integer key="value" value="0"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</textView>
<button opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="VLo-nL-mRa">
<rect key="frame" x="0.0" y="142" width="320" height="33"/>
<constraints>
<constraint firstAttribute="height" constant="33" id="4iI-De-Y6q"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="14"/>
<inset key="contentEdgeInsets" minX="16" minY="0.0" maxX="16" maxY="0.0"/>
<state key="normal" title="more"/>
<state key="highlighted" backgroundImage="dialog_btn_press"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular16"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorHighlightedName" value="linkBlueHighlighted"/>
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="text_more_button"/>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
<connections>
<action selector="moreButtonPressed:" destination="Nyp-bg-ADZ" eventType="touchUpInside" id="7Zx-hs-Qoa"/>
</connections>
</button>
</subviews>
<constraints>
<constraint firstAttribute="trailing" secondItem="VLo-nL-mRa" secondAttribute="trailing" id="Mz6-9x-xsq"/>
<constraint firstItem="HsW-qJ-7Mr" firstAttribute="top" secondItem="g5P-Il-QmR" secondAttribute="top" id="NWs-ed-jxX"/>
<constraint firstAttribute="bottom" secondItem="VLo-nL-mRa" secondAttribute="bottom" id="h2M-Rt-em6"/>
<constraint firstItem="VLo-nL-mRa" firstAttribute="leading" secondItem="g5P-Il-QmR" secondAttribute="leading" id="kJX-Ud-LbI"/>
<constraint firstItem="HsW-qJ-7Mr" firstAttribute="leading" secondItem="g5P-Il-QmR" secondAttribute="leading" constant="16" id="mLz-lf-63L"/>
<constraint firstAttribute="trailing" secondItem="HsW-qJ-7Mr" secondAttribute="trailing" constant="16" id="xN4-ge-7YV"/>
<constraint firstItem="VLo-nL-mRa" firstAttribute="top" secondItem="HsW-qJ-7Mr" secondAttribute="bottom" constant="-8" id="xNE-Tk-ucl"/>
</constraints>
</tableViewCellContentView>
<inset key="separatorInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
<connections>
<outlet property="textView" destination="HsW-qJ-7Mr" id="ayu-qE-r4l"/>
</connections>
<point key="canvasLocation" x="356.80000000000001" y="340.92953523238384"/>
</tableViewCell>
</objects>
<resources>
<image name="dialog_btn_press" width="280" height="44"/>
</resources>
</document>

View file

@ -1,9 +0,0 @@
@class MWMPlacePageData;
@interface MWMOpeningHoursLayoutHelper : NSObject
- (instancetype)initWithTableView:(UITableView *)tableView;
- (void)configWithData:(MWMPlacePageData *)data;
- (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath;
@end

View file

@ -1,268 +0,0 @@
#import "MWMOpeningHoursLayoutHelper.h"
#import <CoreApi/MWMOpeningHours.h>
#import "MWMPlacePageData.h"
#import "MWMTableViewCell.h"
#import "SwiftBridge.h"
@interface MWMPlacePageData()
- (std::vector<place_page::MetainfoRows> &)mutableMetainfoRows;
@end
#pragma mark - _MWMOHHeaderCell
@interface _MWMOHHeaderCell : MWMTableViewCell
@property(weak, nonatomic) IBOutlet UILabel * text;
@property(weak, nonatomic) IBOutlet UIImageView * arrowIcon;
@property(copy, nonatomic) MWMVoidBlock tapAction;
@end
@implementation _MWMOHHeaderCell
- (IBAction)extendTap
{
if (!self.tapAction)
return;
self.tapAction();
[UIView animateWithDuration:kDefaultAnimationDuration
animations:^{
self.arrowIcon.transform =
CGAffineTransformIsIdentity(self.arrowIcon.transform)
? CGAffineTransformMakeRotation(M_PI)
: CGAffineTransformIdentity;
}];
}
@end
#pragma mark - _MWMOHSubCell
@interface _MWMOHSubCell : MWMTableViewCell
@property(weak, nonatomic) IBOutlet UILabel * days;
@property(weak, nonatomic) IBOutlet UILabel * schedule;
@property(weak, nonatomic) IBOutlet UILabel * breaks;
@end
@implementation _MWMOHSubCell
@end
namespace
{
std::array<Class, 2> const kCells = {{[_MWMOHHeaderCell class], [_MWMOHSubCell class]}};
NSAttributedString * richStringFromDay(osmoh::Day const & day, BOOL isClosedNow)
{
auto const richString =
^NSMutableAttributedString *(NSString * str, UIFont * font, UIColor * color)
{
return [[NSMutableAttributedString alloc]
initWithString:str
attributes:@{NSFontAttributeName : font, NSForegroundColorAttributeName : color}];
};
auto str = richString(day.TodayTime(), [UIFont regular17],
day.m_isOpen ? [UIColor blackPrimaryText] : [UIColor red]);
if (day.m_isOpen)
{
auto lineBreak = [[NSAttributedString alloc] initWithString:@"\n"];
if (day.m_breaks.length)
{
[str appendAttributedString:lineBreak];
[str appendAttributedString:richString(day.m_breaks, [UIFont regular13],
[UIColor blackSecondaryText])];
}
if (isClosedNow)
{
[str appendAttributedString:lineBreak];
[str appendAttributedString:richString(L(@"closed_now"), [UIFont regular13], [UIColor red])];
}
auto paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.lineSpacing = 4;
[str addAttributes:@{ NSParagraphStyleAttributeName : paragraphStyle } range:{0, str.length}];
}
return str;
}
} // namespace
@interface MWMOpeningHoursLayoutHelper()
{
std::vector<osmoh::Day> m_days;
}
@property(weak, nonatomic) UITableView * tableView;
@property(weak, nonatomic) MWMPlacePageData * data;
@property(copy, nonatomic) NSString * rawString;
@property(nonatomic) BOOL isClosed;
@property(nonatomic) BOOL isExtended;
@end
@implementation MWMOpeningHoursLayoutHelper
- (instancetype)initWithTableView:(UITableView *)tableView
{
self = [super init];
if (self)
{
_tableView = tableView;
[self registerCells];
}
return self;
}
- (void)registerCells
{
for (Class cls : kCells)
[self.tableView registerWithCellClass:cls];
}
- (void)configWithData:(MWMPlacePageData *)data
{
self.data = data;
self.rawString = [data stringForRow:place_page::MetainfoRows::OpeningHours];
self.isClosed = [data schedule] == place_page::OpeningHours::Closed;
m_days = osmoh::processRawString(self.rawString, nil);
}
- (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
auto tableView = self.tableView;
auto const & day = m_days[indexPath.row];
auto data = self.data;
if ([data metainfoRows][indexPath.row] == place_page::MetainfoRows::OpeningHours)
{
Class cls = [_MWMOHHeaderCell class];
auto cell = static_cast<_MWMOHHeaderCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
if (m_days.size() > 1)
{
__weak auto weakSelf = self;
cell.tapAction = ^{
__strong auto self = weakSelf;
if (!self)
return;
self.isExtended = !self.isExtended;
NSMutableArray<NSIndexPath *> * ip = [@[] mutableCopy];
auto const metainfoSection = [self indexOfMetainfoSection];
if (metainfoSection == NSNotFound)
{
LOG(LERROR, ("Incorrect indexOfMetainfoSection!"));
return;
}
for (auto i = 1; i < self->m_days.size(); i++)
[ip addObject:[NSIndexPath indexPathForRow:i inSection:metainfoSection]];
if (self.isExtended)
{
if ([self extendMetainfoRowsWithSize:ip.count])
{
[tableView insertRowsAtIndexPaths:ip
withRowAnimation:UITableViewRowAnimationLeft];
}
else
{
LOG(LWARNING, ("Incorrect raw opening hours string: ", self.rawString.UTF8String));
}
}
else
{
[self reduceMetainfoRows];
[tableView deleteRowsAtIndexPaths:ip
withRowAnimation:UITableViewRowAnimationLeft];
}
};
cell.arrowIcon.hidden = NO;
}
else
{
cell.tapAction = nil;
cell.arrowIcon.hidden = YES;
}
// This means that we couldn't parse opening hours string.
if (m_days.empty())
cell.text.text = self.rawString;
else
cell.text.attributedText = richStringFromDay(day, self.isClosed);
return cell;
}
else
{
Class cls = [_MWMOHSubCell class];
auto cell = static_cast<_MWMOHSubCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
cell.days.text = day.m_workingDays;
cell.schedule.text = day.m_workingTimes ?: L(@"closed");
cell.breaks.text = day.m_breaks;
return cell;
}
}
- (NSInteger)indexOfMetainfoSection
{
auto data = self.data;
if (!data)
return 0;
auto & sections = [data sections];
auto it = find(sections.begin(), sections.end(), place_page::Sections::Metainfo);
if (it == sections.end())
return NSNotFound;
return distance(sections.begin(), it);
}
- (BOOL)extendMetainfoRowsWithSize:(NSUInteger)size
{
if (size == 0)
{
LOG(LWARNING, ("Incorrect number of days!"));
return NO;
}
auto data = self.data;
if (!data)
return NO;
auto & metainfoRows = [data mutableMetainfoRows];
using place_page::MetainfoRows;
auto it = find(metainfoRows.begin(), metainfoRows.end(), MetainfoRows::OpeningHours);
if (it == metainfoRows.end())
{
LOG(LERROR, ("Incorrect state!"));
return NO;
}
metainfoRows.insert(++it, size, MetainfoRows::ExtendedOpeningHours);
return YES;
}
- (void)reduceMetainfoRows
{
auto data = self.data;
if (!data)
return;
auto & metainfoRows = data.mutableMetainfoRows;
metainfoRows.erase(remove(metainfoRows.begin(), metainfoRows.end(), place_page::MetainfoRows::ExtendedOpeningHours), metainfoRows.end());
}
@end

View file

@ -1,107 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<customFonts key="customFonts">
<array key="HelveticaNeue.ttc">
<string>HelveticaNeue</string>
</array>
</customFonts>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell contentMode="scaleToFill" restorationIdentifier="MWMPlacePageInfoCell" selectionStyle="none" indentationWidth="10" reuseIdentifier="MWMPlacePageInfoCell" id="VAd-kw-ZEC" customClass="MWMPlacePageInfoCell" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="VAd-kw-ZEC" id="KHz-zH-ymS">
<rect key="frame" x="0.0" y="0.0" width="320" height="43.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="xwC-DR-6Il">
<rect key="frame" x="16" y="8" width="28" height="28"/>
<constraints>
<constraint firstAttribute="width" constant="28" id="AMa-Gi-b6E"/>
<constraint firstAttribute="height" constant="28" id="uby-vR-CyI"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="coloring" value="MWMBlack"/>
</userDefinedRuntimeAttributes>
</imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" adjustsFontSizeToFit="NO" preferredMaxLayoutWidth="228" translatesAutoresizingMaskIntoConstraints="NO" id="viE-zJ-wsl" customClass="CopyLabel">
<rect key="frame" x="60" y="12" width="228" height="19"/>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<gestureRecognizers/>
<constraints>
<constraint firstAttribute="height" relation="greaterThanOrEqual" priority="750" constant="20" id="26Z-I0-jym"/>
</constraints>
<fontDescription key="fontDescription" name="HelveticaNeue" family="Helvetica Neue" pointSize="17"/>
<color key="textColor" red="0.12941176469999999" green="0.12941176469999999" blue="0.12941176469999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular16"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
</userDefinedRuntimeAttributes>
</label>
<imageView userInteractionEnabled="NO" contentMode="center" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_placepage_change" translatesAutoresizingMaskIntoConstraints="NO" id="RZw-oW-agi" userLabel="Toggle Image">
<rect key="frame" x="288" y="10" width="24" height="24"/>
<constraints>
<constraint firstAttribute="width" constant="24" id="SvS-KS-WGv"/>
<constraint firstAttribute="height" constant="24" id="eIX-hT-2T8"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="coloring" value="MWMGray"/>
</userDefinedRuntimeAttributes>
</imageView>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="vu9-VL-9jn">
<rect key="frame" x="0.0" y="0.0" width="320" height="43"/>
<state key="normal">
<color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</state>
<connections>
<action selector="cellTap" destination="VAd-kw-ZEC" eventType="touchUpInside" id="eLw-l7-FXA"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstItem="xwC-DR-6Il" firstAttribute="leading" secondItem="KHz-zH-ymS" secondAttribute="leading" constant="16" id="4B0-o5-ixn"/>
<constraint firstAttribute="bottom" secondItem="viE-zJ-wsl" secondAttribute="bottom" constant="12" id="5Me-Rj-yun"/>
<constraint firstAttribute="trailing" secondItem="vu9-VL-9jn" secondAttribute="trailing" id="8ig-bw-zGd"/>
<constraint firstItem="xwC-DR-6Il" firstAttribute="centerY" secondItem="KHz-zH-ymS" secondAttribute="centerY" id="CYL-hn-gD1"/>
<constraint firstAttribute="bottom" secondItem="vu9-VL-9jn" secondAttribute="bottom" id="GwU-YF-i08"/>
<constraint firstItem="viE-zJ-wsl" firstAttribute="top" secondItem="KHz-zH-ymS" secondAttribute="top" constant="12" id="HFr-xw-JHR"/>
<constraint firstItem="viE-zJ-wsl" firstAttribute="leading" secondItem="KHz-zH-ymS" secondAttribute="leading" constant="60" id="OiU-eg-c9z"/>
<constraint firstItem="RZw-oW-agi" firstAttribute="leading" secondItem="viE-zJ-wsl" secondAttribute="trailing" id="b4Y-Av-Oa4"/>
<constraint firstItem="vu9-VL-9jn" firstAttribute="leading" secondItem="KHz-zH-ymS" secondAttribute="leading" id="bwh-x8-HDj"/>
<constraint firstItem="RZw-oW-agi" firstAttribute="centerY" secondItem="KHz-zH-ymS" secondAttribute="centerY" id="ftp-Ze-2yH"/>
<constraint firstItem="vu9-VL-9jn" firstAttribute="top" secondItem="KHz-zH-ymS" secondAttribute="top" id="hAZ-rE-oQa"/>
<constraint firstAttribute="trailing" secondItem="RZw-oW-agi" secondAttribute="trailing" constant="8" id="q5W-GA-34D"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
</tableViewCellContentView>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<gestureRecognizers/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
<connections>
<outlet property="icon" destination="xwC-DR-6Il" id="vcm-nJ-D7N"/>
<outlet property="textContainer" destination="viE-zJ-wsl" id="0bz-b0-s3h"/>
<outlet property="toggleImage" destination="RZw-oW-agi" id="0md-TS-JkM"/>
<outlet property="upperButton" destination="vu9-VL-9jn" id="MPi-9Q-hFZ"/>
</connections>
<point key="canvasLocation" x="120" y="300"/>
</tableViewCell>
</objects>
<resources>
<image name="ic_placepage_change" width="24" height="24"/>
</resources>
</document>

View file

@ -1,72 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell contentMode="scaleToFill" restorationIdentifier="MWMPlacePageLinkCell" selectionStyle="none" indentationWidth="10" reuseIdentifier="MWMPlacePageLinkCell" id="DKh-ne-anv" customClass="MWMPlacePageLinkCell" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="DKh-ne-anv" id="M4j-cz-kSo">
<rect key="frame" x="0.0" y="0.0" width="320" height="43.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="DT5-2i-vCG">
<rect key="frame" x="16" y="8" width="28" height="28"/>
<constraints>
<constraint firstAttribute="width" constant="28" id="vLS-Ha-Cbl"/>
<constraint firstAttribute="height" constant="28" id="vvn-a9-Lfo"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="coloring" value="MWMBlue"/>
</userDefinedRuntimeAttributes>
</imageView>
<textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" editable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="T5l-Sb-Hfo">
<rect key="frame" x="60" y="0.0" width="260" height="44"/>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<string key="text">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.</string>
<fontDescription key="fontDescription" type="system" weight="light" pointSize="16"/>
<textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
<dataDetectorType key="dataDetectorTypes" phoneNumber="YES" link="YES"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="tintColorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular16"/>
</userDefinedRuntimeAttributes>
<connections>
<outlet property="delegate" destination="DKh-ne-anv" id="KQo-Mn-gqx"/>
</connections>
</textView>
</subviews>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstItem="T5l-Sb-Hfo" firstAttribute="leading" secondItem="M4j-cz-kSo" secondAttribute="leading" constant="60" id="9CI-ss-zAr"/>
<constraint firstAttribute="bottom" secondItem="T5l-Sb-Hfo" secondAttribute="bottom" id="Ejg-Ht-2JQ"/>
<constraint firstItem="DT5-2i-vCG" firstAttribute="centerY" secondItem="M4j-cz-kSo" secondAttribute="centerY" id="MX4-xc-kFl"/>
<constraint firstItem="T5l-Sb-Hfo" firstAttribute="top" secondItem="M4j-cz-kSo" secondAttribute="top" id="Vw0-bf-uUe"/>
<constraint firstItem="DT5-2i-vCG" firstAttribute="leading" secondItem="M4j-cz-kSo" secondAttribute="leading" constant="16" id="gle-Hg-xi1"/>
<constraint firstAttribute="trailing" secondItem="T5l-Sb-Hfo" secondAttribute="trailing" id="ot9-cN-XF3"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
</tableViewCellContentView>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
<connections>
<outlet property="icon" destination="DT5-2i-vCG" id="Qu6-7I-lP5"/>
<outlet property="textContainer" destination="T5l-Sb-Hfo" id="K2l-dM-fky"/>
</connections>
<point key="canvasLocation" x="120" y="202"/>
</tableViewCell>
</objects>
</document>

View file

@ -1,18 +0,0 @@
#import "MWMTableViewCell.h"
#import "MWMPlacePageData.h"
@interface MWMPlacePageRegularCell : MWMTableViewCell
- (void)configWithRow:(place_page::MetainfoRows)row data:(MWMPlacePageData *)data;
@property(weak, nonatomic, readonly) IBOutlet UIImageView * icon;
@property(weak, nonatomic, readonly) IBOutlet id textContainer;
@end
@interface MWMPlacePageInfoCell : MWMPlacePageRegularCell
@end
@interface MWMPlacePageLinkCell : MWMPlacePageRegularCell
@end

View file

@ -1,183 +0,0 @@
#import "MWMPlacePageRegularCell.h"
#import "MapViewController.h"
#import "Statistics.h"
#import "UIImageView+Coloring.h"
#include "local_ads/event.hpp"
@interface MWMPlacePageRegularCell ()<UITextViewDelegate>
@property(weak, nonatomic, readwrite) IBOutlet UIImageView * icon;
@property(weak, nonatomic, readwrite) IBOutlet id textContainer;
@property(weak, nonatomic) IBOutlet UIButton * upperButton;
@property(weak, nonatomic) IBOutlet UIImageView * toggleImage;
@property(nonatomic) place_page::MetainfoRows rowType;
@property(weak, nonatomic) MWMPlacePageData * data;
@end
@implementation MWMPlacePageRegularCell
- (void)awakeFromNib
{
[super awakeFromNib];
if ([self.textContainer isKindOfClass:[UITextView class]])
{
UITextView * textView = (UITextView *)self.textContainer;
textView.textContainerInset = {.left = -5, .top = 12, .bottom = 12};
textView.keyboardAppearance =
[UIColor isNightMode] ? UIKeyboardAppearanceDark : UIKeyboardAppearanceDefault;
}
[self.icon layoutIfNeeded];
}
- (void)configWithRow:(place_page::MetainfoRows)row data:(MWMPlacePageData *)data;
{
using place_page::MetainfoRows;
self.rowType = row;
self.data = data;
NSString * name;
switch (row)
{
case MetainfoRows::Address:
self.toggleImage.hidden = YES;
name = @"address";
break;
case MetainfoRows::Phone:
self.toggleImage.hidden = YES;
name = @"phone_number";
break;
case MetainfoRows::Website:
self.toggleImage.hidden = YES;
name = @"website";
break;
case MetainfoRows::Email:
self.toggleImage.hidden = YES;
name = @"email";
break;
case MetainfoRows::Cuisine:
self.toggleImage.hidden = YES;
name = @"cuisine";
break;
case MetainfoRows::Operator:
self.toggleImage.hidden = YES;
name = @"operator";
break;
case MetainfoRows::Internet:
self.toggleImage.hidden = YES;
name = @"wifi";
break;
case MetainfoRows::Coordinate:
self.toggleImage.hidden = NO;
name = @"coordinate";
break;
case MetainfoRows::ExtendedOpeningHours:
case MetainfoRows::OpeningHours:
case MetainfoRows::LocalAdsCandidate:
case MetainfoRows::LocalAdsCustomer: break;
}
[self configWithIconName:name data:[data stringForRow:row]];
}
- (void)configWithIconName:(NSString *)name data:(NSString *)data
{
UIImage * image =
[UIImage imageNamed:[NSString stringWithFormat:@"%@%@", @"ic_placepage_", name]];
self.icon.image = image;
self.icon.mwm_coloring = [self.textContainer isKindOfClass:[UITextView class]]
? MWMImageColoringBlue
: MWMImageColoringBlack;
[self changeText:data];
UILongPressGestureRecognizer * longTap =
[[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longTap:)];
longTap.minimumPressDuration = 0.3;
[self.upperButton addGestureRecognizer:longTap];
}
- (void)changeText:(NSString *)text
{
if ([self.textContainer isKindOfClass:[UITextView class]])
{
UITextView * tv = (UITextView *)self.textContainer;
[tv setAttributedText:[[NSAttributedString alloc]
initWithString:text
attributes:@{NSFontAttributeName : [UIFont regular16]}]];
}
else
{
UILabel * lb = (UILabel *)self.textContainer;
[lb setText:text];
}
}
- (BOOL)textView:(UITextView *)textView
shouldInteractWithURL:(NSURL *)URL
inRange:(NSRange)characterRange
interaction:(UITextItemInteraction)interaction
{
NSString * scheme = URL.scheme;
if ([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"])
{
[[MapViewController sharedController] openUrl:URL];
return NO;
}
return YES;
}
- (IBAction)cellTap
{
using place_page::MetainfoRows;
auto data = self.data;
switch (self.rowType)
{
case MetainfoRows::Phone:
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatCallPhoneNumber)];
[data logLocalAdsEvent:local_ads::EventType::ClickedPhone];
break;
case MetainfoRows::Website:
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatOpenSite)];
[data logLocalAdsEvent:local_ads::EventType::ClickedWebsite];
break;
case MetainfoRows::Email:
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatSendEmail)];
break;
case MetainfoRows::Coordinate:
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatToggleCoordinates)];
[MWMPlacePageData toggleCoordinateSystem];
[self changeText:[data stringForRow:self.rowType]];
break;
case MetainfoRows::ExtendedOpeningHours:
case MetainfoRows::Cuisine:
case MetainfoRows::Operator:
case MetainfoRows::OpeningHours:
case MetainfoRows::Address:
case MetainfoRows::Internet:
case MetainfoRows::LocalAdsCustomer:
case MetainfoRows::LocalAdsCandidate: break;
}
}
- (void)longTap:(UILongPressGestureRecognizer *)sender
{
UIMenuController * menuController = [UIMenuController sharedMenuController];
if (menuController.isMenuVisible)
return;
CGPoint const tapPoint = [sender locationInView:sender.view.superview];
UIView * targetView =
[self.textContainer isKindOfClass:[UITextView class]] ? sender.view : self.textContainer;
UIView * superview = sender.view.superview;
[menuController setTargetRect:CGRectMake(tapPoint.x, targetView.minY, 0., 0.) inView:superview];
[menuController setMenuVisible:YES animated:YES];
[targetView becomeFirstResponder];
[menuController update];
}
@end
@implementation MWMPlacePageInfoCell
@end
@implementation MWMPlacePageLinkCell
@end

View file

@ -1,7 +0,0 @@
typedef NS_ENUM(NSInteger, MWMPlacePageTaxiProvider) {
MWMPlacePageTaxiProviderTaxi,
MWMPlacePageTaxiProviderUber,
MWMPlacePageTaxiProviderYandex,
MWMPlacePageTaxiProviderMaxim,
MWMPlacePageTaxiProviderVezet
};

View file

@ -1,52 +0,0 @@
@objc(MWMPlacePageTaxiCell)
final class PlacePageTaxiCell: MWMTableViewCell {
@IBOutlet private weak var icon: UIImageView!
@IBOutlet private weak var title: UILabel! {
didSet {
title.font = UIFont.bold14()
title.textColor = UIColor.blackPrimaryText()
}
}
@IBOutlet private weak var orderButton: UIButton! {
didSet {
let l = orderButton.layer
l.cornerRadius = 8
l.borderColor = UIColor.linkBlue().cgColor
l.borderWidth = 1
orderButton.setTitle(L("taxi_order"), for: .normal)
orderButton.setTitleColor(UIColor.white, for: .normal)
orderButton.titleLabel?.font = UIFont.bold14()
orderButton.backgroundColor = UIColor.linkBlue()
}
}
private weak var delegate: MWMPlacePageButtonsProtocol!
private var type: MWMPlacePageTaxiProvider!
@objc func config(type: MWMPlacePageTaxiProvider, delegate: MWMPlacePageButtonsProtocol) {
self.delegate = delegate
self.type = type
switch type {
case .taxi:
icon.image = #imageLiteral(resourceName: "icTaxiTaxi")
title.text = L("taxi")
case .uber:
icon.image = #imageLiteral(resourceName: "icTaxiUber")
title.text = L("uber")
case .yandex:
icon.image = #imageLiteral(resourceName: "ic_taxi_logo_yandex")
title.text = L("yandex_taxi_title")
case .maxim:
icon.image = #imageLiteral(resourceName: "ic_taxi_logo_maksim")
title.text = L("maxim_taxi_title")
case .vezet:
icon.image = #imageLiteral(resourceName: "ic_taxi_logo_vezet")
title.text = L("vezet_taxi")
}
}
@IBAction func orderAction() {
// delegate.orderTaxi(type)
}
}

View file

@ -1,69 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" rowHeight="66" id="16z-3Y-tuS" customClass="MWMPlacePageTaxiCell" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="375" height="64"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="16z-3Y-tuS" id="5rg-b2-ZRm">
<rect key="frame" x="0.0" y="0.0" width="375" height="63.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Y6E-Lj-WUA">
<rect key="frame" x="16" y="12" width="40" height="40"/>
<constraints>
<constraint firstAttribute="height" constant="40" id="00V-V7-7X3"/>
<constraint firstAttribute="width" constant="40" id="H0O-6d-RuH"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="coloring" value="MWMBlack"/>
</userDefinedRuntimeAttributes>
</imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Uber" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bRB-nP-rFu">
<rect key="frame" x="72" y="22" width="38" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="501" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="zWn-ti-hGb">
<rect key="frame" x="281" y="13" width="80" height="38"/>
<constraints>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="80" id="EU9-cY-PfD"/>
</constraints>
<inset key="contentEdgeInsets" minX="8" minY="10" maxX="8" maxY="10"/>
<state key="normal" title="Order"/>
<connections>
<action selector="orderAction" destination="16z-3Y-tuS" eventType="touchUpInside" id="aaO-oV-60G"/>
</connections>
</button>
</subviews>
<constraints>
<constraint firstAttribute="trailing" secondItem="zWn-ti-hGb" secondAttribute="trailing" constant="14" id="8tQ-Ph-utT"/>
<constraint firstItem="zWn-ti-hGb" firstAttribute="centerY" secondItem="Y6E-Lj-WUA" secondAttribute="centerY" id="Ail-KT-z9T"/>
<constraint firstItem="Y6E-Lj-WUA" firstAttribute="centerY" secondItem="5rg-b2-ZRm" secondAttribute="centerY" id="CVy-kW-FS0"/>
<constraint firstItem="zWn-ti-hGb" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="bRB-nP-rFu" secondAttribute="trailing" constant="10" id="CXF-0K-kiK"/>
<constraint firstItem="Y6E-Lj-WUA" firstAttribute="leading" secondItem="5rg-b2-ZRm" secondAttribute="leading" constant="16" id="KFV-KV-GfB"/>
<constraint firstItem="bRB-nP-rFu" firstAttribute="leading" secondItem="Y6E-Lj-WUA" secondAttribute="trailing" constant="16" id="b2l-o1-r9W"/>
<constraint firstItem="bRB-nP-rFu" firstAttribute="centerY" secondItem="Y6E-Lj-WUA" secondAttribute="centerY" id="cPH-2g-B9a"/>
<constraint firstItem="zWn-ti-hGb" firstAttribute="top" secondItem="5rg-b2-ZRm" secondAttribute="top" constant="12.5" id="eqw-Bf-Mal"/>
<constraint firstAttribute="bottom" secondItem="zWn-ti-hGb" secondAttribute="bottom" constant="12.5" id="vno-dE-n9V"/>
</constraints>
</tableViewCellContentView>
<connections>
<outlet property="icon" destination="Y6E-Lj-WUA" id="5DU-q1-nkj"/>
<outlet property="orderButton" destination="zWn-ti-hGb" id="ziE-A2-hMD"/>
<outlet property="title" destination="bRB-nP-rFu" id="Bvt-kl-cgG"/>
</connections>
<point key="canvasLocation" x="18.5" y="45"/>
</tableViewCell>
</objects>
</document>

View file

@ -1,98 +0,0 @@
@objc(MWMUGCAddReviewCell)
final class UGCAddReviewCell: MWMTableViewCell {
@IBOutlet private weak var titleLabel: UILabel! {
didSet {
titleLabel.text = L("placepage_rate_comment")
titleLabel.textColor = UIColor.blackPrimaryText()
titleLabel.font = UIFont.medium14()
}
}
@IBOutlet private weak var horribleButton: UIButton! {
didSet {
horribleButton.setImage(#imageLiteral(resourceName: "ic_24px_rating_horrible"), for: .normal)
horribleButton.tintColor = UIColor.ratingRed()
}
}
@IBOutlet private weak var badButton: UIButton! {
didSet {
badButton.setImage(#imageLiteral(resourceName: "ic_24px_rating_bad"), for: .normal)
badButton.tintColor = UIColor.ratingOrange()
}
}
@IBOutlet private weak var normalButton: UIButton! {
didSet {
normalButton.setImage(#imageLiteral(resourceName: "ic_24px_rating_normal"), for: .normal)
normalButton.tintColor = UIColor.ratingYellow()
}
}
@IBOutlet private weak var goodButton: UIButton! {
didSet {
goodButton.setImage(#imageLiteral(resourceName: "ic_24px_rating_good"), for: .normal)
goodButton.tintColor = UIColor.ratingLightGreen()
}
}
@IBOutlet private weak var excellentButton: UIButton! {
didSet {
excellentButton.setImage(#imageLiteral(resourceName: "ic_24px_rating_excellent"), for: .normal)
excellentButton.tintColor = UIColor.ratingGreen()
}
}
@IBOutlet private weak var horribleLabel: UILabel! {
didSet {
horribleLabel.text = L("placepage_rate_horrible")
horribleLabel.textColor = UIColor.blackSecondaryText()
horribleLabel.font = UIFont.medium10()
}
}
@IBOutlet private weak var badLabel: UILabel! {
didSet {
badLabel.text = L("placepage_rate_bad")
badLabel.textColor = UIColor.blackSecondaryText()
badLabel.font = UIFont.medium10()
}
}
@IBOutlet private weak var normalLabel: UILabel! {
didSet {
normalLabel.text = L("placepage_rate_normal")
normalLabel.textColor = UIColor.blackSecondaryText()
normalLabel.font = UIFont.medium10()
}
}
@IBOutlet private weak var goodLabel: UILabel! {
didSet {
goodLabel.text = L("placepage_rate_good")
goodLabel.textColor = UIColor.blackSecondaryText()
goodLabel.font = UIFont.medium10()
}
}
@IBOutlet private weak var excellentLabel: UILabel! {
didSet {
excellentLabel.text = L("placepage_rate_excellent")
excellentLabel.textColor = UIColor.blackSecondaryText()
excellentLabel.font = UIFont.medium10()
}
}
@objc var onRateTap: ((UgcSummaryRatingType) -> Void)!
@IBAction private func rate(_ button: UIButton) {
switch button {
case horribleButton: onRateTap(.horrible)
case badButton: onRateTap(.bad)
case normalButton: onRateTap(.normal)
case goodButton: onRateTap(.good)
case excellentButton: onRateTap(.excellent)
default: assert(false)
}
}
}

View file

@ -1,338 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="15505" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15509"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="UGCAddReviewCell" id="KGk-i7-Jjw" customClass="MWMUGCAddReviewCell">
<rect key="frame" x="0.0" y="0.0" width="320" height="128"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KGk-i7-Jjw" id="H2p-sc-9uM">
<rect key="frame" x="0.0" y="0.0" width="320" height="128"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="O6m-tq-AL7">
<rect key="frame" x="16" y="16" width="288" height="20"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="OWZ-cu-RdT">
<rect key="frame" x="16" y="52" width="288" height="60"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="stA-xC-5jb">
<rect key="frame" x="0.0" y="0.0" width="40" height="60"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="D4Q-0A-Efb">
<rect key="frame" x="0.0" y="0.0" width="40" height="40"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstAttribute="width" secondItem="D4Q-0A-Efb" secondAttribute="height" multiplier="1:1" id="bUS-re-59E"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="blackOpaque"/>
<userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
<integer key="value" value="20"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Horrible" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7eh-cZ-bQ2">
<rect key="frame" x="0.0" y="48" width="40" height="12"/>
<fontDescription key="fontDescription" type="system" weight="medium" pointSize="10"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="horrible"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium10"/>
</userDefinedRuntimeAttributes>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="JsA-OK-Evh">
<rect key="frame" x="0.0" y="0.0" width="40" height="60"/>
<inset key="imageEdgeInsets" minX="0.0" minY="-19" maxX="0.0" maxY="0.0"/>
<state key="normal" image="ic_24px_rating_horrible"/>
<connections>
<action selector="rate:" destination="KGk-i7-Jjw" eventType="touchUpInside" id="krI-QW-xfD"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="D4Q-0A-Efb" firstAttribute="leading" secondItem="stA-xC-5jb" secondAttribute="leading" id="3yG-qO-g25"/>
<constraint firstAttribute="trailing" secondItem="JsA-OK-Evh" secondAttribute="trailing" id="Eby-Ii-Go1"/>
<constraint firstAttribute="trailing" secondItem="D4Q-0A-Efb" secondAttribute="trailing" id="IX8-Ia-ENd"/>
<constraint firstItem="JsA-OK-Evh" firstAttribute="leading" secondItem="stA-xC-5jb" secondAttribute="leading" id="P63-PR-2cU"/>
<constraint firstItem="7eh-cZ-bQ2" firstAttribute="centerX" secondItem="D4Q-0A-Efb" secondAttribute="centerX" id="cVh-li-Kcf"/>
<constraint firstAttribute="bottom" secondItem="7eh-cZ-bQ2" secondAttribute="bottom" id="iXQ-cn-K7Q"/>
<constraint firstItem="JsA-OK-Evh" firstAttribute="top" secondItem="stA-xC-5jb" secondAttribute="top" id="ig5-nk-iNe"/>
<constraint firstItem="D4Q-0A-Efb" firstAttribute="top" secondItem="stA-xC-5jb" secondAttribute="top" id="nts-K9-6KA"/>
<constraint firstAttribute="bottom" secondItem="JsA-OK-Evh" secondAttribute="bottom" id="pTF-5e-F8K"/>
<constraint firstAttribute="width" constant="40" id="tjR-Li-tu4"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="02P-Ht-B8E">
<rect key="frame" x="40" y="0.0" width="84" height="60"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="FR5-Ym-AgZ">
<rect key="frame" x="22" y="0.0" width="40" height="60"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ZfD-kJ-Q3m">
<rect key="frame" x="0.0" y="0.0" width="40" height="40"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstAttribute="width" secondItem="ZfD-kJ-Q3m" secondAttribute="height" multiplier="1:1" id="z0R-9P-1b6"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="blackOpaque"/>
<userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
<integer key="value" value="20"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Bad" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="HDt-VE-NRp">
<rect key="frame" x="10.5" y="48" width="19" height="12"/>
<fontDescription key="fontDescription" type="system" weight="medium" pointSize="10"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ep2-Ms-SEh">
<rect key="frame" x="0.0" y="0.0" width="40" height="60"/>
<inset key="imageEdgeInsets" minX="0.0" minY="-19" maxX="0.0" maxY="0.0"/>
<state key="normal" image="ic_24px_rating_bad"/>
<connections>
<action selector="rate:" destination="KGk-i7-Jjw" eventType="touchUpInside" id="Inx-9h-O5J"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="bottom" secondItem="ep2-Ms-SEh" secondAttribute="bottom" id="3MG-IU-KpZ"/>
<constraint firstItem="HDt-VE-NRp" firstAttribute="centerX" secondItem="ZfD-kJ-Q3m" secondAttribute="centerX" id="5iD-rm-WBO"/>
<constraint firstItem="ep2-Ms-SEh" firstAttribute="leading" secondItem="FR5-Ym-AgZ" secondAttribute="leading" id="G2d-ea-yyg"/>
<constraint firstAttribute="width" constant="40" id="VbC-Ku-HIE"/>
<constraint firstItem="ZfD-kJ-Q3m" firstAttribute="top" secondItem="FR5-Ym-AgZ" secondAttribute="top" id="WnY-aQ-tSv"/>
<constraint firstItem="ZfD-kJ-Q3m" firstAttribute="leading" secondItem="FR5-Ym-AgZ" secondAttribute="leading" id="aq5-bV-5e5"/>
<constraint firstItem="ep2-Ms-SEh" firstAttribute="top" secondItem="FR5-Ym-AgZ" secondAttribute="top" id="mob-uK-Nee"/>
<constraint firstAttribute="trailing" secondItem="ep2-Ms-SEh" secondAttribute="trailing" id="n7A-Jl-VNr"/>
<constraint firstAttribute="bottom" secondItem="HDt-VE-NRp" secondAttribute="bottom" id="nfj-Za-38k"/>
<constraint firstAttribute="trailing" secondItem="ZfD-kJ-Q3m" secondAttribute="trailing" id="slF-sW-NwT"/>
</constraints>
</view>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="FR5-Ym-AgZ" firstAttribute="centerX" secondItem="02P-Ht-B8E" secondAttribute="centerX" id="8Z3-ig-9bW"/>
<constraint firstItem="FR5-Ym-AgZ" firstAttribute="top" secondItem="02P-Ht-B8E" secondAttribute="top" id="DU6-me-Vzd"/>
<constraint firstAttribute="bottom" secondItem="FR5-Ym-AgZ" secondAttribute="bottom" id="a2R-BK-HPC"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="IvZ-jc-I5F">
<rect key="frame" x="124" y="0.0" width="40" height="60"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="3W8-Mg-bTw">
<rect key="frame" x="0.0" y="0.0" width="40" height="40"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstAttribute="width" secondItem="3W8-Mg-bTw" secondAttribute="height" multiplier="1:1" id="qaN-7W-Yvj"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="blackOpaque"/>
<userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
<integer key="value" value="20"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Normal" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vds-hI-dsi">
<rect key="frame" x="2" y="48" width="36" height="12"/>
<fontDescription key="fontDescription" type="system" weight="medium" pointSize="10"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="1kJ-GS-ar5">
<rect key="frame" x="0.0" y="0.0" width="40" height="60"/>
<inset key="imageEdgeInsets" minX="0.0" minY="-19" maxX="0.0" maxY="0.0"/>
<state key="normal" image="ic_24px_rating_normal"/>
<connections>
<action selector="rate:" destination="KGk-i7-Jjw" eventType="touchUpInside" id="SO7-j5-JDT"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="bottom" secondItem="1kJ-GS-ar5" secondAttribute="bottom" id="3Pl-E1-sWV"/>
<constraint firstAttribute="bottom" secondItem="vds-hI-dsi" secondAttribute="bottom" id="ALl-qa-Etd"/>
<constraint firstItem="1kJ-GS-ar5" firstAttribute="top" secondItem="IvZ-jc-I5F" secondAttribute="top" id="GWK-GX-Qd7"/>
<constraint firstAttribute="trailing" secondItem="1kJ-GS-ar5" secondAttribute="trailing" id="Jdk-in-qWM"/>
<constraint firstItem="3W8-Mg-bTw" firstAttribute="top" secondItem="IvZ-jc-I5F" secondAttribute="top" id="OmH-Kk-ABG"/>
<constraint firstItem="3W8-Mg-bTw" firstAttribute="leading" secondItem="IvZ-jc-I5F" secondAttribute="leading" id="cWt-zd-YhL"/>
<constraint firstItem="vds-hI-dsi" firstAttribute="centerX" secondItem="3W8-Mg-bTw" secondAttribute="centerX" id="fcE-RB-6XV"/>
<constraint firstAttribute="trailing" secondItem="3W8-Mg-bTw" secondAttribute="trailing" id="iID-d3-iZ0"/>
<constraint firstAttribute="width" constant="40" id="ihb-jJ-Qmc"/>
<constraint firstItem="1kJ-GS-ar5" firstAttribute="leading" secondItem="IvZ-jc-I5F" secondAttribute="leading" id="sYl-rH-zsf"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="H26-KC-z3X">
<rect key="frame" x="164" y="0.0" width="84" height="60"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ADD-eW-XeA">
<rect key="frame" x="22" y="0.0" width="40" height="60"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="lPm-nd-4qs">
<rect key="frame" x="0.0" y="0.0" width="40" height="40"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstAttribute="width" secondItem="lPm-nd-4qs" secondAttribute="height" multiplier="1:1" id="ROk-bX-OdS"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="blackOpaque"/>
<userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
<integer key="value" value="20"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Good" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ST3-Um-4dH">
<rect key="frame" x="7" y="48" width="26.5" height="12"/>
<fontDescription key="fontDescription" type="system" weight="medium" pointSize="10"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="TJy-zt-WQZ">
<rect key="frame" x="0.0" y="0.0" width="40" height="60"/>
<inset key="imageEdgeInsets" minX="0.0" minY="-19" maxX="0.0" maxY="0.0"/>
<state key="normal" image="ic_24px_rating_good"/>
<connections>
<action selector="rate:" destination="KGk-i7-Jjw" eventType="touchUpInside" id="bj2-A7-l54"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="lPm-nd-4qs" firstAttribute="leading" secondItem="ADD-eW-XeA" secondAttribute="leading" id="0k6-DG-8Ik"/>
<constraint firstAttribute="bottom" secondItem="ST3-Um-4dH" secondAttribute="bottom" id="AaD-yc-kBx"/>
<constraint firstAttribute="trailing" secondItem="TJy-zt-WQZ" secondAttribute="trailing" id="AyO-5j-vbG"/>
<constraint firstItem="TJy-zt-WQZ" firstAttribute="leading" secondItem="ADD-eW-XeA" secondAttribute="leading" id="CUZ-ia-X2S"/>
<constraint firstAttribute="bottom" secondItem="TJy-zt-WQZ" secondAttribute="bottom" id="Cfs-cN-Ky1"/>
<constraint firstItem="lPm-nd-4qs" firstAttribute="top" secondItem="ADD-eW-XeA" secondAttribute="top" id="Fjp-vK-B7c"/>
<constraint firstAttribute="width" constant="40" id="Lcy-vk-DWu"/>
<constraint firstAttribute="trailing" secondItem="lPm-nd-4qs" secondAttribute="trailing" id="Pw5-sQ-9gG"/>
<constraint firstItem="ST3-Um-4dH" firstAttribute="centerX" secondItem="lPm-nd-4qs" secondAttribute="centerX" id="jId-h7-uhO"/>
<constraint firstItem="TJy-zt-WQZ" firstAttribute="top" secondItem="ADD-eW-XeA" secondAttribute="top" id="vk0-tY-py0"/>
</constraints>
</view>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="bottom" secondItem="ADD-eW-XeA" secondAttribute="bottom" id="9ca-9z-eKs"/>
<constraint firstItem="ADD-eW-XeA" firstAttribute="centerX" secondItem="H26-KC-z3X" secondAttribute="centerX" id="BM4-4g-yIH"/>
<constraint firstItem="ADD-eW-XeA" firstAttribute="top" secondItem="H26-KC-z3X" secondAttribute="top" id="YOo-6t-MUW"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="gRX-L4-fra">
<rect key="frame" x="248" y="0.0" width="40" height="60"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="U5X-iD-KyI">
<rect key="frame" x="0.0" y="0.0" width="40" height="40"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstAttribute="width" secondItem="U5X-iD-KyI" secondAttribute="height" multiplier="1:1" id="XZ1-91-XOt"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="blackOpaque"/>
<userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
<integer key="value" value="20"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Excellent" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jqs-rm-LpL">
<rect key="frame" x="-2.5" y="48" width="45" height="12"/>
<fontDescription key="fontDescription" type="system" weight="medium" pointSize="10"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="OEs-63-qBj">
<rect key="frame" x="0.0" y="0.0" width="40" height="60"/>
<inset key="imageEdgeInsets" minX="0.0" minY="-19" maxX="0.0" maxY="0.0"/>
<state key="normal" image="ic_24px_rating_excellent"/>
<connections>
<action selector="rate:" destination="KGk-i7-Jjw" eventType="touchUpInside" id="nZY-v3-ef7"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="U5X-iD-KyI" firstAttribute="top" secondItem="gRX-L4-fra" secondAttribute="top" id="3bl-37-M73"/>
<constraint firstItem="OEs-63-qBj" firstAttribute="top" secondItem="gRX-L4-fra" secondAttribute="top" id="DMK-7d-sZ3"/>
<constraint firstItem="jqs-rm-LpL" firstAttribute="centerX" secondItem="U5X-iD-KyI" secondAttribute="centerX" id="MwL-Cs-dcG"/>
<constraint firstItem="U5X-iD-KyI" firstAttribute="leading" secondItem="gRX-L4-fra" secondAttribute="leading" id="SPN-s1-gov"/>
<constraint firstAttribute="trailing" secondItem="OEs-63-qBj" secondAttribute="trailing" id="VYR-Ob-gOi"/>
<constraint firstAttribute="bottom" secondItem="jqs-rm-LpL" secondAttribute="bottom" id="Vrm-Ux-vVo"/>
<constraint firstAttribute="width" constant="40" id="cqB-mU-Z52"/>
<constraint firstItem="OEs-63-qBj" firstAttribute="leading" secondItem="gRX-L4-fra" secondAttribute="leading" id="jQM-c4-JUP"/>
<constraint firstAttribute="bottom" secondItem="OEs-63-qBj" secondAttribute="bottom" id="lBB-QK-bYB"/>
<constraint firstAttribute="trailing" secondItem="U5X-iD-KyI" secondAttribute="trailing" id="lye-pu-aqc"/>
</constraints>
</view>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="02P-Ht-B8E" firstAttribute="leading" secondItem="stA-xC-5jb" secondAttribute="trailing" id="0Le-I4-1VY"/>
<constraint firstAttribute="bottom" secondItem="H26-KC-z3X" secondAttribute="bottom" id="5cn-Q5-qyf"/>
<constraint firstItem="02P-Ht-B8E" firstAttribute="top" secondItem="OWZ-cu-RdT" secondAttribute="top" id="9c4-sD-M5d"/>
<constraint firstAttribute="bottom" secondItem="gRX-L4-fra" secondAttribute="bottom" id="CC5-Gv-7iu"/>
<constraint firstItem="IvZ-jc-I5F" firstAttribute="centerX" secondItem="OWZ-cu-RdT" secondAttribute="centerX" id="JKc-jA-cgO"/>
<constraint firstAttribute="trailing" secondItem="gRX-L4-fra" secondAttribute="trailing" id="Jmy-6j-AdI"/>
<constraint firstItem="gRX-L4-fra" firstAttribute="top" secondItem="OWZ-cu-RdT" secondAttribute="top" id="NHb-z1-UET"/>
<constraint firstItem="stA-xC-5jb" firstAttribute="leading" secondItem="OWZ-cu-RdT" secondAttribute="leading" id="Odq-9w-jOd"/>
<constraint firstItem="stA-xC-5jb" firstAttribute="top" secondItem="OWZ-cu-RdT" secondAttribute="top" id="PWT-HJ-lT0"/>
<constraint firstAttribute="bottom" secondItem="02P-Ht-B8E" secondAttribute="bottom" id="RZn-7m-TGp"/>
<constraint firstItem="H26-KC-z3X" firstAttribute="top" secondItem="OWZ-cu-RdT" secondAttribute="top" id="aMV-5H-dSg"/>
<constraint firstItem="gRX-L4-fra" firstAttribute="leading" secondItem="H26-KC-z3X" secondAttribute="trailing" id="bh2-HU-EV3"/>
<constraint firstAttribute="bottom" secondItem="stA-xC-5jb" secondAttribute="bottom" id="cRq-QN-KDQ"/>
<constraint firstItem="H26-KC-z3X" firstAttribute="leading" secondItem="IvZ-jc-I5F" secondAttribute="trailing" id="dzP-s9-xBU"/>
<constraint firstAttribute="bottom" secondItem="IvZ-jc-I5F" secondAttribute="bottom" id="igo-WR-EER"/>
<constraint firstAttribute="height" priority="999" constant="60" id="jwR-jn-n5F"/>
<constraint firstItem="IvZ-jc-I5F" firstAttribute="leading" secondItem="02P-Ht-B8E" secondAttribute="trailing" id="uQh-yo-BLa"/>
<constraint firstItem="IvZ-jc-I5F" firstAttribute="top" secondItem="OWZ-cu-RdT" secondAttribute="top" id="vCX-MW-9Cl"/>
</constraints>
</view>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="O6m-tq-AL7" firstAttribute="top" secondItem="H2p-sc-9uM" secondAttribute="top" constant="16" id="4t9-ae-kJg"/>
<constraint firstItem="OWZ-cu-RdT" firstAttribute="top" secondItem="O6m-tq-AL7" secondAttribute="bottom" priority="999" constant="16" id="8gl-1p-y2D"/>
<constraint firstItem="OWZ-cu-RdT" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" constant="16" id="Abu-mW-1qn"/>
<constraint firstItem="O6m-tq-AL7" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" constant="16" id="Grj-Cg-L89"/>
<constraint firstAttribute="bottom" secondItem="OWZ-cu-RdT" secondAttribute="bottom" constant="16" id="Mde-4A-DXt"/>
<constraint firstAttribute="trailing" secondItem="O6m-tq-AL7" secondAttribute="trailing" constant="16" id="nX7-dp-jUf"/>
<constraint firstAttribute="trailing" secondItem="OWZ-cu-RdT" secondAttribute="trailing" constant="16" id="xOk-9V-JMZ"/>
</constraints>
</tableViewCellContentView>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<connections>
<outlet property="badButton" destination="ep2-Ms-SEh" id="yj2-al-f7z"/>
<outlet property="badLabel" destination="HDt-VE-NRp" id="qef-nM-3Of"/>
<outlet property="excellentButton" destination="OEs-63-qBj" id="wbK-O3-tjI"/>
<outlet property="excellentLabel" destination="jqs-rm-LpL" id="ROF-dd-q1f"/>
<outlet property="goodButton" destination="TJy-zt-WQZ" id="xhs-8j-5La"/>
<outlet property="goodLabel" destination="ST3-Um-4dH" id="UP3-WM-VPg"/>
<outlet property="horribleButton" destination="JsA-OK-Evh" id="aYI-JD-BLU"/>
<outlet property="horribleLabel" destination="7eh-cZ-bQ2" id="tm7-IX-IKA"/>
<outlet property="normalButton" destination="1kJ-GS-ar5" id="uVy-98-Arz"/>
<outlet property="normalLabel" destination="vds-hI-dsi" id="gEX-i3-cw4"/>
<outlet property="titleLabel" destination="O6m-tq-AL7" id="VZ0-JQ-m6d"/>
</connections>
<point key="canvasLocation" x="139" y="154"/>
</tableViewCell>
</objects>
<resources>
<image name="ic_24px_rating_bad" width="24" height="24"/>
<image name="ic_24px_rating_excellent" width="24" height="24"/>
<image name="ic_24px_rating_good" width="24" height="24"/>
<image name="ic_24px_rating_horrible" width="24" height="24"/>
<image name="ic_24px_rating_normal" width="24" height="24"/>
</resources>
</document>

View file

@ -1,3 +0,0 @@
@interface CopyLabel : UILabel
@end

View file

@ -1,25 +0,0 @@
#import "CopyLabel.h"
@implementation CopyLabel
- (instancetype)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {
self.userInteractionEnabled = YES;
}
return self;
}
- (BOOL)canBecomeFirstResponder {
return YES;
}
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
return action == @selector(copy:);
}
- (void)copy:(id)sender {
[UIPasteboard generalPasteboard].string = self.text;
}
@end

View file

@ -0,0 +1,13 @@
final class CopyLabel: UILabel {
override var canBecomeFirstResponder: Bool {
true
}
override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
action == #selector(copy(_:))
}
override func copy(_ sender: Any?) {
UIPasteboard.general.string = text
}
}

View file

@ -1,59 +0,0 @@
namespace storage
{
enum class NodeStatus;
} // namespace storage
@protocol MWMPlacePageLayoutDelegate<NSObject>
- (void)onPlacePageTopBoundChanged:(CGFloat)bound;
- (void)destroyLayout;
- (void)closePlacePage;
- (BOOL)isPreviewPlus;
- (void)onExpanded;
- (void)logStateChangeEventWithValue:(NSNumber *)value;
@end
@protocol MWMPlacePageLayoutDataSource<NSObject>
- (NSString *)distanceToObject;
- (void)downloadSelectedArea;
@end
@class MWMPlacePageData, MWMPPView;
@protocol MWMPlacePageButtonsProtocol, MWMActionBarProtocol;
/// Helps with place page view layout and representation
@interface MWMPlacePageLayout : NSObject
- (instancetype)initWithOwnerView:(UIView *)view
delegate:(id<MWMPlacePageLayoutDelegate, MWMPlacePageButtonsProtocol,
MWMActionBarProtocol>)delegate
dataSource:(id<MWMPlacePageLayoutDataSource>)dataSource;
- (void)showWithData:(MWMPlacePageData *)data;
- (void)updateWithData:(MWMPlacePageData *)data;
- (void)close;
- (void)mwm_refreshUI;
- (UIView *)shareAnchor;
- (void)reloadBookmarkSection:(BOOL)isBookmark;
- (void)rotateDirectionArrowToAngle:(CGFloat)angle;
- (void)setDistanceToObject:(NSString *)distance;
- (void)setSpeedAndAltitude:(NSString *)speedAndAltitude;
- (void)processDownloaderEventWithStatus:(storage::NodeStatus)status progress:(CGFloat)progress;
- (void)checkCellsVisible;
- (void)updateAvailableArea:(CGRect)frame;
@end

View file

@ -1,917 +0,0 @@
#import "MWMPlacePageLayout.h"
#import "MWMBookmarkCell.h"
#import "MWMDiscoveryCityGalleryObjects.h"
#import "MWMDiscoveryCollectionView.h"
#import "MWMPlaceDescriptionCell.h"
#import "MWMOpeningHoursLayoutHelper.h"
#import "MWMPPPreviewLayoutHelper.h"
#import "MWMPPReviewCell.h"
#import "MWMPPView.h"
#import "MWMPlacePageButtonCell.h"
#import "MWMPlacePageCellUpdateProtocol.h"
#import "MWMPlacePageData.h"
#import "MWMPlacePageRegularCell.h"
#import "MWMUGCViewModel.h"
#import "MWMiPadPlacePageLayoutImpl.h"
#import "MWMiPhonePlacePageLayoutImpl.h"
#import "MapViewController.h"
#import "SwiftBridge.h"
#include "partners_api/booking_api.hpp"
#import <CoreApi/CoreApi.h>
#import <CoreApi/CatalogPromoItem+Core.h>
namespace
{
using place_page::MetainfoRows;
std::map<MetainfoRows, Class> const kMetaInfoCells = {
{MetainfoRows::Website, [MWMPlacePageLinkCell class]},
{MetainfoRows::Address, [MWMPlacePageInfoCell class]},
{MetainfoRows::Email, [MWMPlacePageLinkCell class]},
{MetainfoRows::Phone, [MWMPlacePageLinkCell class]},
{MetainfoRows::Cuisine, [MWMPlacePageInfoCell class]},
{MetainfoRows::Operator, [MWMPlacePageInfoCell class]},
{MetainfoRows::Coordinate, [MWMPlacePageInfoCell class]},
{MetainfoRows::Internet, [MWMPlacePageInfoCell class]}};
} // namespace
@interface MWMPlacePageLayout ()<UITableViewDataSource,
UICollectionViewDataSource,
UICollectionViewDelegate,
MWMPlacePageCellUpdateProtocol,
MWMPlacePageViewUpdateProtocol>
@property(strong, nonatomic) MWMPlacePageData * data;
@property(weak, nonatomic) UIView * ownerView;
@property(weak, nonatomic)
id<MWMPlacePageLayoutDelegate, MWMPlacePageButtonsProtocol, MWMActionBarProtocol>
delegate;
@property(weak, nonatomic) id<MWMPlacePageLayoutDataSource> dataSource;
@property(nonatomic) IBOutlet MWMPPView * placePageView;
@property(nonatomic) MWMPlacePageActionBar * actionBar;
@property(nonatomic) BOOL isPlacePageButtonsEnabled;
@property(nonatomic) BOOL isDownloaderViewShown;
@property(nonatomic) id<MWMPlacePageLayoutImpl> layoutImpl;
@property(nonatomic) MWMPPPreviewLayoutHelper * previewLayoutHelper;
@property(nonatomic) MWMOpeningHoursLayoutHelper * openingHoursLayoutHelper;
@property(weak, nonatomic) MWMPlacePageTaxiCell * taxiCell;
@property(nonatomic) BOOL buttonsSectionEnabled;
@end
@implementation MWMPlacePageLayout
- (instancetype)initWithOwnerView:(UIView *)view
delegate:(id<MWMPlacePageLayoutDelegate, MWMPlacePageButtonsProtocol,
MWMActionBarProtocol>)delegate
dataSource:(id<MWMPlacePageLayoutDataSource>)dataSource
{
self = [super init];
if (self)
{
_ownerView = view;
_delegate = delegate;
_dataSource = dataSource;
[NSBundle.mainBundle loadNibNamed:[MWMPPView className] owner:self options:nil];
_placePageView.delegate = self;
auto tableView = _placePageView.tableView;
_previewLayoutHelper = [[MWMPPPreviewLayoutHelper alloc] initWithTableView:tableView];
[self registerCells];
}
return self;
}
- (void)registerCells
{
auto tv = self.placePageView.tableView;
[tv registerWithCellClass:[MWMPlacePageButtonCell class]];
[tv registerWithCellClass:[MWMPlaceDescriptionCell class]];
[tv registerWithCellClass:[MWMBookmarkCell class]];
[tv registerWithCellClass:[MWMPPHotelDescriptionCell class]];
[tv registerWithCellClass:[MWMPPHotelCarouselCell class]];
[tv registerWithCellClass:[MWMPPReviewHeaderCell class]];
[tv registerWithCellClass:[MWMPPReviewCell class]];
[tv registerWithCellClass:[MWMPPFacilityCell class]];
[tv registerWithCellClass:[MWMPlacePageTaxiCell class]];
[tv registerWithCellClass:[MWMUGCSummaryRatingCell class]];
[tv registerWithCellClass:[MWMUGCAddReviewCell class]];
[tv registerWithCellClass:[MWMUGCYourReviewCell class]];
[tv registerWithCellClass:[MWMUGCReviewCell class]];
[tv registerWithCellClass:[MWMDiscoveryGuideCollectionHolderCell class]];
[tv registerWithCellClass:[CatalogSingleItemCell class]];
// Register all meta info cells.
for (auto const & pair : kMetaInfoCells)
[tv registerWithCellClass:pair.second];
}
- (UIView *)shareAnchor { return self.actionBar.shareAnchor; }
- (void)showWithData:(MWMPlacePageData *)data
{
self.data = data;
[self.layoutImpl onShow];
[self checkCellsVisible];
dispatch_async(dispatch_get_main_queue(), ^{
[data fillOnlineBookingSections];
[data fillPromoCatalogSection];
});
}
- (void)updateWithData:(MWMPlacePageData *)data;
{
self.data = data;
[self checkCellsVisible];
dispatch_async(dispatch_get_main_queue(), ^{
[data fillOnlineBookingSections];
[data fillPromoCatalogSection];
});
}
- (void)rotateDirectionArrowToAngle:(CGFloat)angle
{
[self.previewLayoutHelper rotateDirectionArrowToAngle:angle];
}
- (void)setDistanceToObject:(NSString *)distance
{
[self.previewLayoutHelper setDistanceToObject:distance];
}
- (void)setSpeedAndAltitude:(NSString *)speedAndAltitude
{
[self.previewLayoutHelper setSpeedAndAltitude:speedAndAltitude];
}
- (void)setButtonsSectionEnabled:(BOOL)buttonsSectionEnabled
{
if (_buttonsSectionEnabled == buttonsSectionEnabled)
return;
_buttonsSectionEnabled = buttonsSectionEnabled;
dispatch_async(dispatch_get_main_queue(), ^{
auto data = self.data;
auto tv = self.placePageView.tableView;
if (!data || !tv)
return;
auto const & sections = data.sections;
auto const it = find(sections.begin(), sections.end(), place_page::Sections::Buttons);
if (it == sections.end())
return;
NSInteger const sectionNumber = distance(sections.begin(), it);
[tv reloadSections:[NSIndexSet indexSetWithIndex:sectionNumber]
withRowAnimation:UITableViewRowAnimationNone];
});
}
- (MWMPlacePageActionBar *)actionBar
{
if (!_actionBar)
{
_actionBar = [MWMPlacePageActionBar actionBarWithDelegate:self.delegate];
self.layoutImpl.actionBar = _actionBar;
}
return _actionBar;
}
- (void)close
{
[self.layoutImpl onClose];
}
- (void)mwm_refreshUI
{
[self.placePageView mwm_refreshUI];
[self.actionBar mwm_refreshUI];
}
- (void)reloadBookmarkSection:(BOOL)isBookmark
{
auto data = self.data;
if (!data)
return;
auto tv = self.placePageView.tableView;
if (!tv)
return;
[tv update:^{
NSUInteger const position = [data bookmarkSectionPosition];
auto set =
[NSIndexSet indexSetWithIndex:position];
if (isBookmark)
[tv insertSections:set withRowAnimation:UITableViewRowAnimationAutomatic];
else
[tv deleteSections:set withRowAnimation:UITableViewRowAnimationAutomatic];
auto const & previewRows = data.previewRows;
auto const previewIT =
std::find(previewRows.cbegin(), previewRows.cend(), place_page::PreviewRows::Subtitle);
if (previewIT != previewRows.cend())
{
auto previewIP =
[NSIndexPath indexPathForRow:std::distance(previewRows.cbegin(), previewIT)
inSection:static_cast<NSInteger>(place_page::Sections::Preview)];
[tv reloadRowsAtIndexPaths:@[ previewIP ] withRowAnimation:UITableViewRowAnimationAutomatic];
}
}];
}
#pragma mark - Downloader event
- (void)processDownloaderEventWithStatus:(storage::NodeStatus)status progress:(CGFloat)progress
{
auto data = self.data;
if (!data)
return;
using namespace storage;
switch (status)
{
case NodeStatus::OnDiskOutOfDate:
case NodeStatus::Undefined:
{
self.buttonsSectionEnabled = NO;
self.actionBar.isAreaNotDownloaded = NO;
break;
}
case NodeStatus::Downloading:
{
self.actionBar.isAreaNotDownloaded = YES;
self.actionBar.downloadingProgress = progress;
break;
}
case NodeStatus::InQueue:
case NodeStatus::Applying:
{
self.actionBar.isAreaNotDownloaded = YES;
self.actionBar.downloadingState = MWMCircularProgressStateSpinner;
break;
}
case NodeStatus::Error:
{
self.actionBar.isAreaNotDownloaded = YES;
self.actionBar.downloadingState = MWMCircularProgressStateFailed;
break;
}
case NodeStatus::OnDisk:
{
self.buttonsSectionEnabled = YES;
self.actionBar.isAreaNotDownloaded = NO;
break;
}
case NodeStatus::Partly:
case NodeStatus::NotDownloaded:
{
self.buttonsSectionEnabled = NO;
self.actionBar.isAreaNotDownloaded = YES;
self.actionBar.downloadingState = MWMCircularProgressStateNormal;
break;
}
}
}
#pragma mark - AvailableArea / PlacePageArea
- (void)updateAvailableArea:(CGRect)frame { [self.layoutImpl updateAvailableArea:frame]; }
#pragma mark - UITableViewDelegate & UITableViewDataSource
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
auto data = self.data;
if (!data)
return 0;
return data.sections.size();
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
using namespace place_page;
auto data = self.data;
if (!data)
return 0;
switch (data.sections[section])
{
case Sections::Bookmark: return 1;
case Sections::Description: return 1;
case Sections::Preview: return data.previewRows.size();
case Sections::Metainfo: return data.metainfoRows.size();
case Sections::Ad: return data.adRows.size();
case Sections::Buttons: return data.buttonsRows.size();
case Sections::HotelPhotos: return data.photosRows.size();
case Sections::HotelDescription: return data.descriptionRows.size();
case Sections::HotelFacilities: return data.hotelFacilitiesRows.size();
case Sections::HotelReviews: return data.hotelReviewsRows.size();
case Sections::UGCRating: return data.ugc.ratingCellsCount;
case Sections::UGCAddReview: return data.ugc.addReviewCellsCount;
case Sections::UGCReviews: return data.ugc.reviewRows.size();
case Sections::PromoCatalog: return 1;
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
using namespace place_page;
auto data = self.data;
if (!data)
return [[UITableViewCell alloc] init];
id<MWMPlacePageButtonsProtocol> delegate = self.delegate;
switch (data.sections[indexPath.section])
{
case Sections::Preview:
{
return [self.previewLayoutHelper cellForRowAtIndexPath:indexPath withData:data];
}
case Sections::Description:
{
Class cls = [MWMPlaceDescriptionCell class];
auto c = (MWMPlaceDescriptionCell *)([tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configureWithDescription:data.placeDescription delegate:delegate];
return c;
}
case Sections::Bookmark:
{
Class cls = [MWMBookmarkCell class];
auto c = static_cast<MWMBookmarkCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configureWithText:data.bookmarkDescription
updateCellDelegate:self
editBookmarkDelegate:delegate
isHTML:data.isHTMLDescription
isEditable:data.isBookmarkEditable];
return c;
}
case Sections::Metainfo:
{
auto const row = data.metainfoRows[indexPath.row];
switch (row)
{
case MetainfoRows::OpeningHours:
case MetainfoRows::ExtendedOpeningHours:
{
auto const & metaInfo = data.metainfoRows;
NSAssert(std::find(metaInfo.cbegin(), metaInfo.cend(), MetainfoRows::OpeningHours) !=
metaInfo.cend(),
@"OpeningHours is not available");
return [self.openingHoursLayoutHelper cellForRowAtIndexPath:indexPath];
}
case MetainfoRows::Phone:
case MetainfoRows::Address:
case MetainfoRows::Website:
case MetainfoRows::Email:
case MetainfoRows::Cuisine:
case MetainfoRows::Operator:
case MetainfoRows::Internet:
case MetainfoRows::Coordinate:
{
Class cls = kMetaInfoCells.at(row);
auto c = static_cast<MWMPlacePageRegularCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configWithRow:row data:data];
return c;
}
case MetainfoRows::LocalAdsCustomer:
case MetainfoRows::LocalAdsCandidate:
{
Class cls = [MWMPlacePageButtonCell class];
auto c = static_cast<MWMPlacePageButtonCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configWithTitle:[data stringForRow:row]
action:^{
[delegate openLocalAdsURL];
}
isInsetButton:NO];
return c;
}
}
}
case Sections::Ad:
{
Class cls = [MWMPlacePageTaxiCell class];
auto c = static_cast<MWMPlacePageTaxiCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
auto const & taxiProviders = [data taxiProviders];
NSAssert(!taxiProviders.empty(), @"TaxiProviders can not be empty");
auto const & provider = taxiProviders.front();
auto type = MWMPlacePageTaxiProviderTaxi;
switch (provider)
{
case taxi::Provider::Uber: type = MWMPlacePageTaxiProviderUber; break;
case taxi::Provider::Yandex: type = MWMPlacePageTaxiProviderYandex; break;
case taxi::Provider::Maxim: type = MWMPlacePageTaxiProviderMaxim; break;
case taxi::Provider::Rutaxi: type = MWMPlacePageTaxiProviderVezet; break;
case taxi::Provider::Count: LOG(LERROR, ("Incorrect taxi provider")); break;
}
[c configWithType:type delegate:delegate];
self.taxiCell = c;
return c;
}
case Sections::Buttons:
{
Class cls = [MWMPlacePageButtonCell class];
auto c = static_cast<MWMPlacePageButtonCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
auto const row = data.buttonsRows[indexPath.row];
__weak __typeof(self) ws = self;
[c configForRow:row withAction:^{
__strong __typeof(self) self = ws;
switch (row)
{
case ButtonsRows::AddPlace: [delegate addPlace]; break;
case ButtonsRows::EditPlace: [delegate editPlace]; break;
case ButtonsRows::AddBusiness: [delegate addBusiness]; break;
case ButtonsRows::HotelDescription: [delegate openDescriptionUrl]; break;
case ButtonsRows::Other: NSAssert(false, @"Incorrect row");
}
}];
// Hotel description button is always enabled.
c.enabled = self.buttonsSectionEnabled || (row == ButtonsRows::HotelDescription);
return c;
}
case Sections::HotelPhotos:
{
Class cls = [MWMPPHotelCarouselCell class];
auto c = static_cast<MWMPPHotelCarouselCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configWith:data.photos delegate:delegate];
return c;
}
case Sections::HotelFacilities:
{
auto const row = data.hotelFacilitiesRows[indexPath.row];
switch (row)
{
case HotelFacilitiesRow::Regular:
{
Class cls = [MWMPPFacilityCell class];
auto c = static_cast<MWMPPFacilityCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configWith:@(data.facilities[indexPath.row].m_name.c_str())];
return c;
}
case HotelFacilitiesRow::ShowMore:
Class cls = [MWMPlacePageButtonCell class];
auto c = static_cast<MWMPlacePageButtonCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configWithTitle:L(@"booking_show_more")
action:^{
[delegate showAllFacilities];
}
isInsetButton:NO];
return c;
}
}
case Sections::HotelReviews:
{
auto const row = data.hotelReviewsRows[indexPath.row];
switch (row)
{
case HotelReviewsRow::Header:
{
Class cls = [MWMPPReviewHeaderCell class];
auto c = static_cast<MWMPPReviewHeaderCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configWithRating:data.bookingRating numberOfReviews:data.numberOfHotelReviews];
return c;
}
case HotelReviewsRow::Regular:
{
Class cls = [MWMPPReviewCell class];
auto c = static_cast<MWMPPReviewCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configWithReview:data.hotelReviews[indexPath.row - 1]];
return c;
}
case HotelReviewsRow::ShowMore:
{
Class cls = [MWMPlacePageButtonCell class];
auto c = static_cast<MWMPlacePageButtonCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configWithTitle:L(@"reviews_on_bookingcom")
action:^{
[delegate openReviewUrl];
}
isInsetButton:NO];
return c;
}
}
}
case Sections::HotelDescription:
{
auto const row = data.descriptionRows[indexPath.row];
switch (row)
{
case HotelDescriptionRow::Regular:
{
Class cls = [MWMPPHotelDescriptionCell class];
auto c = static_cast<MWMPPHotelDescriptionCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configWith:data.hotelDescription delegate:self];
return c;
}
case HotelDescriptionRow::ShowMore:
{
Class cls = [MWMPlacePageButtonCell class];
auto c = static_cast<MWMPlacePageButtonCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configWithTitle:L(@"more_on_bookingcom")
action:^{
[delegate openMoreUrl];
;
}
isInsetButton:NO];
return c;
}
}
}
case Sections::UGCRating:
{
Class cls = [MWMUGCSummaryRatingCell class];
auto c = static_cast<MWMUGCSummaryRatingCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
auto ugc = data.ugc;
[c configWithReviewsCount:[ugc numberOfRatings]
summaryRating:[ugc summaryRating]
ratings:[ugc ratings]];
return c;
}
case Sections::UGCAddReview:
{
Class cls = [MWMUGCAddReviewCell class];
auto c = static_cast<MWMUGCAddReviewCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
c.onRateTap = ^(UgcSummaryRatingType value) {
[delegate showUGCAddReview:value fromSource:MWMUGCReviewSourcePlacePage];
};
return c;
}
case Sections::UGCReviews:
{
auto ugc = data.ugc;
auto const & reviewRows = ugc.reviewRows;
using namespace ugc::view_model;
auto onUpdate = ^{
[tableView refresh];
};
switch (reviewRows[indexPath.row])
{
case ReviewRow::YourReview:
{
Class cls = [MWMUGCYourReviewCell class];
auto c = static_cast<MWMUGCYourReviewCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
auto review = static_cast<MWMUGCYourReview *>([ugc reviewWithIndex:indexPath.row]);
[c configWithYourReview:review
isExpanded:[ugc isExpanded:review]
onUpdate:^{
[ugc markExpanded:review];
onUpdate();
}];
return c;
}
case ReviewRow::Review:
{
Class cls = [MWMUGCReviewCell class];
auto c = static_cast<MWMUGCReviewCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
auto review = static_cast<MWMUGCReview *>([ugc reviewWithIndex:indexPath.row]);
[c configWithReview:review
isExpanded:[ugc isExpanded:review]
onUpdate:^{
[ugc markExpanded:review];
onUpdate();
}];
return c;
}
case ReviewRow::MoreReviews:
{
Class cls = [MWMPlacePageButtonCell class];
auto c = static_cast<MWMPlacePageButtonCell *>(
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath]);
[c configWithTitle:L(@"placepage_more_reviews_button")
action:^{
[delegate openReviews:ugc];
}
isInsetButton:NO];
return c;
}
}
}
case Sections::PromoCatalog:
{
auto rows = self.data.promoCatalogRows;
if (self.data.promoGallery.count == 1) {
CatalogSingleItemCell *cell = (CatalogSingleItemCell *)
[tableView dequeueReusableCellWithCellClass:CatalogSingleItemCell.class indexPath:indexPath];
CatalogPromoItem *item = [[CatalogPromoItem alloc] initWithCoreItem:[data.promoGallery galleryItemAtIndex:0]];
[cell config:item];
__weak __typeof(self) ws = self;
cell.onMore = ^{
__strong __typeof(self) self = ws;
[Statistics logEvent:kStatPlacepageSponsoredItemSelected
withParameters:@{
kStatProvider: kStatMapsmeGuides,
kStatPlacement: [self.data statPlacement],
kStatItem: @(0),
kStatDestination: kStatCatalogue
}];
NSURL *url = [NSURL URLWithString:item.catalogUrl];
NSURL *patchedUrl = [[MWMBookmarksManager sharedManager] injectCatalogUTMContent:url content:MWMUTMContentMore];
[self.delegate openCatalogForURL:patchedUrl];
};
cell.onView = ^{
__strong __typeof(self) self = ws;
[Statistics logEvent:kStatPlacepageSponsoredItemSelected
withParameters:@{
kStatProvider: kStatMapsmeGuides,
kStatPlacement: [self.data statPlacement],
kStatItem: @(0),
kStatDestination: kStatCatalogue
}];
NSURL *url = [NSURL URLWithString:item.catalogUrl];
NSURL *patchedUrl = [[MWMBookmarksManager sharedManager] injectCatalogUTMContent:url content:MWMUTMContentView];
[self.delegate openCatalogForURL:patchedUrl];
};
return cell;
} else {
Class cls = [MWMDiscoveryGuideCollectionHolderCell class];
MWMDiscoveryGuideCollectionHolderCell *cell = (MWMDiscoveryGuideCollectionHolderCell *)
[tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath];
MWMDiscoveryCollectionView *collection = (MWMDiscoveryCollectionView *)cell.collectionView;
[cell config:[NSString stringWithCoreFormat:L(@"pp_discovery_place_related_tag_header")
arguments:@[self.data.promoGallery.tagString]]];
collection.delegate = self;
collection.dataSource = self;
collection.itemType = discovery::ItemType::Promo;
[collection reloadData];
return cell;
}
}
}
}
- (void)checkCellsVisible
{
auto data = self.data;
if (!data)
return;
auto const checkCell = ^(UITableViewCell * cell, MWMVoidBlock onHit) {
if (!cell)
return;
auto taxiBottom = CGPointMake(cell.width / 2, cell.height);
auto mainView = [MapViewController sharedController].controlsView;
auto actionBar = self.actionBar;
BOOL const isInMainView =
[mainView pointInside:[cell convertPoint:taxiBottom toView:mainView] withEvent:nil];
BOOL const isInActionBar =
[actionBar pointInside:[cell convertPoint:taxiBottom toView:actionBar] withEvent:nil];
if (isInMainView && !isInActionBar)
onHit();
};
checkCell(self.taxiCell, ^{
self.taxiCell = nil;
auto const & taxiProviders = [data taxiProviders];
if (taxiProviders.empty())
{
NSAssert(NO, @"Taxi is shown but providers are empty.");
return;
}
NSString * provider = nil;
switch (taxiProviders.front())
{
case taxi::Provider::Uber: provider = kStatUber; break;
case taxi::Provider::Yandex: provider = kStatYandex; break;
case taxi::Provider::Maxim: provider = kStatMaxim; break;
case taxi::Provider::Rutaxi: provider = kStatVezet; break;
case taxi::Provider::Count: LOG(LERROR, ("Incorrect taxi provider")); break;
}
[Statistics logEvent:kStatPlacepageTaxiShow
withParameters:@{kStatProvider: provider, kStatPlacement: kStatPlacePage}];
});
}
#pragma mark - MWMOpeningHoursLayoutHelper
- (MWMOpeningHoursLayoutHelper *)openingHoursLayoutHelper
{
if (!_openingHoursLayoutHelper)
_openingHoursLayoutHelper =
[[MWMOpeningHoursLayoutHelper alloc] initWithTableView:self.placePageView.tableView];
return _openingHoursLayoutHelper;
}
#pragma mark - MWMPlacePageLayoutImpl
- (id<MWMPlacePageLayoutImpl>)layoutImpl
{
if (!_layoutImpl)
{
auto const Impl =
IPAD ? [MWMiPadPlacePageLayoutImpl class] : [MWMiPhonePlacePageLayoutImpl class];
_layoutImpl = [[Impl alloc] initOwnerView:self.ownerView
placePageView:self.placePageView
delegate:self.delegate];
if ([_layoutImpl respondsToSelector:@selector(setPreviewLayoutHelper:)])
[_layoutImpl setPreviewLayoutHelper:self.previewLayoutHelper];
}
return _layoutImpl;
}
#pragma mark - MWMPlacePageCellUpdateProtocol
- (void)cellUpdated
{
auto const update = @selector(update);
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:update object:nil];
[self performSelector:update withObject:nil afterDelay:0.1];
}
- (void)update
{
auto data = self.data;
if (data)
[self.placePageView.tableView refresh];
}
#pragma mark - MWMPlacePageViewUpdateProtocol
- (void)updateLayout
{
auto const sel = @selector(updateContentLayout);
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:sel object:nil];
[self performSelector:sel withObject:nil afterDelay:0.1];
}
- (void)updateContentLayout { [self.layoutImpl updateContentLayout]; }
#pragma mark - Properties
- (void)setData:(MWMPlacePageData *)data
{
if (_data == data)
return;
[NSObject cancelPreviousPerformRequestsWithTarget:self];
_data = data;
if (!data)
return;
__weak __typeof(self) ws = self;
data.refreshPreviewCallback = ^{
__strong __typeof(self) self = ws;
auto tv = self.placePageView.tableView;
[tv reloadSections:[NSIndexSet indexSetWithIndex:0]
withRowAnimation:UITableViewRowAnimationFade];
dispatch_async(dispatch_get_main_queue(), ^{
[self.previewLayoutHelper notifyHeightWashChanded];
});
};
data.sectionsAreReadyCallback = ^(NSRange const & range, MWMPlacePageData * d, BOOL isSection) {
__strong __typeof(self) self = ws;
if (![self.data isEqual:d])
return;
auto tv = self.placePageView.tableView;
if (isSection) {
[tv insertSections:[NSIndexSet indexSetWithIndexesInRange:range]
withRowAnimation:UITableViewRowAnimationAutomatic];
}
else
{
NSMutableArray<NSIndexPath *> * indexPaths = [@[] mutableCopy];
for (auto i = 1; i < range.length + 1; i++)
[indexPaths addObject:[NSIndexPath indexPathForRow:i inSection:range.location]];
[tv insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationAutomatic];
}
};
data.bannerIsReadyCallback = ^{
__strong __typeof(self) self = ws;
[self.previewLayoutHelper insertRowAtTheEnd];
};
data.refreshPromoCallback = ^(NSIndexSet *insertedSections) {
__strong __typeof(self) self = ws;
[self.placePageView.tableView insertSections:insertedSections withRowAnimation:UITableViewRowAnimationNone];
};
[self.actionBar configureWithData:data];
[self.previewLayoutHelper configWithData:data];
auto const & metaInfo = data.metainfoRows;
auto const hasOpeningHours =
std::find(metaInfo.cbegin(), metaInfo.cend(), MetainfoRows::OpeningHours) != metaInfo.cend();
if (hasOpeningHours)
[self.openingHoursLayoutHelper configWithData:data];
[self.placePageView.tableView reloadData];
self.buttonsSectionEnabled = YES;
}
#pragma mark - UICollectionViewDataSource
- (NSInteger)collectionView:(MWMDiscoveryCollectionView *)collectionView
numberOfItemsInSection:(NSInteger)section
{
NSInteger count = self.data.promoGallery.count;
return count > 0 ? count + 1 : 0;
}
- (UICollectionViewCell *)collectionView:(MWMDiscoveryCollectionView *)collectionView
cellForItemAtIndexPath:(NSIndexPath *)indexPath {
auto data = self.data;
if (!data) {
return [[UICollectionViewCell alloc] init];
}
if (indexPath.row == self.data.promoGallery.count) {
Class cls = [MWMDiscoveryMoreCell class];
MWMDiscoveryMoreCell *cell = (MWMDiscoveryMoreCell *)[collectionView
dequeueReusableCellWithCellClass:cls
indexPath:indexPath];
return cell;
}
Class cls = [MWMDiscoveryGuideCell class];
MWMDiscoveryGuideCell *cell = (MWMDiscoveryGuideCell *)
[collectionView dequeueReusableCellWithCellClass:cls indexPath:indexPath];
CatalogPromoItem *objectVM = [self.data guideAtIndex:indexPath.item];
__weak __typeof__(self) weakSelf = self;
[cell configWithAvatarURL:objectVM.imageUrl
title:objectVM.guideName
subtitle:objectVM.guideAuthor
label:objectVM.categoryLabel
labelHexColor:objectVM.hexColor
onDetails:^{
__strong __typeof__(weakSelf) strongSelf = weakSelf;
if (!strongSelf) { return; }
promo::CityGallery::Item const &item = [strongSelf.data.promoGallery galleryItemAtIndex:indexPath.row];
NSString *itemPath = @(item.m_url.c_str());
if (!itemPath || itemPath.length == 0) {
return;
}
NSURL *url = [NSURL URLWithString:itemPath];
[strongSelf.delegate openCatalogForURL:url];
[Statistics logEvent:kStatPlacepageSponsoredItemSelected
withParameters:@{
kStatProvider: kStatMapsmeGuides,
kStatPlacement: kStatPlacePage,
kStatItem: @(indexPath.item + 1),
kStatDestination: kStatCatalogue
}];
}];
return cell;
}
#pragma mark - UICollectionViewDelegate
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.item == self.data.promoGallery.count) {
NSURL *url = [self.data.promoGallery moreURL];
[self.delegate openCatalogForURL:url];
[Statistics logEvent:kStatPlacepageSponsoredMoreSelected
withParameters:@{
kStatProvider: kStatMapsmeGuides,
kStatPlacement: [self.data statPlacement],
}];
} else {
promo::CityGallery::Item const &item = [self.data.promoGallery galleryItemAtIndex:indexPath.row];
NSString *itemPath = @(item.m_url.c_str());
if (!itemPath || itemPath.length == 0) {
return;
}
NSURL *url = [NSURL URLWithString:itemPath];
[self.delegate openCatalogForURL:url];
[Statistics logEvent:kStatPlacepageSponsoredItemSelected
withParameters:@{
kStatProvider: kStatMapsmeGuides,
kStatPlacement: [self.data statPlacement],
kStatItem: @(indexPath.item + 1),
kStatDestination: kStatCatalogue
}];
}
}
@end

View file

@ -1,42 +0,0 @@
#import "MWMPlacePageActionBar.h"
#import "MWMPPView.h"
namespace place_page_layout
{
NSTimeInterval const kAnimationSpeed = IPAD ? 0.15 : 0.25;
inline void animate(MWMVoidBlock animate, MWMVoidBlock completion = nil)
{
[UIView animateWithDuration:kAnimationSpeed
delay:0
options:UIViewAnimationOptionCurveEaseIn
animations:animate
completion:^(BOOL finished) {
if (completion)
completion();
}];
}
} // namepsace place_page_layout
@protocol MWMPlacePageLayoutDelegate;
@class MWMPPPreviewLayoutHelper;
@protocol MWMPlacePageLayoutImpl <NSObject>
- (instancetype)initOwnerView:(UIView *)ownerView
placePageView:(MWMPPView *)placePageView
delegate:(id<MWMPlacePageLayoutDelegate>)delegate;
- (void)onShow;
- (void)onClose;
@property(weak, nonatomic) UIView * ownerView;
@property(weak, nonatomic) MWMPPView * placePageView;
@property(weak, nonatomic) id<MWMPlacePageLayoutDelegate> delegate;
@property(weak, nonatomic) MWMPlacePageActionBar * actionBar;
@optional
- (void)setPreviewLayoutHelper:(MWMPPPreviewLayoutHelper *)layoutHelper;
- (void)updateAvailableArea:(CGRect)frame;
- (void)updateContentLayout;
@end

View file

@ -1,5 +0,0 @@
#import "MWMPlacePageLayoutImpl.h"
@interface MWMiPadPlacePageLayoutImpl : NSObject <MWMPlacePageLayoutImpl>
@end

View file

@ -1,208 +0,0 @@
#import "MWMiPadPlacePageLayoutImpl.h"
#import "MWMPlacePageLayout.h"
#import "SwiftBridge.h"
namespace
{
CGFloat const kPlacePageWidth = 360;
CGFloat const kLeftOffset = 12;
CGFloat const kTopOffset = 36;
CGFloat const kBottomOffset = 36;
} // namespace
@interface MWMiPadPlacePageLayoutImpl ()
@property(nonatomic) CGRect availableArea;
@end
@implementation MWMiPadPlacePageLayoutImpl
@synthesize ownerView = _ownerView;
@synthesize placePageView = _placePageView;
@synthesize delegate = _delegate;
@synthesize actionBar = _actionBar;
- (instancetype)initOwnerView:(UIView *)ownerView
placePageView:(MWMPPView *)placePageView
delegate:(id<MWMPlacePageLayoutDelegate>)delegate
{
self = [super init];
if (self)
{
_ownerView = ownerView;
_availableArea = ownerView.frame;
[self setPlacePageView:placePageView];
_delegate = delegate;
[self addShadow];
}
return self;
}
- (void)addShadow
{
CALayer * layer = self.placePageView.layer;
layer.masksToBounds = NO;
layer.shadowColor = UIColor.blackColor.CGColor;
layer.shadowRadius = 4.;
layer.shadowOpacity = 0.24f;
layer.shadowOffset = {0, -2};
layer.shouldRasterize = YES;
layer.rasterizationScale = [[UIScreen mainScreen] scale];
}
- (void)onShow
{
auto ppView = self.placePageView;
ppView.tableView.scrollEnabled = NO;
ppView.alpha = 0;
ppView.origin = {- kPlacePageWidth, self.topBound};
[self.ownerView addSubview:ppView];
place_page_layout::animate(^{
[self.actionBar setVisible:YES];
ppView.alpha = 1;
ppView.minX = self.leftBound;
});
[self.delegate onExpanded];
}
- (void)onClose
{
auto ppView = self.placePageView;
place_page_layout::animate(
^{
ppView.maxX = 0;
ppView.alpha = 0;
},
^{
self.placePageView = nil;
self.actionBar = nil;
[self.delegate destroyLayout];
});
}
- (void)updateAvailableArea:(CGRect)frame
{
if (CGRectEqualToRect(self.availableArea, frame))
return;
self.availableArea = frame;
[self updateContentLayout];
place_page_layout::animate(^{
self.placePageView.minX = self.leftBound;
});
}
- (void)updateContentLayout
{
auto ppView = self.placePageView;
CGFloat const placePageHeight = ppView.tableView.contentSize.height;
CGFloat const screenHeight = self.availableArea.size.height;
ppView.height = [self actualPlacePageViewHeightWithPlacePageHeight:placePageHeight
screenHeight:screenHeight];
place_page_layout::animate(^{
ppView.minY = self.topBound;
});
}
- (CGFloat)actualPlacePageViewHeightWithPlacePageHeight:(CGFloat)placePageHeight
screenHeight:(CGFloat)screenHeight
{
auto ppView = self.placePageView;
BOOL const isPlacePageWithinScreen = [self isPlacePage:placePageHeight withinScreen:screenHeight];
ppView.tableView.scrollEnabled = !isPlacePageWithinScreen;
return isPlacePageWithinScreen ? placePageHeight + ppView.top.height
: screenHeight - kBottomOffset - kTopOffset;
}
- (BOOL)isPlacePage:(CGFloat)placePageHeight withinScreen:(CGFloat)screenHeight
{
auto const placePageFullHeight = placePageHeight;
auto const availableSpace = screenHeight - kTopOffset - kBottomOffset;
return availableSpace > placePageFullHeight;
}
#pragma mark - Pan
- (void)didPan:(UIPanGestureRecognizer *)pan
{
MWMPPView * view = self.placePageView;
auto superview = view.superview;
CGFloat const leftOffset = self.leftBound;
view.minX += [pan translationInView:superview].x;
view.minX = MIN(view.minX, leftOffset);
[pan setTranslation:CGPointZero inView:superview];
CGFloat const alpha = MAX(0.0, view.maxX) / (view.width + leftOffset);
view.alpha = alpha;
UIGestureRecognizerState const state = pan.state;
if (state == UIGestureRecognizerStateEnded || state == UIGestureRecognizerStateCancelled)
{
CGFloat constexpr designAlpha = 0.8;
if (alpha < designAlpha)
{
[self.delegate closePlacePage];
}
else
{
place_page_layout::animate(^{
view.minX = leftOffset;
view.alpha = 1;
});
}
}
}
#pragma mark - Top and left bound
- (CGFloat)topBound { return self.availableArea.origin.y + kTopOffset; }
- (CGFloat)leftBound { return self.availableArea.origin.x + kLeftOffset; }
#pragma mark - Properties
- (void)setPlacePageView:(MWMPPView *)placePageView
{
if (placePageView)
{
placePageView.width = kPlacePageWidth;
placePageView.anchorImage.hidden = YES;
auto pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(didPan:)];
[placePageView addGestureRecognizer:pan];
}
else
{
[_placePageView removeFromSuperview];
}
_placePageView = placePageView;
}
- (void)setActionBar:(MWMPlacePageActionBar *)actionBar
{
if (actionBar)
{
auto superview = self.placePageView;
[superview addSubview:actionBar];
NSLayoutXAxisAnchor * leadingAnchor = superview.leadingAnchor;
NSLayoutXAxisAnchor * trailingAnchor = superview.trailingAnchor;
if (@available(iOS 11.0, *))
{
UILayoutGuide * safeAreaLayoutGuide = superview.safeAreaLayoutGuide;
leadingAnchor = safeAreaLayoutGuide.leadingAnchor;
trailingAnchor = safeAreaLayoutGuide.trailingAnchor;
}
[actionBar.leadingAnchor constraintEqualToAnchor:leadingAnchor].active = YES;
[actionBar.trailingAnchor constraintEqualToAnchor:trailingAnchor].active = YES;
[actionBar setVisible:NO];
}
else
{
[_actionBar removeFromSuperview];
}
_actionBar = actionBar;
}
@end

View file

@ -1,5 +0,0 @@
#import "MWMPlacePageLayoutImpl.h"
@interface MWMiPhonePlacePageLayoutImpl : NSObject<MWMPlacePageLayoutImpl>
@end

View file

@ -1,374 +0,0 @@
#import "MWMiPhonePlacePageLayoutImpl.h"
#import "MWMPPPreviewLayoutHelper.h"
#import "MWMPlacePageLayout.h"
#import "SwiftBridge.h"
namespace
{
CGFloat const kTopPlacePageStopValue = 0.7;
CGFloat const kExpandedPlacePageStopValue = 0.45;
CGFloat const kLuftDraggingOffset = 30;
// Minimal offset for collapse. If place page offset is below this value we should hide place page.
CGFloat const kMinOffset = 1;
} // namespace
typedef NS_ENUM(NSUInteger, MWMOffsetState) {
MWMOffsetStatePreview,
MWMOffsetStatePreviewPlus,
MWMOffsetStateOpen,
MWMOffsetStateFullScreen
};
typedef NS_ENUM(NSUInteger, MWMScrollDirection) {
MWMScrollDirectionUp,
MWMScrollDirectionDown
};
@interface MWMiPhonePlacePageLayoutImpl ()<UIScrollViewDelegate, UITableViewDelegate,
MWMPPPreviewLayoutHelperDelegate>
@property(nonatomic) MWMPPScrollView * scrollView;
@property(nonatomic) MWMScrollDirection direction;
@property(nonatomic) MWMOffsetState state;
@property(nonatomic) CGFloat lastContentOffset;
@property(weak, nonatomic) MWMPPPreviewLayoutHelper * previewLayoutHelper;
@property(nonatomic) CGRect availableArea;
@property(nonatomic) BOOL isOffsetAnimated;
@property(nonatomic) BOOL beginDragging;
@end
@implementation MWMiPhonePlacePageLayoutImpl
@synthesize ownerView = _ownerView;
@synthesize placePageView = _placePageView;
@synthesize delegate = _delegate;
@synthesize actionBar = _actionBar;
- (instancetype)initOwnerView:(UIView *)ownerView
placePageView:(MWMPPView *)placePageView
delegate:(id<MWMPlacePageLayoutDelegate>)delegate {
self = [super init];
if (self) {
CGSize size = ownerView.size;
_ownerView = ownerView;
_availableArea = ownerView.frame;
_placePageView = placePageView;
placePageView.tableView.delegate = self;
_delegate = delegate;
_beginDragging = NO;
[self setScrollView:[[MWMPPScrollView alloc] initWithFrame:ownerView.frame
inactiveView:placePageView]];
placePageView.frame = {{0, size.height}, size};
}
return self;
}
- (void)onShow {
self.state = [self.delegate isPreviewPlus] ? MWMOffsetStatePreviewPlus : MWMOffsetStatePreview;
auto scrollView = self.scrollView;
[scrollView setContentOffset:{ 0., kMinOffset }];
dispatch_async(dispatch_get_main_queue(), ^{
place_page_layout::animate(^{
[self.actionBar setVisible:YES];
auto const targetOffset =
self.state == MWMOffsetStatePreviewPlus ? self.previewPlusContentOffset : self.previewContentOffset;
[self setAnimatedContentOffset:targetOffset];
});
});
}
- (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.scrollView = nil;
[delegate destroyLayout];
});
}
- (void)updateAvailableArea:(CGRect)frame {
if (CGRectEqualToRect(self.availableArea, frame))
return;
self.availableArea = frame;
UIScrollView * sv = self.scrollView;
sv.delegate = nil;
sv.frame = frame;
sv.delegate = self;
CGSize size = frame.size;
self.placePageView.minY = size.height;
id<MWMPlacePageLayoutDelegate> delegate = self.delegate;
if (delegate == nil) { return; }
[delegate onPlacePageTopBoundChanged:self.scrollView.contentOffset.y];
CGFloat previewOffset = [delegate isPreviewPlus] ? self.previewPlusContentOffset : self.previewContentOffset;
[self setAnimatedContentOffset:(self.state == MWMOffsetStateOpen || self.state == MWMOffsetStateFullScreen) ? self.topContentOffset : previewOffset];
}
- (void)updateContentLayout {
auto const & size = self.availableArea.size;
self.scrollView.contentSize = {size.width, size.height + self.placePageView.height};
}
- (void)setPreviewLayoutHelper:(MWMPPPreviewLayoutHelper *)previewLayoutHelper {
previewLayoutHelper.delegate = self;
_previewLayoutHelper = previewLayoutHelper;
}
#pragma mark - MWMPPPreviewLayoutHelperDelegate
- (void)heightWasChanged {
dispatch_async(dispatch_get_main_queue(), ^{
if (self.state == MWMOffsetStatePreview)
[self setAnimatedContentOffset:self.previewContentOffset];
if (self.state == MWMOffsetStatePreviewPlus)
[self setAnimatedContentOffset:self.previewPlusContentOffset];
});
}
#pragma mark - UIScrollViewDelegate
- (BOOL)isPortrait {
CGSize size = self.ownerView.size;
return size.height > size.width;
}
- (CGFloat)openContentOffset {
CGSize size = self.ownerView.size;
CGFloat offset = self.isPortrait ? MAX(size.width, size.height) : MIN(size.width, size.height);
return offset * kTopPlacePageStopValue;
}
- (CGFloat)topContentOffset {
CGFloat target = self.openContentOffset;
CGFloat ppViewMaxY = self.placePageView.tableView.maxY;
return MIN(target, ppViewMaxY);
}
- (CGFloat)previewPlusContentOffset {
CGSize size = self.ownerView.size;
CGFloat offset = self.isPortrait ? MAX(size.width, size.height) : MIN(size.width, size.height);
CGFloat actionBarHeight = self.actionBar.height;
offset -= actionBarHeight;
CGFloat previewPlusOffset = offset * kExpandedPlacePageStopValue + actionBarHeight;
CGFloat previewOffset = [self previewContentOffset];
if (previewPlusOffset < previewOffset + kLuftDraggingOffset) {
return previewOffset + kLuftDraggingOffset;
}
return previewPlusOffset;
}
- (CGFloat)previewContentOffset {
return self.previewLayoutHelper.height + self.actionBar.height - self.placePageView.top.height;
}
-(void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
self.beginDragging = YES;
}
- (void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView {
dispatch_async(dispatch_get_main_queue(), ^{
self.isOffsetAnimated = NO;
});
}
- (void)scrollViewDidScroll:(MWMPPScrollView *)scrollView {
if (self.isOffsetAnimated || !self.beginDragging)
return;
auto ppView = self.placePageView;
if ([scrollView isEqual:ppView.tableView])
return;
auto const & offsetY = scrollView.contentOffset.y;
id<MWMPlacePageLayoutDelegate> delegate = self.delegate;
if (offsetY <= 0) {
[delegate onPlacePageTopBoundChanged:0];
[delegate closePlacePage];
return;
}
auto const bounded = ppView.height + kLuftDraggingOffset;
if (offsetY > bounded) {
[scrollView setContentOffset:{0, bounded}];
[delegate onPlacePageTopBoundChanged:bounded];
} else {
[delegate onPlacePageTopBoundChanged:offsetY];
}
self.direction = self.lastContentOffset < offsetY ? MWMScrollDirectionUp : MWMScrollDirectionDown;
self.lastContentOffset = offsetY;
}
- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView
withVelocity:(CGPoint)velocity
targetContentOffset:(inout CGPoint *)targetContentOffset {
CGFloat actualOffset = scrollView.contentOffset.y;
CGFloat openOffset = self.openContentOffset;
CGFloat targetOffset = (*targetContentOffset).y;
CGFloat previewOffset = self.previewContentOffset;
CGFloat previewPlusOffset = self.previewPlusContentOffset;
BOOL isPreviewPlus = [self.delegate isPreviewPlus];
if (actualOffset > previewPlusOffset && actualOffset < openOffset) {
if (self.direction == MWMScrollDirectionUp) {
self.state = MWMOffsetStateOpen;
(*targetContentOffset).y = openOffset;
} else {
self.state = isPreviewPlus ? MWMOffsetStatePreviewPlus : MWMOffsetStatePreview;
(*targetContentOffset).y = isPreviewPlus ? previewPlusOffset : previewOffset;
}
} else if (actualOffset > previewOffset && actualOffset < previewPlusOffset) {
if (self.direction == MWMScrollDirectionUp) {
self.state = isPreviewPlus ? MWMOffsetStatePreviewPlus : MWMOffsetStateOpen;
(*targetContentOffset).y = isPreviewPlus ? previewPlusOffset : openOffset;
} else {
self.state = MWMOffsetStatePreview;
(*targetContentOffset).y = previewOffset;
}
} else if (actualOffset > openOffset && targetOffset < openOffset) {
self.state = MWMOffsetStateOpen;
(*targetContentOffset).y = openOffset;
} else if (actualOffset < previewOffset) {
(*targetContentOffset).y = 0;
} else {
self.state = MWMOffsetStateFullScreen;
}
}
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView
willDecelerate:(BOOL)decelerate {
if (decelerate)
return;
CGFloat actualOffset = scrollView.contentOffset.y;
CGFloat openOffset = self.openContentOffset;
CGFloat previewOffset = self.previewContentOffset;
CGFloat previewPlusOffset = self.previewPlusContentOffset;
BOOL isPreviewPlus = [self.delegate isPreviewPlus];
if (actualOffset < previewOffset + kLuftDraggingOffset) {
self.state = MWMOffsetStatePreview;
place_page_layout::animate(^{
[self setAnimatedContentOffset:previewOffset];
});
} else if (actualOffset < previewPlusOffset) {
if (self.direction == MWMScrollDirectionUp) {
self.state = isPreviewPlus ? MWMOffsetStatePreviewPlus : MWMOffsetStateOpen;
place_page_layout::animate(^{
[self setAnimatedContentOffset:isPreviewPlus ? previewPlusOffset : openOffset];
});
} else {
self.state = MWMOffsetStatePreview;
place_page_layout::animate(^{
[self setAnimatedContentOffset:previewOffset];
});
}
} else if (actualOffset < openOffset) {
if (self.direction == MWMScrollDirectionUp) {
self.state = MWMOffsetStateOpen;
place_page_layout::animate(^{
[self setAnimatedContentOffset:openOffset];
});
} else {
self.state = isPreviewPlus ? MWMOffsetStatePreviewPlus : MWMOffsetStatePreview;
place_page_layout::animate(^{
[self setAnimatedContentOffset:isPreviewPlus ? previewPlusOffset : previewOffset];
});
}
} else {
self.state = MWMOffsetStateFullScreen;
}
}
- (void)setState:(MWMOffsetState)state {
if (_state != state) {
NSNumber *value = [NSNumber numberWithUnsignedInteger:state];
[self.delegate logStateChangeEventWithValue:value];
}
_state = state;
BOOL isTop = (state == MWMOffsetStateOpen || self.state == MWMOffsetStateFullScreen);
self.placePageView.anchorImage.transform = isTop ? CGAffineTransformMakeRotation(M_PI)
: CGAffineTransformIdentity;
[self.previewLayoutHelper layoutInOpenState:isTop];
if (isTop)
[self.delegate onExpanded];
}
#pragma mark - UITableViewDelegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.section != 0)
return;
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
if ([cell isKindOfClass:[MWMAdBanner class]]) {
return;
}
CGFloat offset = 0;
if (self.state == MWMOffsetStateOpen || self.state == MWMOffsetStateFullScreen) {
BOOL isPreviewPlus = [self.delegate isPreviewPlus];
self.state = isPreviewPlus ? MWMOffsetStatePreviewPlus : MWMOffsetStatePreview;
offset = isPreviewPlus ? self.previewPlusContentOffset : self.previewContentOffset;
} else {
self.state = MWMOffsetStateOpen;
offset = self.topContentOffset;
}
place_page_layout::animate(^{
[self setAnimatedContentOffset:offset];
});
}
#pragma mark - Properties
- (void)setAnimatedContentOffset:(CGFloat)offset {
self.isOffsetAnimated = YES;
[self.scrollView setContentOffset:{0, offset} animated:YES];
}
- (void)setScrollView:(MWMPPScrollView *)scrollView {
if (scrollView) {
scrollView.delegate = self;
[scrollView addSubview:self.placePageView];
[self.ownerView addSubview:scrollView];
} else {
_scrollView.delegate = nil;
[_scrollView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
[_scrollView removeFromSuperview];
}
_scrollView = scrollView;
}
- (void)setActionBar:(MWMPlacePageActionBar *)actionBar {
if (actionBar) {
UIView *superview = self.ownerView;
[superview addSubview:actionBar];
NSLayoutXAxisAnchor * leadingAnchor = superview.leadingAnchor;
NSLayoutXAxisAnchor * trailingAnchor = superview.trailingAnchor;
if (@available(iOS 11.0, *)) {
UILayoutGuide * safeAreaLayoutGuide = superview.safeAreaLayoutGuide;
leadingAnchor = safeAreaLayoutGuide.leadingAnchor;
trailingAnchor = safeAreaLayoutGuide.trailingAnchor;
}
[actionBar.leadingAnchor constraintEqualToAnchor:leadingAnchor].active = YES;
[actionBar.trailingAnchor constraintEqualToAnchor:trailingAnchor].active = YES;
[actionBar setVisible:NO];
} else {
[_actionBar removeFromSuperview];
}
_actionBar = actionBar;
}
@end

View file

@ -1,28 +0,0 @@
#pragma mark - MWMPPScrollView
@protocol MWMPlacePageViewUpdateProtocol<NSObject>
- (void)updateLayout;
@end
@interface MWMPPScrollView : UIScrollView
- (instancetype)initWithFrame:(CGRect)frame inactiveView:(UIView *)inactiveView;
@property(weak, nonatomic) UIView * inactiveView;
@end
#pragma mark - MWMPPView
@interface MWMPPView : UIView
@property(weak, nonatomic) IBOutlet UIView * top;
@property(weak, nonatomic) IBOutlet UIImageView * anchorImage;
@property(weak, nonatomic) IBOutlet UITableView * tableView;
@property(nonatomic) CGFloat currentContentHeight;
@property(weak, nonatomic) id<MWMPlacePageViewUpdateProtocol> delegate;
@end

View file

@ -1,98 +0,0 @@
#import "MWMPPView.h"
#import "SwiftBridge.h"
namespace
{
// https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/KeyValueObserving/Articles/KVOBasics.html
void * kContext = &kContext;
NSString * const kTableViewContentSizeKeyPath = @"contentSize";
CGFloat const kTableViewTopInset = -36;
} // namespace
#pragma mark - MWMPPScrollView
@implementation MWMPPScrollView
- (instancetype)initWithFrame:(CGRect)frame inactiveView:(UIView *)inactiveView
{
self = [super initWithFrame:frame];
if (self)
{
self.decelerationRate = UIScrollViewDecelerationRateFast;
self.showsVerticalScrollIndicator = NO;
self.clipsToBounds = NO;
_inactiveView = inactiveView;
}
return self;
}
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event
{
UIView * v = self.inactiveView;
return point.y > [self convertRect:v.bounds fromView:v].origin.y;
}
@end
#pragma mark - MWMPPView
@implementation MWMPPView
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context
{
if (context == kContext)
{
NSValue * s = change[@"new"];
CGFloat const height = s.CGSizeValue.height;
if (!equalScreenDimensions(height, self.currentContentHeight) && !self.tableView.scrollEnabled)
{
self.currentContentHeight = height;
self.height = height + self.top.height;
[self setNeedsLayout];
[self.delegate updateLayout];
}
return;
}
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
- (void)awakeFromNib
{
[super awakeFromNib];
[self.tableView addObserver:self
forKeyPath:kTableViewContentSizeKeyPath
options:NSKeyValueObservingOptionNew
context:kContext];
self.tableView.estimatedRowHeight = 44.;
self.tableView.rowHeight = UITableViewAutomaticDimension;
self.tableView.contentInset = {.top = kTableViewTopInset, .bottom = - kTableViewTopInset};
if (IPAD)
self.autoresizingMask = UIViewAutoresizingNone;
}
- (void)dealloc
{
[self.tableView removeObserver:self forKeyPath:kTableViewContentSizeKeyPath context:kContext];
}
#pragma mark - VisibleArea
- (MWMAvailableAreaAffectDirections)visibleAreaAffectDirections
{
return IPAD ? MWMAvailableAreaAffectDirectionsLeft : MWMAvailableAreaAffectDirectionsNone;
}
#pragma mark - AvailableArea / SideButtonsArea
- (MWMAvailableAreaAffectDirections)sideButtonsAreaAffectDirections
{
return IPAD ? MWMAvailableAreaAffectDirectionsNone : MWMAvailableAreaAffectDirectionsBottom;
}
@end

View file

@ -1,98 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="MWMPlacePageLayout">
<connections>
<outlet property="placePageView" destination="iN0-l3-epB" id="x0l-Ky-81P"/>
</connections>
</placeholder>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view contentMode="scaleToFill" id="iN0-l3-epB" customClass="MWMPPView">
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="QNM-4C-tJE">
<rect key="frame" x="-100" y="0.0" width="575" height="767"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="bcQ-R1-NdK">
<rect key="frame" x="0.0" y="0.0" width="375" height="22"/>
<subviews>
<imageView contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_anchor_up" translatesAutoresizingMaskIntoConstraints="NO" id="V1F-KA-EKn">
<rect key="frame" x="176.5" y="8" width="22" height="6"/>
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="width" constant="22" id="2IP-ZM-0Oi"/>
<constraint firstAttribute="height" constant="5.9999999999999964" id="VvK-iM-g12"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="coloring" value="MWMBlack"/>
</userDefinedRuntimeAttributes>
</imageView>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstItem="V1F-KA-EKn" firstAttribute="centerY" secondItem="bcQ-R1-NdK" secondAttribute="centerY" id="OF2-Te-cyR"/>
<constraint firstAttribute="height" priority="750" constant="22" id="PHu-B8-NCa"/>
<constraint firstItem="V1F-KA-EKn" firstAttribute="centerX" secondItem="bcQ-R1-NdK" secondAttribute="centerX" id="Zvg-X0-928"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
</view>
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" style="grouped" allowsSelectionDuringEditing="YES" rowHeight="44" sectionHeaderHeight="1" sectionFooterHeight="18" translatesAutoresizingMaskIntoConstraints="NO" id="Taj-ne-CBp">
<rect key="frame" x="0.0" y="22" width="375" height="645"/>
<color key="backgroundColor" cocoaTouchSystemColor="groupTableViewBackgroundColor"/>
<inset key="separatorInset" minX="60" minY="0.0" maxX="0.0" maxY="0.0"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="pressBackground"/>
</userDefinedRuntimeAttributes>
<connections>
<outlet property="dataSource" destination="-1" id="DCG-Kf-hkI"/>
</connections>
</tableView>
</subviews>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstItem="Taj-ne-CBp" firstAttribute="top" secondItem="bcQ-R1-NdK" secondAttribute="bottom" id="0kd-ul-ZAB"/>
<constraint firstAttribute="trailing" secondItem="Taj-ne-CBp" secondAttribute="trailing" id="Ezh-nM-Lms"/>
<constraint firstItem="Taj-ne-CBp" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" id="FBa-eg-ae8"/>
<constraint firstItem="bcQ-R1-NdK" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" id="JJA-g8-U9d"/>
<constraint firstItem="bcQ-R1-NdK" firstAttribute="top" secondItem="iN0-l3-epB" secondAttribute="top" id="Kcc-bP-Mbu"/>
<constraint firstItem="QNM-4C-tJE" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="-100" id="NWP-bz-eRq">
<variation key="heightClass=regular-widthClass=regular" constant="0.0"/>
</constraint>
<constraint firstAttribute="trailing" secondItem="QNM-4C-tJE" secondAttribute="trailing" constant="-100" id="YnS-K2-eNZ">
<variation key="heightClass=regular-widthClass=regular" constant="0.0"/>
</constraint>
<constraint firstItem="QNM-4C-tJE" firstAttribute="top" secondItem="iN0-l3-epB" secondAttribute="top" id="cab-N1-rKd"/>
<constraint firstAttribute="bottom" secondItem="QNM-4C-tJE" secondAttribute="bottom" constant="-100" id="kFp-6E-9zd">
<variation key="heightClass=regular-widthClass=regular" constant="0.0"/>
</constraint>
<constraint firstAttribute="bottom" secondItem="Taj-ne-CBp" secondAttribute="bottom" id="pAf-8q-58V"/>
<constraint firstAttribute="trailing" secondItem="bcQ-R1-NdK" secondAttribute="trailing" id="zrS-z7-cab"/>
</constraints>
<nil key="simulatedStatusBarMetrics"/>
<connections>
<outlet property="anchorImage" destination="V1F-KA-EKn" id="fNo-v2-XOU"/>
<outlet property="tableView" destination="Taj-ne-CBp" id="rdn-7z-2dz"/>
<outlet property="top" destination="bcQ-R1-NdK" id="3bW-Kf-gmH"/>
</connections>
<point key="canvasLocation" x="139" y="308"/>
</view>
</objects>
<resources>
<image name="ic_anchor_up" width="22" height="6"/>
</resources>
</document>

View file

@ -1,25 +0,0 @@
@class MWMPlacePageData;
@protocol MWMPPPreviewLayoutHelperDelegate<NSObject>
- (void)heightWasChanged;
@end
@interface MWMPPPreviewLayoutHelper : NSObject
- (instancetype)initWithTableView:(UITableView *)tableView;
- (void)configWithData:(MWMPlacePageData *)data;
- (void)setDelegate:(id<MWMPPPreviewLayoutHelperDelegate>)delegate;
- (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath
withData:(MWMPlacePageData *)data;
- (void)rotateDirectionArrowToAngle:(CGFloat)angle;
- (void)setDistanceToObject:(NSString *)distance;
- (void)setSpeedAndAltitude:(NSString *)speedAndAltitude;
- (void)insertRowAtTheEnd;
- (void)notifyHeightWashChanded;
- (CGFloat)height;
- (void)layoutInOpenState:(BOOL)isOpen;
@end

View file

@ -1,439 +0,0 @@
#import "MWMPPPreviewLayoutHelper.h"
#import <Crashlytics/Crashlytics.h>
#import "MWMDirectionView.h"
#import "MWMPlacePageData.h"
#import "MWMPlacePageManagerHelper.h"
#import "MWMTableViewCell.h"
#import "MWMUGCViewModel.h"
#import "Statistics.h"
#import "SwiftBridge.h"
#include <array>
#pragma mark - Base
// Base class for avoiding copy-paste in inheriting cells.
@interface _MWMPPPCellBase : MWMTableViewCell
@property(weak, nonatomic) IBOutlet UILabel * distance;
@property(weak, nonatomic) IBOutlet UIImageView * compass;
@property(weak, nonatomic) IBOutlet UIView * distanceView;
@property(weak, nonatomic) IBOutlet NSLayoutConstraint * trailing;
@property(copy, nonatomic) MWMVoidBlock tapOnDistance;
@end
@implementation _MWMPPPCellBase
- (void)layoutSubviews
{
[super layoutSubviews];
auto const inset = self.width / 2;
self.separatorInset = {0, inset, 0, inset};
}
- (IBAction)tap
{
if (self.tapOnDistance)
self.tapOnDistance();
}
@end
#pragma mark - Title
@interface _MWMPPPTitle : _MWMPPPCellBase
@property(weak, nonatomic) IBOutlet UILabel * title;
@property(weak, nonatomic) IBOutlet UIView * popular;
@property(weak, nonatomic) IBOutlet NSLayoutConstraint * titleTrailing;
@end
@implementation _MWMPPPTitle
- (void)configWithTitle:(NSString *)title popular:(BOOL)popular
{
self.title.text = title;
self.titleTrailing.priority = popular ? UILayoutPriorityDefaultLow : UILayoutPriorityDefaultHigh;
self.popular.hidden = !popular;
[self setNeedsLayout];
}
@end
#pragma mark - External Title
@interface _MWMPPPExternalTitle : _MWMPPPCellBase
@property(weak, nonatomic) IBOutlet UILabel * externalTitle;
@end
@implementation _MWMPPPExternalTitle
@end
#pragma mark - Subtitle
@interface _MWMPPPSubtitle : _MWMPPPCellBase
@property(weak, nonatomic) IBOutlet UILabel * subtitle;
@end
@implementation _MWMPPPSubtitle
@end
#pragma mark - Schedule
@interface _MWMPPPSchedule : _MWMPPPCellBase
@property(weak, nonatomic) IBOutlet UILabel * schedule;
@end
@implementation _MWMPPPSchedule
@end
#pragma mark - Address
@interface _MWMPPPAddress : _MWMPPPCellBase
@property(weak, nonatomic) IBOutlet UILabel * address;
@end
@implementation _MWMPPPAddress
@end
@interface _MWMPPPSpace : _MWMPPPCellBase
@end
@implementation _MWMPPPSpace
@end
namespace
{
std::array<Class, 9> const kPreviewCells = {{[_MWMPPPTitle class],
[_MWMPPPExternalTitle class],
[_MWMPPPSubtitle class],
[_MWMPPPSchedule class],
[MWMPPPReview class],
[MWMPPPSearchSimilarButton class],
[_MWMPPPAddress class],
[_MWMPPPSpace class],
[MWMAdBanner class]}};
} // namespace
@interface MWMPPPreviewLayoutHelper ()
@property(copy, nonatomic) NSString * distance;
@property(copy, nonatomic) NSString * speedAndAltitude;
@property(nonatomic) MWMDirectionView * directionView;
@property(nonatomic) NSUInteger distanceRow;
@property(weak, nonatomic) MWMAdBanner * cachedBannerCell;
@property(weak, nonatomic) MWMPlacePageData * data;
@property(weak, nonatomic) NSLayoutConstraint * distanceCellTrailing;
@property(weak, nonatomic) UIImageView * compass;
@property(weak, nonatomic) UITableView * tableView;
@property(weak, nonatomic) UIView * distanceView;
@property(weak, nonatomic) _MWMPPPSubtitle * cachedSubtitle;
@property(weak, nonatomic) id<MWMPPPreviewLayoutHelperDelegate> delegate;
@end
@implementation MWMPPPreviewLayoutHelper
- (instancetype)initWithTableView:(UITableView *)tableView
{
self = [super init];
if (self)
{
_tableView = tableView;
[self registerCells];
}
return self;
}
- (void)registerCells
{
for (Class cls : kPreviewCells)
[self.tableView registerWithCellClass:cls];
}
- (void)configWithData:(MWMPlacePageData *)data
{
self.data = data;
auto const & previewRows = data.previewRows;
using place_page::PreviewRows;
if (data.isMyPosition || previewRows.size() == 1)
{
self.distanceRow = 0;
}
else
{
auto it = find(previewRows.begin(), previewRows.end(), PreviewRows::Address);
if (it == previewRows.end())
it = find(previewRows.begin(), previewRows.end(), PreviewRows::Subtitle);
if (it != previewRows.end())
self.distanceRow = distance(previewRows.begin(), it);
}
}
- (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath withData:(MWMPlacePageData *)data
{
using namespace place_page;
auto tableView = self.tableView;
auto const row = data.previewRows[indexPath.row];
Class cls = kPreviewCells[base::Underlying(row)];
auto * c = [tableView dequeueReusableCellWithCellClass:cls indexPath:indexPath];
switch(row)
{
case PreviewRows::Title:
[static_cast<_MWMPPPTitle *>(c) configWithTitle:data.title popular:data.isPopular];
break;
case PreviewRows::ExternalTitle:
static_cast<_MWMPPPExternalTitle *>(c).externalTitle.text = data.externalTitle;
break;
case PreviewRows::Subtitle:
{
auto subtitleCell = static_cast<_MWMPPPSubtitle *>(c);
if (data.isMyPosition)
subtitleCell.subtitle.text = self.speedAndAltitude;
else
subtitleCell.subtitle.text = data.subtitle;
self.cachedSubtitle = subtitleCell;
break;
}
case PreviewRows::Schedule:
{
auto scheduleCell = static_cast<_MWMPPPSchedule *>(c);
switch (data.schedule)
{
case place_page::OpeningHours::AllDay:
scheduleCell.schedule.text = L(@"twentyfour_seven");
scheduleCell.schedule.textColor = [UIColor blackSecondaryText];
break;
case place_page::OpeningHours::Open:
scheduleCell.schedule.text = L(@"editor_time_open");
scheduleCell.schedule.textColor = [UIColor blackSecondaryText];
break;
case place_page::OpeningHours::Closed:
scheduleCell.schedule.text = L(@"closed_now");
scheduleCell.schedule.textColor = [UIColor red];
break;
case place_page::OpeningHours::Unknown: NSAssert(false, @"Incorrect schedule!"); break;
}
break;
}
case PreviewRows::Review:
{
auto reviewCell = static_cast<MWMPPPReview *>(c);
if (data.isBooking)
{
auto configCellBlock = ^(MWMPlacePageData *data) {
[reviewCell configWithRating:data.bookingRating
canAddReview:NO
isReviewedByUser:NO
reviewsCount:0
ratingsCount:0
price:data.bookingPricing
discount:data.bookingDiscount
smartDeal:data.isSmartDeal
onAddReview:nil];
};
configCellBlock(data);
__weak __typeof(data) weakData = data;
data.bookingDataUpdatedCallback = ^{
__strong __typeof(weakData) data = weakData;
if (data)
configCellBlock(data);
};
}
else
{
NSAssert(data.ugc, @"");
[reviewCell configWithRating:data.ugc.summaryRating
canAddReview:YES
isReviewedByUser:!data.ugc.isUGCUpdateEmpty
reviewsCount:data.ugc.numberOfReviews
ratingsCount:data.ugc.numberOfRatings
price:@""
discount:0
smartDeal:NO
onAddReview:^{
[MWMPlacePageManagerHelper showUGCAddReview:UgcSummaryRatingTypeNone
fromSource:MWMUGCReviewSourcePlacePagePreview];
}];
}
return reviewCell;
}
case PreviewRows::SearchSimilar:
{
auto searchCell = static_cast<MWMPPPSearchSimilarButton *>(c);
[searchCell configWithTap:^{
[MWMPlacePageManagerHelper searchSimilar];
}];
return searchCell;
}
case PreviewRows::Address:
static_cast<_MWMPPPAddress *>(c).address.text = data.address;
break;
case PreviewRows::Space:
return c;
case PreviewRows::Banner:
auto bannerCell = static_cast<MWMAdBanner *>(c);
[bannerCell configWithAd:data.nativeAd
containerType:MWMAdBannerContainerTypePlacePage
canRemoveAds:[SubscriptionManager canMakePayments]
onRemoveAds: ^{
[[MapViewController sharedController] showRemoveAds];
}];
self.cachedBannerCell = bannerCell;
return bannerCell;
}
auto baseCell = static_cast<_MWMPPPCellBase *>(c);
if (indexPath.row == self.distanceRow)
[self showDistanceOnCell:baseCell withData:data];
else
[self hideDistanceOnCell:baseCell];
return c;
}
- (void)showDistanceOnCell:(_MWMPPPCellBase *)cell withData:(MWMPlacePageData *)data
{
cell.trailing.priority = UILayoutPriorityDefaultLow;
cell.distance.text = self.distance;
auto directionView = self.directionView;
cell.tapOnDistance = ^{
[directionView show];
};
[cell.contentView setNeedsLayout];
self.compass = cell.compass;
self.distanceCellTrailing = cell.trailing;
self.distanceView = cell.distanceView;
cell.distanceView.hidden = NO;
auto dv = self.directionView;
dv.titleLabel.text = data.title;
dv.typeLabel.text = data.subtitle;
dv.distanceLabel.text = self.distance;
}
- (void)hideDistanceOnCell:(_MWMPPPCellBase *)cell
{
cell.trailing.priority = UILayoutPriorityDefaultHigh;
[cell.contentView setNeedsLayout];
cell.distanceView.hidden = YES;
}
- (void)rotateDirectionArrowToAngle:(CGFloat)angle
{
auto const t = CATransform3DMakeRotation(M_PI_2 - angle, 0, 0, 1);
self.compass.layer.transform = t;
self.directionView.directionArrow.layer.transform = t;
}
- (void)setDistanceToObject:(NSString *)distance
{
if (!distance.length || [self.distance isEqualToString:distance])
return;
self.distance = distance;
self.directionView.distanceLabel.text = distance;
}
- (void)setSpeedAndAltitude:(NSString *)speedAndAltitude
{
auto data = self.data;
if (!data)
return;
if ([speedAndAltitude isEqualToString:_speedAndAltitude] || !data.isMyPosition)
return;
_speedAndAltitude = speedAndAltitude;
self.cachedSubtitle.subtitle.text = speedAndAltitude;
}
- (void)insertRowAtTheEnd
{
auto data = self.data;
if (!data)
return;
[self.tableView insertRowsAtIndexPaths:@[ self.lastCellIndexPath ]
withRowAnimation:UITableViewRowAnimationLeft];
[self.delegate heightWasChanged];
}
- (void)notifyHeightWashChanded { [self.delegate heightWasChanged]; }
- (CGFloat)height
{
auto const rect = [self.tableView rectForRowAtIndexPath:self.lastCellIndexPath];
auto const height = rect.origin.y + rect.size.height;
if (!self.lastCellIndexPath)
return height;
auto constexpr gapBannerHeight = 4.0;
CGFloat const excessHeight = self.cachedBannerCell.state == MWMAdBannerStateDetailed
? [MWMAdBanner detailedBannerExcessHeight]
: 0;
CGFloat safeArea = 0.0;
if (@available(iOS 11.0, *)) {
UIWindow *window = UIApplication.sharedApplication.keyWindow;
safeArea = window.safeAreaInsets.bottom;
}
return height + gapBannerHeight - excessHeight + safeArea;
}
- (void)layoutInOpenState:(BOOL)isOpen
{
if (IPAD)
return;
dispatch_async(dispatch_get_main_queue(), ^{
auto data = self.data;
if (!data)
return;
MWMAdBannerState destinationState = isOpen ? MWMAdBannerStateDetailed : MWMAdBannerStateCompact;
if (destinationState != self.cachedBannerCell.state) {
[self.tableView update:^{
self.cachedBannerCell.state = destinationState;
}];
}
});
}
- (MWMDirectionView *)directionView
{
if (!_directionView)
_directionView = [[MWMDirectionView alloc] init];
return _directionView;
}
- (NSIndexPath *)lastCellIndexPath
{
auto data = self.data;
if (!data)
return nil;
return [NSIndexPath indexPathForRow:data.previewRows.size() - 1
inSection:static_cast<NSUInteger>(place_page::Sections::Preview)];
}
- (BOOL)lastCellIsBanner
{
auto data = self.data;
if (!data)
return NO;
return data.previewRows.back() == place_page::PreviewRows::Banner;
}
@end

View file

@ -1,98 +0,0 @@
@objc(MWMPPPReview)
final class PPPReview: MWMTableViewCell {
@IBOutlet private weak var ratingSummaryView: RatingSummaryView!
@IBOutlet private weak var reviewsLabel: UILabel! {
didSet {
reviewsLabel.font = UIFont.regular14()
reviewsLabel.textColor = UIColor.blackSecondaryText()
}
}
@IBOutlet private weak var pricingLabel: UILabel! {
didSet {
pricingLabel.font = UIFont.regular14()
}
}
@IBOutlet private weak var addReviewButton: UIButton! {
didSet {
addReviewButton.backgroundColor = UIColor.linkBlue()
addReviewButton.setTitle("+ \(L("leave_a_review"))", for: .normal)
addReviewButton.setTitleColor(UIColor.white, for: .normal)
addReviewButton.titleLabel?.font = UIFont.bold12()
}
}
@IBOutlet private weak var discountView: UIView!
@IBOutlet private weak var discountLabel: UILabel!
@IBOutlet private weak var priceConstraint: NSLayoutConstraint!
typealias OnAddReview = () -> ()
private var onAddReview: OnAddReview?
@objc func config(rating: UGCRatingValueType,
canAddReview: Bool,
isReviewedByUser: Bool,
reviewsCount: UInt,
ratingsCount: UInt,
price: String,
discount: Int,
smartDeal: Bool,
onAddReview: OnAddReview?) {
self.onAddReview = onAddReview
pricingLabel.text = price
if discount > 0 {
priceConstraint.priority = .defaultLow
discountView.isHidden = false
discountLabel.text = "-\(discount)%"
} else if smartDeal {
priceConstraint.priority = .defaultLow
discountView.isHidden = false
discountLabel.text = "%"
} else {
priceConstraint.priority = .defaultHigh
discountView.isHidden = true
}
ratingSummaryView.textFont = UIFont.bold12()
ratingSummaryView.value = rating.value
ratingSummaryView.type = rating.type
ratingSummaryView.backgroundOpacity = 0.05
if canAddReview && !isReviewedByUser {
addReviewButton.isHidden = false
addReviewButton.layer.cornerRadius = addReviewButton.height / 2
} else {
addReviewButton.isHidden = true
}
pricingLabel.isHidden = true
reviewsLabel.isHidden = false
if rating.type == .none {
if isReviewedByUser {
ratingSummaryView.noValueImage = #imageLiteral(resourceName: "ic_12px_radio_on")
ratingSummaryView.noValueColor = UIColor.linkBlue()
reviewsLabel.text = L("placepage_reviewed")
pricingLabel.isHidden = false
} else {
ratingSummaryView.noValueImage = #imageLiteral(resourceName: "ic_12px_rating_normal")
ratingSummaryView.noValueColor = UIColor.blackSecondaryText()
reviewsLabel.text = reviewsCount == 0 ? L("placepage_no_reviews") : ""
}
} else {
ratingSummaryView.defaultConfig()
reviewsLabel.text = ratingsCount > 0
? String(format:L("placepage_summary_rating_description"), ratingsCount) : ""
pricingLabel.isHidden = false
}
}
@IBAction private func addReview() {
onAddReview?()
}
override func layoutSubviews() {
super.layoutSubviews()
let inset = width / 2
separatorInset = UIEdgeInsets.init(top: 0, left: inset, bottom: 0, right: inset)
}
}

View file

@ -1,158 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="14113" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="PPPReview" id="ngD-jq-BYV" customClass="MWMPPPReview" propertyAccessControl="none">
<rect key="frame" x="0.0" y="0.0" width="320" height="38"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ngD-jq-BYV" id="Zth-C7-aXm">
<rect key="frame" x="0.0" y="0.0" width="320" height="37.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<view contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="67u-jC-41D" customClass="RatingSummaryView" customModule="maps_me" customModuleProvider="target">
<rect key="frame" x="12" y="8" width="48" height="21.5"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstAttribute="width" constant="48" placeholder="YES" id="Ebr-Th-1jm"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="image" keyPath="normalImage" value="ic_12px_rating_normal"/>
<userDefinedRuntimeAttribute type="image" keyPath="excellentImage" value="ic_12px_rating_excellent"/>
<userDefinedRuntimeAttribute type="image" keyPath="goodImage" value="ic_12px_rating_good"/>
<userDefinedRuntimeAttribute type="image" keyPath="horribleImage" value="ic_12px_rating_horrible"/>
<userDefinedRuntimeAttribute type="number" keyPath="topOffset">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="bottomOffset">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="leadingImageOffset">
<real key="value" value="6"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="trailingTextOffset">
<real key="value" value="8"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="margin">
<real key="value" value="8"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="textSize">
<real key="value" value="12"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="image" keyPath="badImage" value="ic_12px_rating_bad"/>
</userDefinedRuntimeAttributes>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="499" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XaG-Vf-CwT">
<rect key="frame" x="64" y="8.5" width="118" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="252" verticalHuggingPriority="252" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Ga0-6D-Ttl">
<rect key="frame" x="186" y="8" width="118" height="21"/>
<inset key="contentEdgeInsets" minX="8" minY="2" maxX="8" maxY="2"/>
<state key="normal" title="+ Leave review"/>
<connections>
<action selector="addReview" destination="ngD-jq-BYV" eventType="touchUpInside" id="P2B-73-A6f"/>
</connections>
</button>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$$$" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Thk-j3-Or0">
<rect key="frame" x="272" y="8" width="32" height="20.5"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium16"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
</userDefinedRuntimeAttributes>
</label>
<imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="separator_image" translatesAutoresizingMaskIntoConstraints="NO" id="t1Z-Sp-Xi5">
<rect key="frame" x="0.0" y="36" width="320" height="1"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="LZA-3w-U5e"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="coloring" value="MWMSeparator"/>
</userDefinedRuntimeAttributes>
</imageView>
<view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="vIX-W5-Cye">
<rect key="frame" x="308" y="8" width="20" height="20"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="%" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="aAP-XV-Kvr">
<rect key="frame" x="4" y="0.0" width="12" height="20"/>
<fontDescription key="fontDescription" type="system" weight="medium" pointSize="12"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium12"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="white"/>
</userDefinedRuntimeAttributes>
</label>
</subviews>
<color key="backgroundColor" red="0.11764705882352941" green="0.58823529411764708" blue="0.93983289930555558" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstItem="aAP-XV-Kvr" firstAttribute="leading" secondItem="vIX-W5-Cye" secondAttribute="leading" constant="4" id="3Pt-fd-pmF"/>
<constraint firstItem="aAP-XV-Kvr" firstAttribute="top" secondItem="vIX-W5-Cye" secondAttribute="top" id="bQK-Uk-ysY"/>
<constraint firstAttribute="trailing" secondItem="aAP-XV-Kvr" secondAttribute="trailing" constant="4" id="efu-kY-HDe"/>
<constraint firstAttribute="bottom" secondItem="aAP-XV-Kvr" secondAttribute="bottom" id="kHg-Mm-xD9"/>
<constraint firstAttribute="height" constant="20" id="qsl-RB-coa"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="20" id="r42-aa-VVp"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
<integer key="value" value="10"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
</subviews>
<constraints>
<constraint firstItem="XaG-Vf-CwT" firstAttribute="centerY" secondItem="67u-jC-41D" secondAttribute="centerY" id="3GU-pM-RQN"/>
<constraint firstItem="t1Z-Sp-Xi5" firstAttribute="leading" secondItem="Zth-C7-aXm" secondAttribute="leading" id="5Qx-I3-eeG"/>
<constraint firstAttribute="trailing" secondItem="vIX-W5-Cye" secondAttribute="trailing" priority="500" constant="16" id="5eo-tK-JDz"/>
<constraint firstItem="67u-jC-41D" firstAttribute="top" secondItem="Zth-C7-aXm" secondAttribute="top" constant="8" id="9Jf-DS-dPe"/>
<constraint firstItem="vIX-W5-Cye" firstAttribute="leading" secondItem="Thk-j3-Or0" secondAttribute="trailing" constant="4" id="9xP-tn-wsL"/>
<constraint firstItem="Ga0-6D-Ttl" firstAttribute="trailing" secondItem="Thk-j3-Or0" secondAttribute="trailing" id="AEw-hx-uNc"/>
<constraint firstAttribute="bottom" secondItem="t1Z-Sp-Xi5" secondAttribute="bottom" id="MXa-Ha-DVe"/>
<constraint firstItem="Thk-j3-Or0" firstAttribute="centerY" secondItem="Zth-C7-aXm" secondAttribute="centerY" id="NbS-0e-2Dh"/>
<constraint firstItem="Ga0-6D-Ttl" firstAttribute="leading" secondItem="XaG-Vf-CwT" secondAttribute="trailing" constant="4" id="VnS-wf-vtj"/>
<constraint firstAttribute="trailing" secondItem="t1Z-Sp-Xi5" secondAttribute="trailing" id="Ygd-7d-cGu"/>
<constraint firstItem="vIX-W5-Cye" firstAttribute="centerY" secondItem="Zth-C7-aXm" secondAttribute="centerY" id="a4A-Q9-KmJ"/>
<constraint firstAttribute="bottom" secondItem="67u-jC-41D" secondAttribute="bottom" constant="8" id="dOX-Tv-3un"/>
<constraint firstAttribute="trailing" secondItem="Thk-j3-Or0" secondAttribute="trailing" priority="750" constant="16" id="dgG-Cd-fzs"/>
<constraint firstItem="Ga0-6D-Ttl" firstAttribute="top" secondItem="67u-jC-41D" secondAttribute="top" id="hGC-mM-qmJ"/>
<constraint firstItem="Ga0-6D-Ttl" firstAttribute="bottom" secondItem="67u-jC-41D" secondAttribute="bottom" id="j4s-Yj-bcx"/>
<constraint firstItem="XaG-Vf-CwT" firstAttribute="leading" secondItem="67u-jC-41D" secondAttribute="trailing" constant="4" id="mto-4q-X6o"/>
<constraint firstItem="67u-jC-41D" firstAttribute="leading" secondItem="Zth-C7-aXm" secondAttribute="leading" constant="12" id="u0I-Zd-9bf"/>
</constraints>
</tableViewCellContentView>
<inset key="separatorInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
<connections>
<outlet property="addReviewButton" destination="Ga0-6D-Ttl" id="v9f-j8-mrO"/>
<outlet property="discountLabel" destination="aAP-XV-Kvr" id="268-Z8-9DU"/>
<outlet property="discountView" destination="vIX-W5-Cye" id="bw8-BM-fQL"/>
<outlet property="priceConstraint" destination="dgG-Cd-fzs" id="Ui6-TV-TfH"/>
<outlet property="pricingLabel" destination="Thk-j3-Or0" id="4Ai-fq-liR"/>
<outlet property="ratingSummaryView" destination="67u-jC-41D" id="4Zo-W4-dVh"/>
<outlet property="reviewsLabel" destination="XaG-Vf-CwT" id="h9W-nL-FiQ"/>
</connections>
<point key="canvasLocation" x="327" y="795"/>
</tableViewCell>
</objects>
<resources>
<image name="ic_12px_rating_bad" width="12" height="12"/>
<image name="ic_12px_rating_excellent" width="12" height="12"/>
<image name="ic_12px_rating_good" width="12" height="12"/>
<image name="ic_12px_rating_horrible" width="12" height="12"/>
<image name="ic_12px_rating_normal" width="12" height="12"/>
<image name="separator_image" width="1" height="1"/>
</resources>
</document>

View file

@ -1,20 +0,0 @@
@objc(MWMPPPSearchSimilarButton)
final class PPPSearchSimilarButton: MWMTableViewCell {
typealias TapCallback = () -> Void
private var callback: TapCallback?
@objc func config(tap: @escaping TapCallback) {
callback = tap
}
@IBAction private func tap() {
callback?()
}
override func layoutSubviews() {
super.layoutSubviews()
let inset = width / 2
separatorInset = UIEdgeInsets.init(top: 0, left: inset, bottom: 0, right: inset)
}
}

View file

@ -1,55 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" rowHeight="37" id="LrV-a8-QE3" customClass="MWMPPPSearchSimilarButton">
<rect key="frame" x="0.0" y="0.0" width="375" height="37"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="LrV-a8-QE3" id="RxM-lf-fTY">
<rect key="frame" x="0.0" y="0.0" width="375" height="36.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Nav-sJ-aRi">
<rect key="frame" x="16" y="0.0" width="343" height="36"/>
<constraints>
<constraint firstAttribute="height" constant="36" id="RJY-zu-7if"/>
</constraints>
<state key="normal" title="Button"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorName" value="whitePrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="textColorHighlightedName" value="whitePrimaryTextHighlighted"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium14"/>
<userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
<integer key="value" value="6"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="boolean" keyPath="clipsToBounds" value="YES"/>
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="place_page_search_similar_hotel"/>
</userDefinedRuntimeAttributes>
<connections>
<action selector="tap" destination="LrV-a8-QE3" eventType="touchUpInside" id="Sbe-cQ-vld"/>
</connections>
</button>
</subviews>
<constraints>
<constraint firstAttribute="trailing" secondItem="Nav-sJ-aRi" secondAttribute="trailing" constant="16" id="8VG-y9-wXL"/>
<constraint firstItem="Nav-sJ-aRi" firstAttribute="top" secondItem="RxM-lf-fTY" secondAttribute="top" id="cmp-yG-aww"/>
<constraint firstAttribute="bottom" secondItem="Nav-sJ-aRi" secondAttribute="bottom" priority="750" constant="0.5" id="iGM-6r-cPl"/>
<constraint firstItem="Nav-sJ-aRi" firstAttribute="leading" secondItem="RxM-lf-fTY" secondAttribute="leading" constant="16" id="qXQ-bw-3vY"/>
</constraints>
</tableViewCellContentView>
<viewLayoutGuide key="safeArea" id="cXx-oy-vIl"/>
<point key="canvasLocation" x="-132.5" y="-90.5"/>
</tableViewCell>
</objects>
</document>

View file

@ -1,101 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="Constraints to layout margins" minToolsVersion="6.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="_MWMPPPAddress" rowHeight="44" id="bz2-BF-3Qa" customClass="_MWMPPPAddress" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="bz2-BF-3Qa" id="kgP-ci-4Fj">
<rect key="frame" x="0.0" y="0.0" width="320" height="43.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="9gi-wZ-XKX" userLabel="Distance Box">
<rect key="frame" x="284" y="7" width="20" height="18"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cd6-XD-cgT" userLabel="Distance">
<rect key="frame" x="20" y="0.0" width="0.0" height="18"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium14"/>
</userDefinedRuntimeAttributes>
</label>
<imageView autoresizesSubviews="NO" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="img_direction_light" translatesAutoresizingMaskIntoConstraints="NO" id="6X7-5b-1LS">
<rect key="frame" x="0.0" y="0.0" width="18" height="18"/>
<constraints>
<constraint firstAttribute="width" constant="18" id="etq-ix-y8Q"/>
<constraint firstAttribute="height" constant="18" id="oIE-af-K5z"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="mwm_name" value="img_direction"/>
</userDefinedRuntimeAttributes>
</imageView>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="emj-Ea-I28">
<rect key="frame" x="-5" y="-5" width="30" height="28"/>
<connections>
<action selector="tap" destination="bz2-BF-3Qa" eventType="touchUpInside" id="lKr-5F-clu"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstItem="cd6-XD-cgT" firstAttribute="leading" secondItem="6X7-5b-1LS" secondAttribute="trailing" constant="2" id="I7D-Jd-VrQ"/>
<constraint firstItem="cd6-XD-cgT" firstAttribute="top" secondItem="9gi-wZ-XKX" secondAttribute="top" id="T9w-bm-hKy"/>
<constraint firstAttribute="trailing" secondItem="emj-Ea-I28" secondAttribute="trailing" constant="-5" id="XkW-Ud-r6D"/>
<constraint firstItem="cd6-XD-cgT" firstAttribute="centerY" secondItem="6X7-5b-1LS" secondAttribute="centerY" id="YjA-X0-1Vf"/>
<constraint firstAttribute="bottom" secondItem="cd6-XD-cgT" secondAttribute="bottom" id="fMX-tv-nET"/>
<constraint firstAttribute="trailing" secondItem="cd6-XD-cgT" secondAttribute="trailing" id="fRC-1s-4AL"/>
<constraint firstItem="6X7-5b-1LS" firstAttribute="top" secondItem="9gi-wZ-XKX" secondAttribute="top" id="nO1-L5-Ffh"/>
<constraint firstItem="emj-Ea-I28" firstAttribute="top" secondItem="9gi-wZ-XKX" secondAttribute="top" constant="-5" id="wAY-mW-6cJ"/>
<constraint firstAttribute="bottom" secondItem="emj-Ea-I28" secondAttribute="bottom" constant="-5" id="zYf-7z-dTT"/>
<constraint firstItem="emj-Ea-I28" firstAttribute="leading" secondItem="9gi-wZ-XKX" secondAttribute="leading" constant="-5" id="zdC-zW-f4g"/>
<constraint firstItem="6X7-5b-1LS" firstAttribute="leading" secondItem="9gi-wZ-XKX" secondAttribute="leading" id="zzQ-fy-Dvi"/>
</constraints>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="400" text="Addresss" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="g80-iK-Lm4">
<rect key="frame" x="16" y="7" width="288" height="36.5"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular14"/>
</userDefinedRuntimeAttributes>
</label>
</subviews>
<constraints>
<constraint firstAttribute="trailing" secondItem="9gi-wZ-XKX" secondAttribute="trailing" constant="16" id="4IY-d9-7Qe"/>
<constraint firstItem="9gi-wZ-XKX" firstAttribute="leading" secondItem="g80-iK-Lm4" secondAttribute="trailing" priority="500" constant="8" id="QdH-SI-U3V"/>
<constraint firstAttribute="trailingMargin" secondItem="g80-iK-Lm4" secondAttribute="trailing" priority="750" id="ReC-iw-nQo"/>
<constraint firstItem="9gi-wZ-XKX" firstAttribute="top" secondItem="kgP-ci-4Fj" secondAttribute="top" constant="7" id="ahP-3e-LSZ"/>
<constraint firstItem="g80-iK-Lm4" firstAttribute="top" secondItem="kgP-ci-4Fj" secondAttribute="top" constant="7" id="dyX-RT-RyA"/>
<constraint firstItem="g80-iK-Lm4" firstAttribute="leading" secondItem="kgP-ci-4Fj" secondAttribute="leading" constant="16" id="eKV-2t-e5B"/>
<constraint firstAttribute="bottom" secondItem="g80-iK-Lm4" secondAttribute="bottom" id="kMh-wD-wdh"/>
</constraints>
</tableViewCellContentView>
<connections>
<outlet property="address" destination="g80-iK-Lm4" id="2DO-82-lDm"/>
<outlet property="compass" destination="6X7-5b-1LS" id="sXX-av-DO8"/>
<outlet property="distance" destination="cd6-XD-cgT" id="fFj-QE-tqb"/>
<outlet property="distanceView" destination="9gi-wZ-XKX" id="9Lr-TG-2gw"/>
<outlet property="trailing" destination="ReC-iw-nQo" id="l2t-1p-S58"/>
</connections>
<point key="canvasLocation" x="327" y="727"/>
</tableViewCell>
</objects>
<resources>
<image name="img_direction_light" width="32" height="32"/>
</resources>
</document>

View file

@ -1,101 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="Constraints to layout margins" minToolsVersion="6.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="_MWMPPPExternalTitle" id="BGG-6x-Yz5" customClass="_MWMPPPExternalTitle" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="320" height="24"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="BGG-6x-Yz5" id="qw4-Pb-AUe">
<rect key="frame" x="0.0" y="0.0" width="320" height="23.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ugv-HY-Iyx" userLabel="Distance Box">
<rect key="frame" x="284" y="3" width="20" height="20.5"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jbK-sR-5wO" userLabel="Distance">
<rect key="frame" x="20" y="0.0" width="0.0" height="20.5"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium14"/>
</userDefinedRuntimeAttributes>
</label>
<imageView autoresizesSubviews="NO" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="img_direction_light" translatesAutoresizingMaskIntoConstraints="NO" id="fMx-Ih-zpI">
<rect key="frame" x="0.0" y="1.5" width="18" height="18"/>
<constraints>
<constraint firstAttribute="height" constant="18" id="hit-p4-SsN"/>
<constraint firstAttribute="width" constant="18" id="vbS-mH-WZh"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="mwm_name" value="img_direction"/>
</userDefinedRuntimeAttributes>
</imageView>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="x01-my-vQm">
<rect key="frame" x="-5" y="-5" width="30" height="30.5"/>
<connections>
<action selector="tap" destination="BGG-6x-Yz5" eventType="touchUpInside" id="aJO-iw-sDX"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstItem="x01-my-vQm" firstAttribute="leading" secondItem="ugv-HY-Iyx" secondAttribute="leading" constant="-5" id="1zE-K7-Rvs"/>
<constraint firstItem="fMx-Ih-zpI" firstAttribute="leading" secondItem="ugv-HY-Iyx" secondAttribute="leading" id="EaO-z5-fTP"/>
<constraint firstAttribute="bottom" secondItem="x01-my-vQm" secondAttribute="bottom" constant="-5" id="Hyc-C3-ZwN"/>
<constraint firstItem="x01-my-vQm" firstAttribute="top" secondItem="ugv-HY-Iyx" secondAttribute="top" constant="-5" id="Rfd-4A-Vzk"/>
<constraint firstItem="jbK-sR-5wO" firstAttribute="top" secondItem="ugv-HY-Iyx" secondAttribute="top" id="Rpa-Bz-0dR"/>
<constraint firstAttribute="bottom" secondItem="jbK-sR-5wO" secondAttribute="bottom" id="WZU-Bf-HrN"/>
<constraint firstAttribute="trailing" secondItem="jbK-sR-5wO" secondAttribute="trailing" id="biW-Ak-krZ"/>
<constraint firstItem="jbK-sR-5wO" firstAttribute="leading" secondItem="fMx-Ih-zpI" secondAttribute="trailing" constant="2" id="pbr-jj-qJd"/>
<constraint firstItem="fMx-Ih-zpI" firstAttribute="centerY" secondItem="jbK-sR-5wO" secondAttribute="centerY" id="pfV-9o-mXs"/>
<constraint firstAttribute="trailing" secondItem="x01-my-vQm" secondAttribute="trailing" constant="-5" id="pi7-Sw-6oy"/>
</constraints>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="400" text="External title" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RVZ-XQ-Hc9">
<rect key="frame" x="16" y="4" width="288" height="19.5"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium14"/>
</userDefinedRuntimeAttributes>
</label>
</subviews>
<constraints>
<constraint firstItem="ugv-HY-Iyx" firstAttribute="leading" secondItem="RVZ-XQ-Hc9" secondAttribute="trailing" priority="500" constant="8" id="Aey-Ea-IiP"/>
<constraint firstAttribute="trailing" secondItem="ugv-HY-Iyx" secondAttribute="trailing" constant="16" id="FBP-qb-iYH"/>
<constraint firstAttribute="bottom" secondItem="ugv-HY-Iyx" secondAttribute="bottom" id="J9l-KA-e20"/>
<constraint firstItem="ugv-HY-Iyx" firstAttribute="top" secondItem="qw4-Pb-AUe" secondAttribute="top" constant="3" id="KGm-L4-5Pj"/>
<constraint firstItem="RVZ-XQ-Hc9" firstAttribute="top" secondItem="qw4-Pb-AUe" secondAttribute="top" constant="4" id="Vep-PM-Fnb"/>
<constraint firstAttribute="trailingMargin" secondItem="RVZ-XQ-Hc9" secondAttribute="trailing" priority="750" id="gTr-DS-WO3"/>
<constraint firstItem="RVZ-XQ-Hc9" firstAttribute="leading" secondItem="qw4-Pb-AUe" secondAttribute="leading" constant="16" id="pyI-Wm-46c"/>
<constraint firstAttribute="bottom" secondItem="RVZ-XQ-Hc9" secondAttribute="bottom" id="tIE-kq-5JG"/>
</constraints>
</tableViewCellContentView>
<connections>
<outlet property="compass" destination="fMx-Ih-zpI" id="Nvv-iJ-Cpo"/>
<outlet property="distance" destination="jbK-sR-5wO" id="Lgb-69-fgh"/>
<outlet property="distanceView" destination="ugv-HY-Iyx" id="Zdl-TE-h20"/>
<outlet property="externalTitle" destination="RVZ-XQ-Hc9" id="pd7-vg-MOk"/>
<outlet property="trailing" destination="gTr-DS-WO3" id="xuw-aJ-vYX"/>
</connections>
<point key="canvasLocation" x="327" y="495"/>
</tableViewCell>
</objects>
<resources>
<image name="img_direction_light" width="32" height="32"/>
</resources>
</document>

View file

@ -1,101 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="Constraints to layout margins" minToolsVersion="6.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="_MWMPPPSchedule" id="HVA-4K-8ma" customClass="_MWMPPPSchedule" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="320" height="24"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="HVA-4K-8ma" id="Vj6-NH-gE1">
<rect key="frame" x="0.0" y="0.0" width="320" height="23.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="BQA-1t-HxB" userLabel="Distance Box">
<rect key="frame" x="284" y="3" width="20" height="20.5"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AH1-ti-uSf" userLabel="Distance">
<rect key="frame" x="20" y="0.0" width="0.0" height="20.5"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium14"/>
</userDefinedRuntimeAttributes>
</label>
<imageView autoresizesSubviews="NO" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="img_direction_light" translatesAutoresizingMaskIntoConstraints="NO" id="Mh6-ds-8hz">
<rect key="frame" x="0.0" y="1.5" width="18" height="18"/>
<constraints>
<constraint firstAttribute="width" constant="18" id="mDC-c5-T3v"/>
<constraint firstAttribute="height" constant="18" id="pxH-l7-BCW"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="mwm_name" value="img_direction"/>
</userDefinedRuntimeAttributes>
</imageView>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="yNm-lW-0oC">
<rect key="frame" x="-5" y="-5" width="30" height="30.5"/>
<connections>
<action selector="tap" destination="HVA-4K-8ma" eventType="touchUpInside" id="hq0-gd-ARQ"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstItem="Mh6-ds-8hz" firstAttribute="centerY" secondItem="AH1-ti-uSf" secondAttribute="centerY" id="6W7-A1-jK3"/>
<constraint firstAttribute="trailing" secondItem="yNm-lW-0oC" secondAttribute="trailing" constant="-5" id="7jv-2b-lKY"/>
<constraint firstItem="AH1-ti-uSf" firstAttribute="leading" secondItem="Mh6-ds-8hz" secondAttribute="trailing" constant="2" id="Jwp-Be-UCL"/>
<constraint firstItem="AH1-ti-uSf" firstAttribute="top" secondItem="BQA-1t-HxB" secondAttribute="top" id="NcP-TC-qLA"/>
<constraint firstItem="Mh6-ds-8hz" firstAttribute="leading" secondItem="BQA-1t-HxB" secondAttribute="leading" id="WXc-bH-oiv"/>
<constraint firstAttribute="bottom" secondItem="yNm-lW-0oC" secondAttribute="bottom" constant="-5" id="Y9v-we-ry2"/>
<constraint firstAttribute="trailing" secondItem="AH1-ti-uSf" secondAttribute="trailing" id="YpE-Xo-exd"/>
<constraint firstAttribute="bottom" secondItem="AH1-ti-uSf" secondAttribute="bottom" id="iDh-ma-QJ2"/>
<constraint firstItem="yNm-lW-0oC" firstAttribute="leading" secondItem="BQA-1t-HxB" secondAttribute="leading" constant="-5" id="jVF-e2-OdH"/>
<constraint firstItem="yNm-lW-0oC" firstAttribute="top" secondItem="BQA-1t-HxB" secondAttribute="top" constant="-5" id="mjC-h8-pm4"/>
</constraints>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="400" text="Schedule" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fDX-g2-0au">
<rect key="frame" x="16" y="4" width="288" height="19"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackSecondaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular14"/>
</userDefinedRuntimeAttributes>
</label>
</subviews>
<constraints>
<constraint firstAttribute="bottom" secondItem="BQA-1t-HxB" secondAttribute="bottom" id="JlE-1h-DrI"/>
<constraint firstItem="fDX-g2-0au" firstAttribute="leading" secondItem="Vj6-NH-gE1" secondAttribute="leading" constant="16" id="KgC-ae-UIS"/>
<constraint firstAttribute="bottom" secondItem="fDX-g2-0au" secondAttribute="bottom" constant="0.5" id="NJW-Tu-wrB"/>
<constraint firstItem="fDX-g2-0au" firstAttribute="top" secondItem="Vj6-NH-gE1" secondAttribute="top" constant="4" id="NzT-aJ-MUo"/>
<constraint firstAttribute="trailing" secondItem="BQA-1t-HxB" secondAttribute="trailing" constant="16" id="TxV-7f-VK5"/>
<constraint firstItem="BQA-1t-HxB" firstAttribute="leading" secondItem="fDX-g2-0au" secondAttribute="trailing" priority="500" constant="8" id="V72-o8-GUw"/>
<constraint firstItem="BQA-1t-HxB" firstAttribute="top" secondItem="Vj6-NH-gE1" secondAttribute="top" constant="3" id="dG3-Rs-qKT"/>
<constraint firstAttribute="trailingMargin" secondItem="fDX-g2-0au" secondAttribute="trailing" priority="750" id="mdD-gF-WZW"/>
</constraints>
</tableViewCellContentView>
<connections>
<outlet property="compass" destination="Mh6-ds-8hz" id="EOq-V0-C03"/>
<outlet property="distance" destination="AH1-ti-uSf" id="M8q-Lj-nBc"/>
<outlet property="distanceView" destination="BQA-1t-HxB" id="Ej2-pp-WRH"/>
<outlet property="schedule" destination="fDX-g2-0au" id="rW6-nt-fFa"/>
<outlet property="trailing" destination="mdD-gF-WZW" id="ded-ot-J3q"/>
</connections>
<point key="canvasLocation" x="327" y="645"/>
</tableViewCell>
</objects>
<resources>
<image name="img_direction_light" width="32" height="32"/>
</resources>
</document>

View file

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="_MWMPPPSpace" rowHeight="16" id="e80-Up-JKd" customClass="_MWMPPPSpace" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="375" height="16"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="e80-Up-JKd" id="Ko3-Cf-A8Q">
<rect key="frame" x="0.0" y="0.0" width="375" height="15.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Xvd-Wu-4VH">
<rect key="frame" x="0.0" y="0.0" width="375" height="15.5"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstAttribute="height" priority="750" constant="15" id="da2-0A-6d4"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="white"/>
</userDefinedRuntimeAttributes>
</view>
</subviews>
<constraints>
<constraint firstAttribute="trailing" secondItem="Xvd-Wu-4VH" secondAttribute="trailing" id="7p0-En-2Ov"/>
<constraint firstItem="Xvd-Wu-4VH" firstAttribute="top" secondItem="Ko3-Cf-A8Q" secondAttribute="top" id="G3l-4B-ztr"/>
<constraint firstItem="Xvd-Wu-4VH" firstAttribute="leading" secondItem="Ko3-Cf-A8Q" secondAttribute="leading" id="jlH-bx-hTM"/>
<constraint firstAttribute="bottom" secondItem="Xvd-Wu-4VH" secondAttribute="bottom" id="lzf-WQ-Gy6"/>
</constraints>
</tableViewCellContentView>
<point key="canvasLocation" x="21" y="58"/>
</tableViewCell>
</objects>
</document>

View file

@ -1,100 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="_MWMPPPSubtitle" id="uPP-a7-pwR" customClass="_MWMPPPSubtitle" propertyAccessControl="all">
<rect key="frame" x="0.0" y="0.0" width="320" height="27"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="uPP-a7-pwR" id="32Q-dS-DC0">
<rect key="frame" x="0.0" y="0.0" width="320" height="26.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="eHp-si-h1T" userLabel="Distance Box">
<rect key="frame" x="284" y="3" width="20" height="23.5"/>
<subviews>
<imageView autoresizesSubviews="NO" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="img_direction_light" translatesAutoresizingMaskIntoConstraints="NO" id="620-0b-Nbi">
<rect key="frame" x="0.0" y="3" width="18" height="18"/>
<constraints>
<constraint firstAttribute="width" constant="18" id="EYu-Yt-Z9j"/>
<constraint firstAttribute="height" constant="18" id="xku-Qh-If4"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="mwm_name" value="img_direction"/>
</userDefinedRuntimeAttributes>
</imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3iA-1v-7Ro" userLabel="Distance">
<rect key="frame" x="20" y="0.0" width="0.0" height="23.5"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium14"/>
</userDefinedRuntimeAttributes>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="gea-it-ngb">
<rect key="frame" x="-5" y="-5" width="30" height="33.5"/>
<connections>
<action selector="tap" destination="uPP-a7-pwR" eventType="touchUpInside" id="iJ2-82-TB8"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
<constraints>
<constraint firstAttribute="trailing" secondItem="gea-it-ngb" secondAttribute="trailing" constant="-5" id="2bl-36-wVj"/>
<constraint firstAttribute="bottom" secondItem="gea-it-ngb" secondAttribute="bottom" constant="-5" id="AHo-pE-crR"/>
<constraint firstAttribute="bottom" secondItem="3iA-1v-7Ro" secondAttribute="bottom" id="BDf-VH-ERD"/>
<constraint firstItem="3iA-1v-7Ro" firstAttribute="top" secondItem="eHp-si-h1T" secondAttribute="top" id="BqN-QD-e2T"/>
<constraint firstItem="620-0b-Nbi" firstAttribute="leading" secondItem="eHp-si-h1T" secondAttribute="leading" id="Fbr-4r-1to"/>
<constraint firstAttribute="trailing" secondItem="3iA-1v-7Ro" secondAttribute="trailing" id="GcL-d4-XIf"/>
<constraint firstItem="3iA-1v-7Ro" firstAttribute="leading" secondItem="620-0b-Nbi" secondAttribute="trailing" constant="2" id="I3D-KF-sGs"/>
<constraint firstItem="620-0b-Nbi" firstAttribute="centerY" secondItem="3iA-1v-7Ro" secondAttribute="centerY" id="Llr-8J-cpe"/>
<constraint firstItem="gea-it-ngb" firstAttribute="top" secondItem="eHp-si-h1T" secondAttribute="top" constant="-5" id="Xj2-JZ-0NR"/>
<constraint firstItem="gea-it-ngb" firstAttribute="leading" secondItem="eHp-si-h1T" secondAttribute="leading" constant="-5" id="YQf-DD-Sp6"/>
</constraints>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="400" text="Subtitle" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7eI-u4-YYe">
<rect key="frame" x="16" y="4" width="288" height="22"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackSecondaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="regular14"/>
</userDefinedRuntimeAttributes>
</label>
</subviews>
<constraints>
<constraint firstAttribute="bottom" secondItem="7eI-u4-YYe" secondAttribute="bottom" constant="0.5" id="0so-Rm-Uaw"/>
<constraint firstItem="eHp-si-h1T" firstAttribute="leading" secondItem="7eI-u4-YYe" secondAttribute="trailing" priority="500" constant="8" id="PyS-G6-ga0"/>
<constraint firstItem="eHp-si-h1T" firstAttribute="top" secondItem="32Q-dS-DC0" secondAttribute="top" constant="3" id="XCo-E2-dlj"/>
<constraint firstAttribute="trailing" secondItem="7eI-u4-YYe" secondAttribute="trailing" priority="750" constant="16" id="Xy5-rf-Gp5"/>
<constraint firstItem="7eI-u4-YYe" firstAttribute="top" secondItem="32Q-dS-DC0" secondAttribute="top" constant="4" id="d6c-V2-5sp"/>
<constraint firstAttribute="bottom" secondItem="eHp-si-h1T" secondAttribute="bottom" id="fVo-GO-rno"/>
<constraint firstItem="7eI-u4-YYe" firstAttribute="leading" secondItem="32Q-dS-DC0" secondAttribute="leading" constant="16" id="t4R-SJ-7gL"/>
<constraint firstAttribute="trailing" secondItem="eHp-si-h1T" secondAttribute="trailing" constant="16" id="xVy-Vw-zeg"/>
</constraints>
</tableViewCellContentView>
<connections>
<outlet property="compass" destination="620-0b-Nbi" id="gSX-oP-Ze7"/>
<outlet property="distance" destination="3iA-1v-7Ro" id="h7r-fe-Pbd"/>
<outlet property="distanceView" destination="eHp-si-h1T" id="bO9-zc-uMf"/>
<outlet property="subtitle" destination="7eI-u4-YYe" id="2s6-pr-1Lx"/>
<outlet property="trailing" destination="Xy5-rf-Gp5" id="lIU-PA-ux0"/>
</connections>
<point key="canvasLocation" x="327" y="571"/>
</tableViewCell>
</objects>
<resources>
<image name="img_direction_light" width="32" height="32"/>
</resources>
</document>

View file

@ -1,80 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="14113" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="_MWMPPPTitle" id="pV6-Se-WUl" customClass="_MWMPPPTitle">
<rect key="frame" x="0.0" y="0.0" width="320" height="24"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="pV6-Se-WUl" id="9Ek-CZ-WD2">
<rect key="frame" x="0.0" y="0.0" width="320" height="23.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="400" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="reR-BO-1en">
<rect key="frame" x="16" y="3" width="221" height="20"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="blackPrimaryText"/>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="medium20"/>
</userDefinedRuntimeAttributes>
</label>
<view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="2WK-Ar-BxC">
<rect key="frame" x="241" y="7" width="63" height="20"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Popular" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="kwN-2Y-WID">
<rect key="frame" x="8" y="0.0" width="47" height="20"/>
<fontDescription key="fontDescription" type="boldSystem" pointSize="12"/>
<color key="textColor" red="0.1176470588" green="0.58823529409999997" blue="0.93983289930000002" alpha="1" colorSpace="calibratedRGB"/>
<nil key="highlightedColor"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="fontName" value="bold12"/>
<userDefinedRuntimeAttribute type="string" keyPath="colorName" value="linkBlue"/>
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="popular_place"/>
</userDefinedRuntimeAttributes>
</label>
</subviews>
<color key="backgroundColor" red="0.14117647058823529" green="0.61176470588235299" blue="0.94901960784313721" alpha="0.1642497859589041" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstItem="kwN-2Y-WID" firstAttribute="leading" secondItem="2WK-Ar-BxC" secondAttribute="leading" constant="8" id="DB2-LY-TgE"/>
<constraint firstAttribute="trailing" secondItem="kwN-2Y-WID" secondAttribute="trailing" constant="8" id="EyA-9u-Xib"/>
<constraint firstAttribute="height" constant="20" id="LkS-kM-xSm"/>
<constraint firstItem="kwN-2Y-WID" firstAttribute="top" secondItem="2WK-Ar-BxC" secondAttribute="top" id="Wfy-cQ-0Dg"/>
<constraint firstAttribute="bottom" secondItem="kwN-2Y-WID" secondAttribute="bottom" id="gKH-p3-CcA"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="string" keyPath="backgroundColorName" value="linkBlueHighlighted"/>
<userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
<integer key="value" value="10"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
</subviews>
<constraints>
<constraint firstAttribute="bottom" secondItem="reR-BO-1en" secondAttribute="bottom" constant="0.5" id="6Lg-hI-k0e"/>
<constraint firstItem="reR-BO-1en" firstAttribute="top" secondItem="9Ek-CZ-WD2" secondAttribute="top" constant="3" id="9b5-g9-bkP"/>
<constraint firstAttribute="trailing" secondItem="reR-BO-1en" secondAttribute="trailing" priority="250" constant="16" id="Jj2-xo-qfY"/>
<constraint firstAttribute="trailing" secondItem="2WK-Ar-BxC" secondAttribute="trailing" priority="500" constant="16" id="WDM-mg-WYM"/>
<constraint firstItem="2WK-Ar-BxC" firstAttribute="leading" secondItem="reR-BO-1en" secondAttribute="trailing" constant="4" id="XVF-x9-EUg"/>
<constraint firstItem="2WK-Ar-BxC" firstAttribute="top" secondItem="reR-BO-1en" secondAttribute="top" constant="4" id="dSq-dZ-KWu"/>
<constraint firstItem="reR-BO-1en" firstAttribute="leading" secondItem="9Ek-CZ-WD2" secondAttribute="leading" constant="16" id="n3E-vj-86W"/>
</constraints>
</tableViewCellContentView>
<connections>
<outlet property="popular" destination="2WK-Ar-BxC" id="bcN-Dz-Osc"/>
<outlet property="title" destination="reR-BO-1en" id="vDy-xg-x8U"/>
<outlet property="titleTrailing" destination="Jj2-xo-qfY" id="vPD-Ms-2KT"/>
</connections>
<point key="canvasLocation" x="327" y="423"/>
</tableViewCell>
</objects>
</document>

View file

@ -1,7 +1,8 @@
#import "MWMUGCViewModel.h"
#import "MWMPlacePageData.h"
#import "SwiftBridge.h"
#include "map/place_page_info.hpp"
using namespace place_page;
namespace
@ -16,12 +17,25 @@ NSArray<MWMUGCRatingStars *> * starsRatings(ugc::Ratings const & ratings)
return [mwmRatings copy];
}
UgcSummaryRatingType ratingValueType(rating::Impress impress)
{
switch (impress)
{
case rating::Impress::None: return UgcSummaryRatingTypeNone;
case rating::Impress::Horrible: return UgcSummaryRatingTypeHorrible;
case rating::Impress::Bad: return UgcSummaryRatingTypeBad;
case rating::Impress::Normal: return UgcSummaryRatingTypeNormal;
case rating::Impress::Good: return UgcSummaryRatingTypeGood;
case rating::Impress::Excellent: return UgcSummaryRatingTypeExcellent;
}
}
MWMUGCRatingValueType * ratingValueType(float rating)
{
NSString *value = @(rating::GetRatingFormatted(rating).c_str());
return [[MWMUGCRatingValueType alloc]
initWithValue:value ?: @""
type:[MWMPlacePageData ratingValueType:rating::GetImpress(rating)]];
type:ratingValueType(rating::GetImpress(rating))];
}
} // namespace

View file

@ -1,5 +1,3 @@
#import "MWMPlacePageData.h"
#include "map/place_page_info.hpp"
#include "map/booking_filter_params.hpp"