[Android] Opening hours UI rework #1599
No reviewers
Labels
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
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#1599
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "issue-970-place-opening-hours-rework"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Another week, another PR!
Closes Issue #970. Made Android Opening hours UI simmilar to iOS.
opening_hours
value matches different cases:Case 1: Label only
E.g.
opening_hours = 24/7
opening_hours
unparsable🌍 https://osm.org/node/3882420485 → 🕗
24/7
🌍 https://osm.org/node/6070463188 → 🕗 Unparsed
Mo-Fr 09:00-19:00; Sa,Su,PH 09:00-20:00
Show just label:
Unparsable sample:
Case 2: Label + time
E.g.
opening_hours = 10:00-22:00
opening_hours = Mo-Su 17:00-00:00
🌍 https://osm.org/node/4601505099 → 🕗
Mo-Su 17:00-00:00
Open hours are right aligned:
Case 3: Label + time + non-business time(s)
E.g.
opening_hours = 10:00-16:00, 16:30-22:00
opening_hours = Mo-Su 10:00-16:00, 16:30-22:00
🌍 https://osm.org/node/6293418985 → 🕗
Mo-Su 9:30-14:00, 15:00-18:30
Open hours are right aligned. Non-business hours text below hours.
Case 4: Label + time + week schedule
E.g.
opening_hours = Mo-Fr 09:00-20:00; Sa 10:00-17:00; Su 11:00-14:00
🌍 https://osm.org/way/684433599 → 🕗
Mo-Fr 06:00-22:00; Sa-Su 07:00-22:00
Open hours are right aligned for today and for the whole week.
Case 5: Label + time + week schedule + non-business time(s)
E.g.
opening_hours = Mo-Fr 09:00-15:00,15:30-22:00; Sa 10:00-15:00,15:30-22:00; Su 10:00-18:00
🌍 https://osm.org/node/2665722353 → 🕗
Mo-Th 13:30-16:00,20:30-23:30;Tu off;Fr,Sa 13:30-16:00,20:30-24:00;Su 13:30-16:00
Open hours are right aligned for today and for the whole week. Non-business hours text below hours for today and for each week day.
Case 6: Closed today label + week schedule + non-business time(s)
E.g.
opening_hours = Mo off; Tu-Fr 09:00-15:00,15:30-22:00; Sa 10:00-15:00,15:30-22:00; Su 10:00-18:00
🌍 https://osm.org/node/2199786968 → 🕗
Th,Fr 21:30-00:30,Sa 14:00-17:00,21:30-00:30; Mo-We off
Label tells that POI is closed today in red. Open hours are right aligned for the whole week. Non-business hours text below hours for each week day.
Layout changes:
Before:

After:

Questions:
Update 23 Nov 2021
Added em-dash as open time and non-business time separator. (I will not update all screenshots in this PR. Just belive me 😄)
Added closed weekdays as last item of week schedule:
No, it looks good now.
Not crucial, IMO.
Yes, it is easier if all days are present.
Thanks for the fixes!
nit: if (
nit: A dot at the end of the sentence looks great.
else is not needed.
Extra space after //
It may look better with em-dash and without spaces: "–"
{
== 0
!= null
What if ohStr is null?
@ -0,0 +30,4 @@
{
setTimetables(timetables);
}
Space here and below.
Question:

Is closed supposed to be always at the bottom?
For example "opening_hours=Mo-Th 09:00-14:00; Fr 09:00-15:00; Sa off; PH,Su 14:00-18:00" leads to
So the order of the week is mixed up: Friday, Sunday, Saturday.
This could lead to confusion.
@xephos1one good point, thanks. Ideally, the days of the week should be sorted. @strump