- fix layout of the place page container (configure it programatiacally)
- use the new modal seearch VC everywhere
-
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
The bottom route status view sometimes jumps from the top to the bottom during the 1st rendering. It happens because the view's frame is not calculated on the isVisible because the view is not init/deinit multiple times during the route building state changing. The bottom view now only changes its visibility and constraints, not the init/deinit on every update.
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
1. for now the structure is SheetStyle.Global/PlacePage/Font/TestColor...
2. the styles are used by assessing the property
before:
lineView.setStyleAndApply("Divider")
headerTitleLabel.setStyleAndApply("semibold18:blackPrimaryText")
after:
lineView.setStyleAndApply(.global(.divider))
headerTitleLabel.setFontStyle(.semibold18, color: .blackPrimary)
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
1. setElevationActivePoint is changed to work withe the CLLocationCoordinate2D that allows to pass the selected point to the core and show the blue mark on the track in the correct place
2. initWithElevationInfo is removed from the PlacePagePreviewData because the elevation profile is a part of track now and the PP header is configured in the core
3. ElevationHeightPoint stores the coordinates for easily track marks creation
4. add PlacePageTrackData to the PlacePageDate
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
1. remove the iCLoud's .Trash dir scanning because on ios this feature is blocked. This is why the `isRemoved` property was removed from the `MitadataItem`
2. runtime monitors sends only the added/updated/deleted items lists on didUpdate and the whole content on didFinishGathering
3. because of 1, when icloud is running - it is source of truth.
During the initial phase (1st enabling of enabling after disabling) all the data from the cloud and local dir will be preserved.
4. simplified the state manager's logic
5. improved logs
6. fixed test
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
The date formatter initialization is resource-intensive and all unnecessary instantiation are replaced with the call to one default static formatter.
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
* [placepage] Use localized WiFi string
Signed-off-by: David Martinez <47610359+dvdmrtnz@users.noreply.github.com>
* [placepage] Use WiFi emoji symbol 🛜
Signed-off-by: David Martinez <47610359+dvdmrtnz@users.noreply.github.com>
---------
Signed-off-by: David Martinez <47610359+dvdmrtnz@users.noreply.github.com>
- Long tap activates the Fullscreen mode and hide both the PP and the controls.
- Second long tap deactivates the fullscreen mode and put back the controls.
- Controls always visible on navigation, planning the route, searching.
- If the fullscreen is enabled and the user opens the PP, the controls will be hidden.
- If the fullscreen is enabled and the PP is opened, the longtap will exit the fullscreen without hiding the PP
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>