Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show upcoming arrivals on stations #11

Open
elliottwilliams opened this issue Sep 2, 2016 · 2 comments
Open

Show upcoming arrivals on stations #11

elliottwilliams opened this issue Sep 2, 2016 · 2 comments
Labels
Milestone

Comments

@elliottwilliams
Copy link
Member

The table view cell UI for stations should be changed to include badges of the routes arriving at that station. The routes are listed in order of their arrival time, and are reordered dynamically as vehicles arrive and depart.

@elliottwilliams elliottwilliams added this to the v1.0 milestone Sep 2, 2016
This was referenced Sep 2, 2016
elliottwilliams added a commit that referenced this issue Sep 11, 2016
… than being initialized and added to the view hierarchy manually.

This pattern is one I established in commit a1a0467, and it will enable work
on #11, since it's now more trivial to add complex views to the station view
controller scene.
@elliottwilliams
Copy link
Member Author

elliottwilliams commented Sep 30, 2016

Broken down into subtasks, this should entail:

  • Create an ArrivalsCollectionViewController class.
  • Genericize the data source from ArrivalsTableViewController into ArrivalDataSource. It should serve ArrivalsCollectionViewController as well. Note that unlike the approach in RoutesCollectionViewModel, it cannot be the delegate, as the arrivals table and arrivals collection load different nibs and represent the data differently.
  • Edit station table view cell prototypes to include arrivals collections. Set custom height appropriately.

It may be necessary for performance reasons to not load arrivals for all stations of a route at once. Suggestions include:

  • Ensure station bindings are closed when the station is offscreen.
  • Avoid calling meta_update on models used to construct the table, and rely on vehicle_update events to populate the information. Note that this would require model-level changes.
    • By using the LastEventCache on the default Connection, the cost of redundant meta_update calls is trivialized.
  • Design the arrivals table view UI to only show arrivals for one or two stations. Perhaps a couple stations scrolled near the center of the page could expand to show arrivals, or the stations would have to be "selected" somehow in the table at first.

@elliottwilliams
Copy link
Member Author

Reopening to wait on the sorting task. The arrivals cannot be sorted in order of arrival time until Timetable is implemented.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant