forked from organicmaps/organicmaps
[ios] open Menu and Settings screens with highlighting the features
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
parent
b8587fccee
commit
c2eb1adfbf
4 changed files with 71 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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? {
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Add table
Reference in a new issue