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

UI: Redesign transit UX #8304

Merged
merged 39 commits into from
Feb 14, 2020
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
b14c009
add placeholder for Key actions tab
andaley Aug 27, 2019
4262f45
navigate to key items by default
andaley Aug 27, 2019
16fbf07
add placeholder key actions list page
andaley Aug 27, 2019
912db0e
remove extra whitespace from component blueprint
andaley Aug 28, 2019
e60c6ed
add SelectableCard
andaley Sep 4, 2019
0171cad
move key actions from side nav to top nav
andaley Sep 4, 2019
ad7c788
make tabs active
andaley Sep 4, 2019
2df4bb6
remove toolbar from key actions pages
andaley Sep 4, 2019
b1fa1fd
add divs to link to each key action on key actions page
andaley Jan 29, 2020
3bdc745
move preview-head to gitignore
andaley Feb 5, 2020
2e5293c
use selectable card css
andaley Feb 5, 2020
b1900d1
remove key actions
andaley Feb 5, 2020
c8e7dca
use css grid
andaley Feb 5, 2020
de6a68c
update selectable card styling
andaley Feb 5, 2020
4660bf4
update Key Actions page header
andaley Feb 6, 2020
9250044
make cards clickable
andaley Feb 7, 2020
6a681a3
refactor supportedActions to include glyph
andaley Feb 7, 2020
8a1f993
make header black on hover
andaley Feb 10, 2020
a789def
rename selectable-card transit card and update styling
andaley Feb 10, 2020
782f645
add description and glyph for other key types
andaley Feb 10, 2020
934a731
use human readable titles for key action names
andaley Feb 10, 2020
f41bbeb
update tests; still need to fix failing ones
andaley Feb 10, 2020
98fe2fa
use datakey instead of data-key
andaley Feb 10, 2020
83e92f3
fix some failing tests
andaley Feb 10, 2020
2a27da4
fix more tests
andaley Feb 10, 2020
82b041f
remove extra chevron from rotate button
andaley Feb 11, 2020
b0d903f
remove whitespace
andaley Feb 11, 2020
0ae873c
remove pauseTest
andaley Feb 11, 2020
2a45547
use rename export to export key in the template instead of the model
andaley Feb 11, 2020
db039ce
fix last few failing tests
andaley Feb 11, 2020
a217aed
WIP
andaley Feb 11, 2020
d80dd48
link to key actions page by default
andaley Feb 12, 2020
940fa09
test for transit action title
andaley Feb 13, 2020
c51eb22
only add query params when viewing a transit secret
andaley Feb 13, 2020
d4df343
update structure icons
andaley Feb 13, 2020
4e145b9
add missing structure icons
andaley Feb 13, 2020
25978cb
resolve merge conflicts from rebase
andaley Feb 13, 2020
af5287a
use filter and map for supported actions
andaley Feb 14, 2020
06555d0
only add query params for transit secrets
andaley Feb 14, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make tabs active
  • Loading branch information
andaley committed Feb 14, 2020
commit ad7c7886a2c42a22b0ca07370e21251e2e516f13
Original file line number Diff line number Diff line change
@@ -21,14 +21,13 @@
<nav class="tabs">
<ul>
{{#each model.supportedActions as |supportedAction|}}
<li>
<li class="{{if (eq supportedAction selectedAction) 'is-active'}}">
{{#secret-link
mode="actions"
secret=model.id
class=(if (eq supportedAction selectedAction) "is-active")
queryParams=(query-params action=supportedAction)
data-test-transit-action-link=supportedAction
}}
mode="actions"
secret=model.id
queryParams=(query-params action=supportedAction)
data-test-transit-action-link=supportedAction
}}
{{capitalize supportedAction}}
{{/secret-link}}
</li>