[ios] Fix the route estimates colors when the app appearance was changed #7331

Merged
root merged 2 commits from ios/fix-route-estimates-colors-on-appearance-changing into master 2024-02-07 11:07:02 +00:00
Member

Fix organicmaps/organicmaps#7292

When the app appearance is changed and the route preview screen is active the estimates colors are not changed properly:

Issue:

This happens because estimates is a stored property (of MWMNavigationDashboardEntity class) of the NSAttributedString type that is built during initialization and cannot be changed dynamically to react to the theme changes.

@property(copy, nonatomic, readonly) NSAttributedString *estimate;

 entity.estimate =
      estimate(info.m_totalTimeInSec, @(info.m_totalPedestrianDistanceStr.c_str()),
               @(info.m_totalPedestrianUnitsSuffix.c_str()), self.etaAttributes, self.etaSecondaryAttributes, YES, YES);

NSAttributedString *estimate(NSTimeInterval time, NSString *distance, NSString *distanceUnits,
                             NSDictionary *primaryAttributes, NSDictionary *secondaryAttributes, BOOL isWalk, BOOL showEta) {
  auto result = [[NSMutableAttributedString alloc] initWithString:@""];
  if (showEta) {
    NSString *eta = [NSDateComponentsFormatter etaStringFrom:time];
    [result appendAttributedString:[[NSMutableAttributedString alloc] initWithString:eta attributes:primaryAttributes]];
    [result appendAttributedString:MWMNavigationDashboardEntity.estimateDot];
  }

  if (isWalk) {
    UIFont *font = primaryAttributes[NSFontAttributeName];
    auto textAttachment = [[NSTextAttachment alloc] init];
    auto image = [UIImage imageNamed:@"ic_walk"];
    textAttachment.image = image;
    auto const height = font.lineHeight;
    auto const y = height - image.size.height;
    auto const width = image.size.width * height / image.size.height;
    textAttachment.bounds = CGRectIntegral({{0, y}, {width, height}});

    NSMutableAttributedString *attrStringWithImage =
      [NSAttributedString attributedStringWithAttachment:textAttachment].mutableCopy;
...

Solution

There is no reason to store such complex NSAttributedString in the instance.
The logic was moved into the instance method to get string only if it is needed. And when theme is changing attr strinl will be rebuilt with proper colors and formatting.

Result:

Simulator Screen Recording - iPhone 15 Pro - 2024-02-07 at 14 21 09

Fix https://git.omaps.dev/organicmaps/organicmaps/pulls/7292 When the app appearance is changed and the route preview screen is active the estimates colors are not changed properly: <img src="https://github.com/organicmaps/organicmaps/assets/79797627/4e48d42d-bc08-4465-b73b-d4ee20956c71" width="200"> <img src="https://github.com/organicmaps/organicmaps/assets/79797627/dfa2bba3-84f9-4f21-a7bb-636bf59b194c" width="200"> <img src="https://github.com/organicmaps/organicmaps/assets/79797627/1c2dd660-3a45-4d03-ba8c-5946285348a8" width="200"> ### Issue: This happens because `estimates` is a stored property (of `MWMNavigationDashboardEntity` class) of the `NSAttributedString` type that is built during initialization and cannot be changed dynamically to react to the theme changes. `@property(copy, nonatomic, readonly) NSAttributedString *estimate;` ```objc entity.estimate = estimate(info.m_totalTimeInSec, @(info.m_totalPedestrianDistanceStr.c_str()), @(info.m_totalPedestrianUnitsSuffix.c_str()), self.etaAttributes, self.etaSecondaryAttributes, YES, YES); NSAttributedString *estimate(NSTimeInterval time, NSString *distance, NSString *distanceUnits, NSDictionary *primaryAttributes, NSDictionary *secondaryAttributes, BOOL isWalk, BOOL showEta) { auto result = [[NSMutableAttributedString alloc] initWithString:@""]; if (showEta) { NSString *eta = [NSDateComponentsFormatter etaStringFrom:time]; [result appendAttributedString:[[NSMutableAttributedString alloc] initWithString:eta attributes:primaryAttributes]]; [result appendAttributedString:MWMNavigationDashboardEntity.estimateDot]; } if (isWalk) { UIFont *font = primaryAttributes[NSFontAttributeName]; auto textAttachment = [[NSTextAttachment alloc] init]; auto image = [UIImage imageNamed:@"ic_walk"]; textAttachment.image = image; auto const height = font.lineHeight; auto const y = height - image.size.height; auto const width = image.size.width * height / image.size.height; textAttachment.bounds = CGRectIntegral({{0, y}, {width, height}}); NSMutableAttributedString *attrStringWithImage = [NSAttributedString attributedStringWithAttachment:textAttachment].mutableCopy; ... ``` ### Solution There is no reason to store such complex NSAttributedString in the instance. The logic was moved into the instance method to get string only if it is needed. And when theme is changing attr strinl will be rebuilt with proper colors and formatting. Result: ![Simulator Screen Recording - iPhone 15 Pro - 2024-02-07 at 14 21 09](https://github.com/organicmaps/organicmaps/assets/79797627/64b51b04-e8ee-416c-b04b-d36679888854)
biodranik (Migrated from github.com) approved these changes 2024-02-07 10:54:48 +00:00
biodranik (Migrated from github.com) left a comment

Thanks!

Thanks!
@ -53,3 +52,4 @@
UIImage * image(routing::turns::PedestrianDirection t) {
if (![MWMLocationManager lastLocation])
return nil;
biodranik (Migrated from github.com) commented 2024-02-07 10:50:16 +00:00

nit: looks like in this file in ObjC { should be on the previous line, after the switch (t).

nit: looks like in this file in ObjC `{` should be on the previous line, after the `switch (t)`.
@ -166,6 +135,39 @@ NSArray<MWMRouterTransitStepInfo *> *buildRouteTransitSteps(NSArray<MWMRoutePoin
return [[NSAttributedString alloc] initWithString:@" • " attributes:attributes];
biodranik (Migrated from github.com) commented 2024-02-07 10:52:14 +00:00
    NSString * eta = [NSDateComponentsFormatter etaStringFrom:self.timeToTarget];
```suggestion NSString * eta = [NSDateComponentsFormatter etaStringFrom:self.timeToTarget]; ```
biodranik (Migrated from github.com) commented 2024-02-07 10:53:07 +00:00
    UIFont * font = primaryAttributes[NSFontAttributeName];
```suggestion UIFont * font = primaryAttributes[NSFontAttributeName]; ```
biodranik (Migrated from github.com) commented 2024-02-07 10:53:38 +00:00
    NSMutableAttributedString * attrStringWithImage = [NSAttributedString attributedStringWithAttachment:textAttachment].mutableCopy;
```suggestion NSMutableAttributedString * attrStringWithImage = [NSAttributedString attributedStringWithAttachment:textAttachment].mutableCopy; ```
biodranik (Migrated from github.com) approved these changes 2024-02-07 11:06:49 +00:00
biodranik (Migrated from github.com) left a comment

Thanks!

Thanks!
This repo is archived. You cannot comment on pull requests.
No reviewers
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
2 participants
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#7331
No description provided.