dart-lang / dart_ci

Tools used by Dart's continuous integration (CI) testing that aren't needed by Dart SDK contributors. Mirrored from dart.googlesource.com/dart_ci. Do not land pull requests on Github.
BSD 3-Clause "New" or "Revised" License
18 stars 5 forks source link

Replace filter popup with a filter bar using material design (filter chips) #88

Closed whesse closed 4 years ago

whesse commented 4 years ago

The filter popup will be replaced with an always-visible filter bar at the top, using material design filter chips.

There will be choice chips for "all results", "active failures", and "unapproved active failures". There will be a text entry field "filter on", and test names, configuration names, and configuration group names will have autocomplete popup, and will become filter chips with remove ("X") button when chosen.

First step: Create the filter bar, and display the active filters from the URL as chips in the filter bar. Enable the "X" buttons on the filter chips.

Next step: Add text entry field, and autocomplete configuration groups and configuration names. Test names will not be autocompleted, but chosen when "enter" is hit.

Next step: Remove filter popup.

Next step: Add test name autocomplete data to a service, cache suite and subdirectory names in the app, autocomplete by path component. Do not allow partial test names yet.