-
Notifications
You must be signed in to change notification settings - Fork 231
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
[WIP][DO NOT MERGE] Fix Issue #109 - Table Empty Messages #125
[WIP][DO NOT MERGE] Fix Issue #109 - Table Empty Messages #125
Conversation
Agree, the big blue center button is probably sufficient in these cases. |
@@ -24,7 +24,22 @@ | |||
<div class="container-fluid"> | |||
<div class="row"> | |||
<div class="col-md-12 gutter-top"> | |||
<table class="table table-bordered table-hover table-mobile"> | |||
<div ng-if="(routes | hashSize) == 0" class="blank-slate-pf"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You may be able to do ng-if="!(routes | hashSize)"
and ng-if="routes | hashSize"
and drop the == 0
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is in our code so much we might add an isEmpty
filter.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree!
We should either reuse our existing empty state style (with no background color) or switch the other, existing empty state messages to use |
you should have both the button in the empty state message and the button in the top right, you shouldn't take away an action from somewhere a user expects it unless they are forbidden from doing that action |
You won't be adding create buttons for any pages that do not already have them, if they aren't there already it is because we haven't implemented a GUI creation form for them yet. |
@spadgett @MarkDeMaria I think I prefer the empty state message that doesn't have the grey background. |
Fix issue #109 (may need to update the description at the top to get github to automatically close when merged) |
Added it to the description. |
Origin Web Console Action Required: Pull request cannot be automatically merged, please rebase your branch from latest HEAD and push again |
-Builds page is without a button because there was not a button previously -Routes page has a button because there was a button previously
6dbbfff
to
b0e017f
Compare
@benjaminapetersen @jwforres @spadgett Periods on the Events pages have been removed! Deployments (Uses PF-Image Icon) Deployments->Deployment->Events Tab Events (Uses FA-Calendar Icon) Services->Service |
Do you think any of these would benefit from some help text, like "no builds" has: 'To create your project's first build, visit our Build Configuration Wizard'? Text size (example: other resources, "Select a resource from the list above") seems to be a bit too large, fighting with the page heading for attention. This instance could be updated as "Nothing selected" with smaller help text "Select a resource from the list above". |
Origin Web Console Action Required: Pull request cannot be automatically merged, please rebase your branch from latest HEAD and push again |
Agree with Ben on the text seeming very large. The Events icon isn't right, a calendar icon has too much meaning, it would On Jul 29, 2016 4:46 PM, "Ben Petersen" [email protected] wrote:
|
@stevekuznetsov rosie seems a little preoccupied with this PR too. |
The robot has been disciplined. Let me know if new behavior emerges. |
h2 looks better, can't decide on the monitoring icon, but its better than the calendar icon. The big box just still doesnt feel right to me on these white pages, lets talk visual design next week when robb and steve are back |
Can we reuse the style we already have on other pages? I'd rather not start using class |
This is to get the ball rolling on how I should approach these empty state table messages, as some pages have a 'Create Button' option when the table is empty and some pages do not. I know that some pages have tables in their sub-pages (the Events tab of a Deployment, the page for an Image Stream, the Events tab of a Pod, the page for a Service). If I have missed any major pages with tables please let me know!
Fixes #109
Those with Create buttons that I have found:
Those without Create Buttons that I have found:
For pages without 'Create Buttons,' which pages should have create buttons added and which should not? Below are three screenshots - The first is an Empty State Table without a 'create button,' and the other two are tables with 'create buttons,' but one keeps its original 'create button' in the top right while the other removes it until there is something to show in the table.
Builds - No create buttons

Routes - Two Buttons

Routes - One Button in Table (Other button will appear after there is >=1 route present)
