diff --git a/iphone/Maps/Core/DeepLink/DeepLinkHandler.swift b/iphone/Maps/Core/DeepLink/DeepLinkHandler.swift index 8fee778df1..62b7d33699 100644 --- a/iphone/Maps/Core/DeepLink/DeepLinkHandler.swift +++ b/iphone/Maps/Core/DeepLink/DeepLinkHandler.swift @@ -2,6 +2,7 @@ static let shared = DeepLinkHandler() private(set) var isLaunchedByDeeplink = false + private(set) var isLaunchedByUniversalLink = false private(set) var url: URL? private override init() { @@ -35,11 +36,13 @@ self.url = URL(string: universalLink.absoluteString .replacingOccurrences(of: "http://omaps.app", with: "om:/") .replacingOccurrences(of: "https://omaps.app", with: "om:/")) + isLaunchedByUniversalLink = true return handleDeepLink(url: self.url!) } func reset() { isLaunchedByDeeplink = false + isLaunchedByUniversalLink = false url = nil } @@ -49,8 +52,14 @@ return (url.queryItems?.first(where: { $0.name == "backurl" })?.value ?? nil) } + func getInAppFeatureHighlightData() -> DeepLinkInAppFeatureHighlightData? { + guard (isLaunchedByUniversalLink || isLaunchedByDeeplink), let url else { return nil } + reset() + return DeepLinkInAppFeatureHighlightData(DeepLinkParser.parseAndSetApiURL(url)) + } + func handleDeepLinkAndReset() -> Bool { - if let url = self.url { + if let url { let result = handleDeepLink(url: url) reset() return result diff --git a/iphone/Maps/UI/BottomMenu/Menu/BottomMenuPresenter.swift b/iphone/Maps/UI/BottomMenu/Menu/BottomMenuPresenter.swift index 5172ff58cf..2c93232a31 100644 --- a/iphone/Maps/UI/BottomMenu/Menu/BottomMenuPresenter.swift +++ b/iphone/Maps/UI/BottomMenu/Menu/BottomMenuPresenter.swift @@ -1,5 +1,7 @@ protocol BottomMenuPresenterProtocol: UITableViewDelegate, UITableViewDataSource { func onClosePressed() + func cellToHighlightIndexPath() -> IndexPath? + func setCellHighlighted(_ highlighted: Bool) } class BottomMenuPresenter: NSObject { @@ -22,6 +24,7 @@ class BottomMenuPresenter: NSObject { private let sections: [Sections] private let menuCells: [CellType] private let trackRecorder = TrackRecordingManager.shared + private var cellToHighlight: CellType? init(view: BottomMenuViewProtocol, interactor: BottomMenuInteractorProtocol, @@ -31,17 +34,39 @@ class BottomMenuPresenter: NSObject { self.sections = sections let disableDonate = Settings.donateUrl() == nil self.menuCells = CellType.allCases.filter { disableDonate ? $0 != .donate : true } + self.cellToHighlight = Self.getCellToHighlight() super.init() } + + private static func getCellToHighlight() -> CellType? { + let featureToHighlightData = DeepLinkHandler.shared.getInAppFeatureHighlightData() + guard let featureToHighlightData, featureToHighlightData.urlType == .menu else { return nil } + switch featureToHighlightData.feature { + case .trackRecorder: return .recordTrack + default: return nil + } + } } extension BottomMenuPresenter: BottomMenuPresenterProtocol { func onClosePressed() { interactor.close() } + + func cellToHighlightIndexPath() -> IndexPath? { + // Highlighting is enabled only for the .items section. + guard let cellToHighlight, + let sectionIndex = sections.firstIndex(of: .items), + let cellIndex = menuCells.firstIndex(of: cellToHighlight) else { return nil } + return IndexPath(row: cellIndex, section: sectionIndex) + } + + func setCellHighlighted(_ highlighted: Bool) { + cellToHighlight = nil + } } -//MARK: -- UITableDataSource +//MARK: -- UITableViewDataSource extension BottomMenuPresenter { func numberOfSections(in tableView: UITableView) -> Int { @@ -98,7 +123,7 @@ extension BottomMenuPresenter { } } -//MARK: -- UITableDelegate +//MARK: -- UITableViewDelegate extension BottomMenuPresenter { func tableView(_ tableView: UITableView, willSelectRowAt indexPath: IndexPath) -> IndexPath? { diff --git a/iphone/Maps/UI/BottomMenu/Menu/BottomMenuViewController.swift b/iphone/Maps/UI/BottomMenu/Menu/BottomMenuViewController.swift index 00f9c52a45..23ee2a7a56 100644 --- a/iphone/Maps/UI/BottomMenu/Menu/BottomMenuViewController.swift +++ b/iphone/Maps/UI/BottomMenu/Menu/BottomMenuViewController.swift @@ -33,7 +33,14 @@ class BottomMenuViewController: MWMViewController { tableView.registerNib(cell: BottomMenuItemCell.self) tableView.registerNib(cell: BottomMenuLayersCell.self) } - + + override func viewDidAppear(_ animated: Bool) { + super.viewDidAppear(animated) + if let cellToHighlight = presenter?.cellToHighlightIndexPath() { + tableView.cellForRow(at: cellToHighlight)?.highlight() + } + } + override func viewDidLayoutSubviews() { super.viewDidLayoutSubviews() tableView.layoutIfNeeded() diff --git a/iphone/Maps/UI/Settings/MWMSettingsViewController.mm b/iphone/Maps/UI/Settings/MWMSettingsViewController.mm index 2d61a45a0d..1d295b4ccf 100644 --- a/iphone/Maps/UI/Settings/MWMSettingsViewController.mm +++ b/iphone/Maps/UI/Settings/MWMSettingsViewController.mm @@ -48,6 +48,32 @@ static NSString * const kUDDidShowICloudSynchronizationEnablingAlert = @"kUDDidS [self configCells]; } +- (void)viewDidAppear:(BOOL)animated { + [super viewDidAppear:animated]; + [self highlightFeatureIfNeeded]; +} + +- (void)highlightFeatureIfNeeded { + UITableViewCell * cell = nil; + DeepLinkInAppFeatureHighlightData * featureToHighlight = [DeepLinkHandler.shared getInAppFeatureHighlightData]; + if (!featureToHighlight || featureToHighlight.urlType != DeeplinkUrlTypeSettings) + return; + switch (featureToHighlight.feature) { + case InAppFeatureHighlightTypeNone: + case InAppFeatureHighlightTypeTrackRecorder: + // Đ•here is no options for the track recorder yet. + break; + case InAppFeatureHighlightTypeICloud: + cell = self.iCloudSynchronizationCell; + break; + } + NSIndexPath * indexPath = [self.tableView indexPathForCell:cell]; + if (!cell || !indexPath) + return; + [self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionMiddle animated:YES]; + [cell highlight]; +} + - (void)configCells { [self configProfileSection]; [self configCommonSection];