[ios] [carplay] enable theme switching in the carplay

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2024-01-31 14:38:04 +04:00 committed by Alexander Borsuk
parent 5f04705c2d
commit 6da9ee7e91
2 changed files with 15 additions and 19 deletions

View file

@ -40,19 +40,6 @@ final class CarPlayService: NSObject {
self.interfaceController?.delegate = self
let configuration = CPSessionConfiguration(delegate: self)
sessionConfiguration = configuration
// Try to use the CarPlay unit's interface style.
if #available(iOS 13.0, *) {
switch configuration.contentStyle {
case .light:
rootTemplateStyle = .light
window.overrideUserInterfaceStyle = .light
case .dark:
rootTemplateStyle = .dark
window.overrideUserInterfaceStyle = .dark
default:
rootTemplateStyle = window.overrideUserInterfaceStyle == .light ? .light : .dark
}
}
searchService = CarPlaySearchService()
let router = CarPlayRouter()
router.addListener(self)
@ -67,7 +54,9 @@ final class CarPlayService: NSObject {
applyBaseRootTemplate()
router.restoreTripPreviewOnCarplay(beforeRootTemplateDidAppear: true)
}
ThemeManager.invalidate()
if #available(iOS 13.0, *) {
updateContentStyle(configuration.contentStyle)
}
FrameworkHelper.updatePositionArrowOffset(false, offset: 5)
}
@ -100,11 +89,18 @@ final class CarPlayService: NSObject {
@objc func interfaceStyle() -> UIUserInterfaceStyle {
if let window = window,
window.traitCollection.userInterfaceIdiom == .carPlay {
return window.traitCollection.userInterfaceStyle
return rootTemplateStyle == .dark ? .dark : .light
}
return .unspecified
}
@available(iOS 13.0, *)
private func updateContentStyle(_ contentStyle: CPContentStyle) {
rootTemplateStyle = contentStyle == .dark ? .dark : .light
// Update the current map style in accordance with the CarPLay content theme.
ThemeManager.invalidate()
}
private var rootTemplateStyle: CPTripEstimateStyle = .light {
didSet {
(interfaceController?.rootTemplate as? CPMapTemplate)?.tripEstimateStyle = rootTemplateStyle
@ -329,9 +325,8 @@ extension CarPlayService: CPSessionConfigurationDelegate {
@available(iOS 13.0, *)
func sessionConfiguration(_ sessionConfiguration: CPSessionConfiguration,
contentStyleChanged contentStyle: CPContentStyle) {
let isLight = contentStyle == .light
window?.overrideUserInterfaceStyle = isLight ? .light : .dark
rootTemplateStyle = isLight ? .light : .dark
// Handle the CarPlay content style changing triggered by the 'Always Show Dark Maps' toggle.
updateContentStyle(contentStyle)
}
}

View file

@ -201,6 +201,7 @@ final class CarPlayMapViewController: MWMViewController {
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
super.traitCollectionDidChange(previousTraitCollection)
// Triggers the map style updating when CarPlay's 'Appearance' setting is changed.
ThemeManager.invalidate()
}