organicmaps/iphone/Maps/UI/Search/Tabs/SearchTabViewController.swift
Kiryl Kaveryn 106961931e
[ios] fix internal scroll scrolling to the top
When the user starts scrolling to the top from the halfscreen position the internal scroll continues scrolling the table even if the content offset is zero. This commit fixes it.

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
2025-03-23 20:03:10 +04:00

85 lines
3.2 KiB
Swift

@objc(MWMSearchTabViewControllerDelegate)
protocol SearchTabViewControllerDelegate: SearchOnMapScrollViewDelegate {
func searchTabController(_ viewController: SearchTabViewController, didSearch: String, withCategory: Bool)
}
@objc(MWMSearchTabViewController)
final class SearchTabViewController: TabViewController {
private enum SearchActiveTab: Int {
case history = 0
case categories
}
private static let selectedIndexKey = "SearchTabViewController_selectedIndexKey"
@objc weak var delegate: SearchTabViewControllerDelegate?
private lazy var frameworkHelper: MWMSearchFrameworkHelper = {
return MWMSearchFrameworkHelper()
}()
private var activeTab: SearchActiveTab = SearchActiveTab.init(rawValue:
UserDefaults.standard.integer(forKey: SearchTabViewController.selectedIndexKey)) ?? .categories {
didSet {
UserDefaults.standard.set(activeTab.rawValue, forKey: SearchTabViewController.selectedIndexKey)
}
}
override func viewDidLoad() {
super.viewDidLoad()
let history = SearchHistoryViewController(frameworkHelper: frameworkHelper,
delegate: self)
history.title = L("history")
let categories = SearchCategoriesViewController(frameworkHelper: frameworkHelper,
delegate: self)
categories.title = L("categories")
viewControllers = [history, categories]
if frameworkHelper.isSearchHistoryEmpty() {
tabView.selectedIndex = SearchActiveTab.categories.rawValue
} else {
tabView.selectedIndex = activeTab.rawValue
}
}
override func viewDidDisappear(_ animated: Bool) {
super.viewDidDisappear(animated)
activeTab = SearchActiveTab.init(rawValue: tabView.selectedIndex ?? 0) ?? .categories
}
func reloadSearchHistory() {
(viewControllers[SearchActiveTab.history.rawValue] as? SearchHistoryViewController)?.reload()
}
}
extension SearchTabViewController: ModallyPresentedViewController {
func presentationFrameDidChange(_ frame: CGRect) {
viewControllers.forEach { ($0 as? ModallyPresentedViewController)?.presentationFrameDidChange(frame) }
}
}
extension SearchTabViewController: SearchOnMapScrollViewDelegate {
func scrollViewDidScroll(_ scrollView: UIScrollView) {
delegate?.scrollViewDidScroll(scrollView)
}
func scrollViewWillEndDragging(_ scrollView: UIScrollView, withVelocity velocity: CGPoint, targetContentOffset: UnsafeMutablePointer<CGPoint>) {
delegate?.scrollViewWillEndDragging(scrollView, withVelocity: velocity, targetContentOffset: targetContentOffset)
}
}
extension SearchTabViewController: SearchCategoriesViewControllerDelegate {
func categoriesViewController(_ viewController: SearchCategoriesViewController,
didSelect category: String) {
let query = L(category) + " "
delegate?.searchTabController(self, didSearch: query, withCategory: true)
}
}
extension SearchTabViewController: SearchHistoryViewControllerDelegate {
func searchHistoryViewController(_ viewController: SearchHistoryViewController,
didSelect query: String) {
delegate?.searchTabController(self, didSearch: query, withCategory: false)
}
}