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

Upgrade of DetailedList core and iOS #246

Merged
merged 5 commits into from
Nov 8, 2017

Conversation

Ocupe
Copy link
Contributor

@Ocupe Ocupe commented Oct 17, 2017

  • added on_select functionality
  • refresh is now only possible when a on_refresh handler was set.
  • added documentation.

Signed-off-by: Jonas Schell [email protected]

Copy link
Member

@freakboy3742 freakboy3742 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks great! I've got 2 comments.

The first I've flagged inline (about data sources). You should be able to use the Table data source stuff pretty much as-is - although you might want to look at expanding that interface so that the data source can confirm if deletion/refresh is allowed (i.e., it's the data source that allows/disallows refresh/delete. A simple list data source, by default, can't be refreshed, but can have elements deleted; but you could turn off deletion if you wanted to)

The second comment is about visualisation. This widget was originally written for a quick-and-dirty demo, so I cheated a bit with the way the visualization worked, and just encoded a simple text label for each entry. Ideally, we'd want to be able to have different display styles - including icons, title and subtitle, arrow indicators that suggest selection will cause navigation elsewhere, tag lozenges...

In terms of this specific PR, we probably only have to handle the data source issue; but if you've got any ideas about a visualization interface, that would be handy too.

return self._data

@data.setter
def data(self, data_list):
def data(self, data_list: list):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be a data source, not just a list. (c.f., the way tree/table handles data). Ideally, we want to allow end users to have dynamic sources of data, and have them displayed as a detailed list.

@Ocupe Ocupe force-pushed the upgrade_detailedlist branch from c3d04b1 to 56651aa Compare November 3, 2017 20:10
Ocupe added 4 commits November 8, 2017 16:37
* added on_select functionality
* refresh is now only possible when a on_refresh handler was set.
* added documentation.

Signed-off-by: Jonas Schell <[email protected]>
* actions are remove, insert, clear
* this is needed for the iOS backend

Signed-off-by: Jonas Schell <[email protected]>
Signed-off-by: Jonas Schell <[email protected]>
@Ocupe Ocupe force-pushed the upgrade_detailedlist branch from 97bc681 to 3665e4e Compare November 8, 2017 15:37
Signed-off-by: Jonas Schell <[email protected]>
@Ocupe
Copy link
Contributor Author

Ocupe commented Nov 8, 2017

@freakboy3742 DetailedList uses now ListDataSource. I also included a example app.

The on_refresh handler is called when the user does a 'pull down to refresh'. I'm open for a better name that represents the fact that it is a user initialised callback.

I still have to come up with a good way for styling of rows, but I think this is going to be another PR. Other than that I'm ready for a final review.

Copy link
Member

@phildini phildini left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks fantastic! Thank you so much for this.

@phildini phildini merged commit 4ec08ce into beeware:master Nov 8, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants