diff --git a/iphone/Maps/Classes/MapViewController.h b/iphone/Maps/Classes/MapViewController.h index 931c4e62dc..a560abe03d 100644 --- a/iphone/Maps/Classes/MapViewController.h +++ b/iphone/Maps/Classes/MapViewController.h @@ -39,7 +39,6 @@ - (void)initialize; - (void)enableCarPlayRepresentation; - (void)disableCarPlayRepresentation; -- (void)backToTourismMain; - (void)dismissPlacePage; diff --git a/iphone/Maps/Classes/MapViewController.mm b/iphone/Maps/Classes/MapViewController.mm index 92f393cfec..a41f8c0c4e 100644 --- a/iphone/Maps/Classes/MapViewController.mm +++ b/iphone/Maps/Classes/MapViewController.mm @@ -312,6 +312,8 @@ NSString *const kPP2BookmarkEditingSegue = @"PP2BookmarkEditing"; - (void)viewDidLoad { [super viewDidLoad]; + + [self showButtonToTourismMain]; self.title = L(@"map"); @@ -371,8 +373,7 @@ NSString *const kPP2BookmarkEditingSegue = @"PP2BookmarkEditing"; if (DeepLinkHandler.shared.isLaunchedByDeeplink) (void)[DeepLinkHandler.shared handleDeepLinkAndReset]; - [self showButtonToTourismMain]; - + [self handleNavigationOnMapResume]; [self createRoute]; } @@ -802,7 +803,7 @@ BOOL isLocationInBounds(ms::LatLon location, ms::LatLon topLeft, ms::LatLon bott homeButton.translatesAutoresizingMaskIntoConstraints = NO; - [homeButton addTarget:self action:@selector(backToTourismMain) forControlEvents:UIControlEventTouchUpInside]; + [homeButton addTarget:self action:@selector(goToTourismMain) forControlEvents:UIControlEventTouchUpInside]; [self.controlsView addSubview:homeButton]; @@ -822,7 +823,34 @@ BOOL isLocationInBounds(ms::LatLon location, ms::LatLon topLeft, ms::LatLon bott } -- (void)backToTourismMain { +- (void)handleNavigationOnMapResume { + /* + The thing is that we present those screens modally, + so we need some way to understand when we should go anywhere. + For example, in auth screen when user is signed in we dismiss it + and want mapViewController to know that is should go to TourismMain + unfortunately couldn't find any other maintainable way + */ + + TourismUserPreferences *prefs = [TourismUserPreferences shared]; + BOOL shouldGoToTourismMain = [prefs getShouldGoToTourismMain]; + BOOL shouldGoToAuth = [prefs getShouldGoToAuth]; + + if(shouldGoToTourismMain) { + [prefs setShouldGoToTourismMainWithValue:NO]; + [self goToTourismMain]; + } + if(shouldGoToAuth) { + [prefs setShouldGoToAuthWithValue:NO]; + [self goToAuth]; + } +} + +- (void)goToAuth { + [[MapViewController sharedController]performSegueWithIdentifier:@"Map2Auth" sender:nil]; +} + +- (void)goToTourismMain { [[MapViewController sharedController]performSegueWithIdentifier:@"Map2TourismMain" sender:nil]; } @end diff --git a/iphone/Maps/Classes/MapsAppDelegate.mm b/iphone/Maps/Classes/MapsAppDelegate.mm index 5f4b42d0c8..e03915ab2a 100644 --- a/iphone/Maps/Classes/MapsAppDelegate.mm +++ b/iphone/Maps/Classes/MapsAppDelegate.mm @@ -211,8 +211,7 @@ using namespace osm_auth_ios; LOG(LINFO, ("applicationDidBecomeActive - begin")); auto & f = GetFramework(); - // MARK: Our default app entry point is TourismMain that's why we go there - [self goToTourismMainIfTajikistanIsLoaded]; + [self handleNavigationForAppStartup]; [self moveToDushanbeIfNotInTjk]; @@ -236,11 +235,17 @@ using namespace osm_auth_ios; // MARK: Functions for Tourism purposes - -- (void) goToTourismMainIfTajikistanIsLoaded { +- (void) handleNavigationForAppStartup { auto & f = GetFramework(); + + // We don't want map to be our default entry point, that's why we go to places list or auth if there's no token) if(f.IsCountryLoadedByName("Tajikistan")) { - [[MapViewController sharedController]performSegueWithIdentifier:@"Map2TourismMain" sender:nil]; + TourismUserPreferences *prefs = [TourismUserPreferences shared]; + if ([prefs getToken] == nil) { // go to Auth (note: token is cleared when user signs out) + [[MapViewController sharedController]performSegueWithIdentifier:@"Map2Auth" sender:nil]; + } else { // go to TourismMain (Home) + [[MapViewController sharedController]performSegueWithIdentifier:@"Map2TourismMain" sender:nil]; + } } } diff --git a/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm b/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm index 26fcd65f15..66ea458e25 100644 --- a/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm +++ b/iphone/Maps/Classes/Widgets/MWMMapDownloadDialog.mm @@ -242,7 +242,7 @@ using namespace storage; } if(downloadedBytes == totalBytes) { - [[MapViewController sharedController]performSegueWithIdentifier:@"Map2TourismMain" sender:nil]; + [[MapViewController sharedController]performSegueWithIdentifier:@"Map2Auth" sender:nil]; } } diff --git a/iphone/Maps/Tourism/Data/Db/PersistenceControllers/PlacesPersistenceController.swift b/iphone/Maps/Tourism/Data/Db/PersistenceControllers/PlacesPersistenceController.swift index 6204531606..8bdb2e4197 100644 --- a/iphone/Maps/Tourism/Data/Db/PersistenceControllers/PlacesPersistenceController.swift +++ b/iphone/Maps/Tourism/Data/Db/PersistenceControllers/PlacesPersistenceController.swift @@ -1,4 +1,3 @@ -import Foundation import CoreData import Combine diff --git a/iphone/Maps/Tourism/Data/Network/Services/ProfileService.swift b/iphone/Maps/Tourism/Data/Network/Services/ProfileService.swift index 74e03f16a2..2202cf541e 100644 --- a/iphone/Maps/Tourism/Data/Network/Services/ProfileService.swift +++ b/iphone/Maps/Tourism/Data/Network/Services/ProfileService.swift @@ -115,7 +115,7 @@ class ProfileServiceImpl: ProfileService { func updateLanguage(code: String) { Task { do { - let response: SimpleResponse = try await AppNetworkHelper.put( + let _: SimpleResponse = try await AppNetworkHelper.put( path: APIEndpoints.updateLanguageUrl, body: LanguageDTO(language: code) ) @@ -128,7 +128,7 @@ class ProfileServiceImpl: ProfileService { func updateTheme(code: String) { Task { do { - let response: SimpleResponse = try await AppNetworkHelper.put( + let _: SimpleResponse = try await AppNetworkHelper.put( path: APIEndpoints.updateThemeUrl, body: ThemeDTO(theme: code) ) diff --git a/iphone/Maps/Tourism/Data/Prefs/UserPreferences.swift b/iphone/Maps/Tourism/Data/Prefs/UserPreferences.swift index 5b1351f469..1312460f0e 100644 --- a/iphone/Maps/Tourism/Data/Prefs/UserPreferences.swift +++ b/iphone/Maps/Tourism/Data/Prefs/UserPreferences.swift @@ -46,11 +46,11 @@ class UserPreferences: NSObject { userDefaults.set(value, forKey: "theme") } - func getToken() -> String? { + @objc func getToken() -> String? { return userDefaults.string(forKey: "token") } - func setToken(value: String?) { + @objc func setToken(value: String?) { userDefaults.set(value, forKey: "token") } @@ -88,4 +88,20 @@ class UserPreferences: NSObject { } return true } + + @objc func getShouldGoToTourismMain() -> Bool { + userDefaults.bool(forKey: "should_go_to_tourism_main") + } + + @objc func setShouldGoToTourismMain(value: Bool) { + userDefaults.set(value, forKey: "should_go_to_tourism_main") + } + + @objc func getShouldGoToAuth() -> Bool { + userDefaults.bool(forKey: "should_go_to_auth") + } + + @objc func setShouldGoToAuth(value: Bool) { + userDefaults.set(value, forKey: "should_go_to_auth") + } } diff --git a/iphone/Maps/Tourism/Data/Repositories/PlacesRepositoryImpl.swift b/iphone/Maps/Tourism/Data/Repositories/PlacesRepositoryImpl.swift index 45eac71cee..51e6068a26 100644 --- a/iphone/Maps/Tourism/Data/Repositories/PlacesRepositoryImpl.swift +++ b/iphone/Maps/Tourism/Data/Repositories/PlacesRepositoryImpl.swift @@ -193,9 +193,9 @@ class PlacesRepositoryImpl: PlacesRepository { do { if(isFavorite) { - try await placesService.addFavorites(ids: favoritesIdsDto) + let _ = try await placesService.addFavorites(ids: favoritesIdsDto) } else { - try await placesService.removeFromFavorites(ids: favoritesIdsDto) + let _ = try await placesService.removeFromFavorites(ids: favoritesIdsDto) } placesPersistenceController.removeFavoritingRecordsForSync(placeIds: [placeId]) @@ -215,7 +215,7 @@ class PlacesRepositoryImpl: PlacesRepository { if !favoritesToAdd.isEmpty { Task { do { - let response = + _ = try await placesService.addFavorites(ids: FavoritesIdsDTO(marks: favoritesToAdd)) placesPersistenceController.removeFavoritingRecordsForSync(placeIds: favoritesToAdd) } catch { @@ -227,7 +227,7 @@ class PlacesRepositoryImpl: PlacesRepository { if !favoritesToRemove.isEmpty { Task { do { - let response = + _ = try await placesService.removeFromFavorites(ids: FavoritesIdsDTO(marks: favoritesToRemove)) placesPersistenceController.removeFavoritingRecordsForSync(placeIds: favoritesToRemove) } catch { diff --git a/iphone/Maps/Tourism/Data/Repositories/ReviewsRepositoryImpl.swift b/iphone/Maps/Tourism/Data/Repositories/ReviewsRepositoryImpl.swift index e4dbdbe55b..b11b8d01e0 100644 --- a/iphone/Maps/Tourism/Data/Repositories/ReviewsRepositoryImpl.swift +++ b/iphone/Maps/Tourism/Data/Repositories/ReviewsRepositoryImpl.swift @@ -89,7 +89,7 @@ class ReviewsRepositoryImpl : ReviewsRepository { if !reviews.isEmpty { let reviewsIds = reviews.map(\.id) - let response = try await reviewsService.deleteReview(reviews: ReviewIdsDTO(feedbacks: reviewsIds)) + _ = try await reviewsService.deleteReview(reviews: ReviewIdsDTO(feedbacks: reviewsIds)) reviewsPersistenceController.deleteReviews(ids: reviewsIds) } } @@ -101,7 +101,7 @@ class ReviewsRepositoryImpl : ReviewsRepository { reviewsDTO.forEach { reviewDTO in Task { do { - let response = try await reviewsService.postReview(review: reviewDTO) + _ = try await reviewsService.postReview(review: reviewDTO) updateReviewsForDb(id: reviewDTO.placeId) reviewsPersistenceController.deleteReviewPlannedToPost(placeId: reviewDTO.placeId) try reviewDTO.images.forEach { URL in diff --git a/iphone/Maps/Tourism/Presentation/Auth/Screens/SignInViewController.swift b/iphone/Maps/Tourism/Presentation/Auth/Screens/SignInViewController.swift index 9d760ada47..4005f5c27f 100644 --- a/iphone/Maps/Tourism/Presentation/Auth/Screens/SignInViewController.swift +++ b/iphone/Maps/Tourism/Presentation/Auth/Screens/SignInViewController.swift @@ -2,6 +2,8 @@ import UIKit import Combine class SignInViewController: UIViewController { + + private var cancellables = Set() private var authRepository = AuthRepositoryImpl(authService: AuthServiceImpl()) @@ -63,7 +65,7 @@ class SignInViewController: UIViewController { }() private let signInButton: AppButton = { - let button = AppButton(label: L("sign_in"), isPrimary: true, target: self, action: #selector(signInTapped)) + let button = AppButton(label: L("sign_in"), isPrimary: true, target: SignInViewController.self, action: #selector(signInTapped)) return button }() @@ -180,6 +182,7 @@ class SignInViewController: UIViewController { private func navigateToMain() { signInButton.isLoading = false - performSegue(withIdentifier: "SignIn2TourismMain", sender: nil) + self.dismiss(animated: true) + UserPreferences.shared.setShouldGoToTourismMain(value: true) } } diff --git a/iphone/Maps/Tourism/Presentation/Auth/Screens/SignUpViewController.swift b/iphone/Maps/Tourism/Presentation/Auth/Screens/SignUpViewController.swift index 849f20de7c..b399dfaf44 100644 --- a/iphone/Maps/Tourism/Presentation/Auth/Screens/SignUpViewController.swift +++ b/iphone/Maps/Tourism/Presentation/Auth/Screens/SignUpViewController.swift @@ -93,7 +93,7 @@ class SignUpViewController: UIViewController { }() private let signUpButton: AppButton = { - let button = AppButton(label: L("sign_up"), isPrimary: true, target: self, action: #selector(signUpClicked)) + let button = AppButton(label: L("sign_up"), isPrimary: true, target: SignUpViewController.self, action: #selector(signUpClicked)) return button }() diff --git a/iphone/Maps/Tourism/Presentation/Auth/Screens/WelcomeViewController.swift b/iphone/Maps/Tourism/Presentation/Auth/Screens/WelcomeViewController.swift index 0cd2b8579f..8be7ae9e97 100644 --- a/iphone/Maps/Tourism/Presentation/Auth/Screens/WelcomeViewController.swift +++ b/iphone/Maps/Tourism/Presentation/Auth/Screens/WelcomeViewController.swift @@ -43,7 +43,7 @@ class WelcomeViewController: UIViewController { let button = AppButton( label: L("sign_in"), isPrimary: true, - target: self, + target: WelcomeViewController.self, action: #selector(signInClicked) ) return button @@ -53,7 +53,7 @@ class WelcomeViewController: UIViewController { let button = AppButton( label: L("sign_up"), isPrimary: true, - target: self, + target: WelcomeViewController.self, action: #selector(signUpClicked) ) return button diff --git a/iphone/Maps/Tourism/Presentation/Components/LoadImg.swift b/iphone/Maps/Tourism/Presentation/Components/LoadImg.swift index 42c9a621bc..3946f288f5 100644 --- a/iphone/Maps/Tourism/Presentation/Components/LoadImg.swift +++ b/iphone/Maps/Tourism/Presentation/Components/LoadImg.swift @@ -11,10 +11,15 @@ struct LoadImageView: View { ZStack(alignment: .center) { WebImage(url: URL(string: urlString)) .onSuccess(perform: { Image, data, cache in - self.isError = false + // delay is here to avoid any updates during ui update and stop seing messages about it + DispatchQueue.main.asyncAfter(deadline: .now() + 1) { + self.isError = false + } }) .onFailure(perform: { isError in - self.isError = true + DispatchQueue.main.asyncAfter(deadline: .now() + 1) { + self.isError = true + } }) .resizable() .indicator(.activity) diff --git a/iphone/Maps/Tourism/Presentation/Components/TextFields/AppTextField.swift b/iphone/Maps/Tourism/Presentation/Components/TextFields/AppTextField.swift index d8f32ead57..220987ed2e 100644 --- a/iphone/Maps/Tourism/Presentation/Components/TextFields/AppTextField.swift +++ b/iphone/Maps/Tourism/Presentation/Components/TextFields/AppTextField.swift @@ -3,8 +3,10 @@ import SwiftUI struct AppTextField: View { @Binding var value: String var hint: String + var label: String? = nil var isError: Bool? = nil var textFieldHeight: CGFloat = 50 + var labelFontSize:CGFloat = 13 var hintFontSize: CGFloat = 15 var textSize: CGFloat = 17 var errorColor: SwiftUI.Color = SwiftUI.Color.red @@ -37,6 +39,14 @@ struct AppTextField: View { .padding(.top, textFieldHeight / 2) ) + // Label + if let label = label { + Text(label) + .font(.system(size: labelFontSize)) + .foregroundColor(Color.onBackground) + .padding(.bottom, 50) + } + // Hint text Text(hint) .font(.system(size: hintFontSize)) diff --git a/iphone/Maps/Tourism/Presentation/Components/TextFields/PasswordTextField.swift b/iphone/Maps/Tourism/Presentation/Components/TextFields/PasswordTextField.swift index c79271d70c..cd632b76c0 100644 --- a/iphone/Maps/Tourism/Presentation/Components/TextFields/PasswordTextField.swift +++ b/iphone/Maps/Tourism/Presentation/Components/TextFields/PasswordTextField.swift @@ -9,7 +9,7 @@ class PasswordTextField: AuthTextField { button.setImage(eyeSlashImg, for: .normal) button.setImage(eyeImage, for: .selected) button.tintColor = .white - button.addTarget(self, action: #selector(togglePasswordVisibility), for: .touchUpInside) + button.addTarget(PasswordTextField.self, action: #selector(togglePasswordVisibility), for: .touchUpInside) button.translatesAutoresizingMaskIntoConstraints = false return button }() diff --git a/iphone/Maps/Tourism/Presentation/Home/DataSyncer.swift b/iphone/Maps/Tourism/Presentation/Home/DataSyncer.swift index f564088080..144acaa800 100644 --- a/iphone/Maps/Tourism/Presentation/Home/DataSyncer.swift +++ b/iphone/Maps/Tourism/Presentation/Home/DataSyncer.swift @@ -21,16 +21,15 @@ class DataSyncer { self.isConnected = path.status == .satisfied self.isExpensive = path.isExpensive - if path.status == .satisfied { - print("Connected to the internet.") - self.reviewsRepository.syncReviews() - self.placesRepository.syncFavorites() - } else { - print("No internet connection.") - } - - if path.isExpensive { - print("Connection is on an expensive network, like cellular.") + // delay is here because in the beginning there probably won't be stable connection + DispatchQueue.main.asyncAfter(deadline: .now() + 3) { + if Reachability.isConnectedToNetwork() { + print("Connected to the internet.") + self.reviewsRepository.syncReviews() + self.placesRepository.syncFavorites() + } else { + print("No internet connection.") + } } } diff --git a/iphone/Maps/Tourism/Presentation/Home/Screens/Categories/CategoriesViewModel.swift b/iphone/Maps/Tourism/Presentation/Home/Screens/Categories/CategoriesViewModel.swift index 9f65e754b8..dbe0ed2877 100644 --- a/iphone/Maps/Tourism/Presentation/Home/Screens/Categories/CategoriesViewModel.swift +++ b/iphone/Maps/Tourism/Presentation/Home/Screens/Categories/CategoriesViewModel.swift @@ -35,7 +35,7 @@ class CategoriesViewModel: ObservableObject { func observeCategoryPlaces() { placesRepository.placesByCategoryResource.sink { completion in - if case let .failure(error) = completion { + if case .failure(_) = completion { // nothing } } receiveValue: { places in diff --git a/iphone/Maps/Tourism/Presentation/Home/Screens/Favorites/FavoritesViewModel.swift b/iphone/Maps/Tourism/Presentation/Home/Screens/Favorites/FavoritesViewModel.swift index 70f867950c..4c15dd17e4 100644 --- a/iphone/Maps/Tourism/Presentation/Home/Screens/Favorites/FavoritesViewModel.swift +++ b/iphone/Maps/Tourism/Presentation/Home/Screens/Favorites/FavoritesViewModel.swift @@ -20,7 +20,7 @@ class FavoritesViewModel: ObservableObject { func observeFavorites() { placesRepository.favoritesResource.sink { completion in - if case let .failure(error) = completion { + if case .failure(_) = completion { // nothing } } receiveValue: { places in diff --git a/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PersonalDataViewController.swift b/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PersonalDataViewController.swift index 2e6b1d95ed..86c9220739 100644 --- a/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PersonalDataViewController.swift +++ b/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PersonalDataViewController.swift @@ -70,22 +70,27 @@ struct PersonalDataScreen: View { showImagePicker = true } } - - VerticalSpace(height: 24) + VerticalSpace(height: 36) AppTextField( value: $profileVM.fullName, - hint: L("full_name") + hint: L("full_name"), + label: L("full_name") ) VerticalSpace(height: 16) AppTextField( value: $profileVM.email, - hint: L("email") + hint: L("email"), + label: L("email") ) - VerticalSpace(height: 24) + VerticalSpace(height: 8) if let code = profileVM.countryCodeName { + Text(L("country")) + .font(.system(size: 13)) + .foregroundColor(Color.onBackground) + UICountryPickerView( code: code, onCountryChanged: { code in @@ -93,6 +98,14 @@ struct PersonalDataScreen: View { } ) .frame(height: 56) + .overlay( + // Underline + Rectangle() + .frame(height: 1) + .foregroundColor(Color.onBackground) + .padding(.top, 50 / 2) + ) + VerticalSpace(height: 32) } diff --git a/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/AllPicsScreen.swift b/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/AllPicsScreen.swift index dbc97995f0..052917ab14 100644 --- a/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/AllPicsScreen.swift +++ b/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/AllPicsScreen.swift @@ -31,7 +31,7 @@ struct AllPicsScreen: View { } } .padding(.horizontal, 16) - .padding(.top, UIApplication.shared.statusBarFrame.height) + .padding(.top, statusBarHeight()) .padding(.bottom, 48) .background(Color.background) .ignoresSafeArea() diff --git a/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/Components/PlaceTopBar.swift b/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/Components/PlaceTopBar.swift index aa8196e37f..862c97868b 100644 --- a/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/Components/PlaceTopBar.swift +++ b/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/Components/PlaceTopBar.swift @@ -48,7 +48,7 @@ struct PlaceTopBar: View { ) } .padding(.horizontal, padding) - .padding(.top, UIApplication.shared.statusBarFrame.height) + .padding(.top, statusBarHeight()) VerticalSpace(height: 32) diff --git a/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/Reviews/AllReviewsScreen.swift b/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/Reviews/AllReviewsScreen.swift index e664742d75..d5df437303 100644 --- a/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/Reviews/AllReviewsScreen.swift +++ b/iphone/Maps/Tourism/Presentation/Home/Screens/Profile/PlaceDetails/Reviews/AllReviewsScreen.swift @@ -19,7 +19,7 @@ struct AllReviewsScreen: View { } } .padding(.horizontal, 16) - .padding(.top, UIApplication.shared.statusBarFrame.height) + .padding(.top, statusBarHeight()) .padding(.bottom, 48) .background(Color.background) .ignoresSafeArea() diff --git a/iphone/Maps/Tourism/Presentation/Home/Screens/Search/SearchViewModel.swift b/iphone/Maps/Tourism/Presentation/Home/Screens/Search/SearchViewModel.swift index 9777c3f61b..b574d9de9c 100644 --- a/iphone/Maps/Tourism/Presentation/Home/Screens/Search/SearchViewModel.swift +++ b/iphone/Maps/Tourism/Presentation/Home/Screens/Search/SearchViewModel.swift @@ -19,7 +19,7 @@ class SearchViewModel: ObservableObject { func observeSearch() { placesRepository.searchResource.sink { completion in - if case let .failure(error) = completion { + if case .failure(_) = completion { // nothing } } receiveValue: { places in diff --git a/iphone/Maps/Tourism/Presentation/Home/TabBarController.swift b/iphone/Maps/Tourism/Presentation/Home/TabBarController.swift index cd080fa8a0..4f46657743 100644 --- a/iphone/Maps/Tourism/Presentation/Home/TabBarController.swift +++ b/iphone/Maps/Tourism/Presentation/Home/TabBarController.swift @@ -17,11 +17,14 @@ class TabBarController: UITabBarController { // navigation functions let goToCategoriesTab = { self.selectedIndex = 1 } + + // we use dismiss, because we present screens modally let goToMap = { - self.dismiss(animated: true) + self.dismiss(animated: false) } let goToAuth = { - self.performSegue(withIdentifier: "TourismMain2Auth", sender: nil) + UserPreferences.shared.setShouldGoToAuth(value: true) + self.dismiss(animated: true) } let goToMapAndCreateRoute: (PlaceLocation) -> Void = { location in UserPreferences.shared.setLocation(value: location) diff --git a/iphone/Maps/UI/Storyboard/Main.storyboard b/iphone/Maps/UI/Storyboard/Main.storyboard index c4cc79649d..77d159d49f 100644 --- a/iphone/Maps/UI/Storyboard/Main.storyboard +++ b/iphone/Maps/UI/Storyboard/Main.storyboard @@ -1,9 +1,9 @@ - + - + @@ -27,7 +27,7 @@ - + @@ -38,12 +38,12 @@ - @@ -105,8 +105,8 @@ - - + + @@ -134,8 +134,8 @@ -