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

Remove emptyMessage var if its not changing #1203

Merged
merged 1 commit into from
Feb 22, 2017

Conversation

jhadvig
Copy link
Member

@jhadvig jhadvig commented Feb 1, 2017

Found out that there are place in the code where we use emptyMessage var as part of the scope, where we just set it to "No $resource to show" and thats it. So I've got rid of that and use the scoped loaded variable to check if the resources are loaded since we do it on most parts of the code.
Other option would be to get rid even of the loaded var and check only the resource variable, which wont be set by default in the controller... eg:

<div ng-if="!services">Loading...</div>
<div class="row" ng-if="services">
     <tbody ng-if="(services | hashSize) == 0">
         <tr><td colspan="4"><em>No image streams to show</em></td></tr>
     </tbody>
     <tbody ng-if="(imageStreams | hashSize) > 0">

Also removed emptyMessage var on places we didn't even used that variable in views.

Will add dist after review

@spadgett PTAL

Closes #1182

@spadgett spadgett self-requested a review February 1, 2017 13:00
@spadgett spadgett self-assigned this Feb 1, 2017
@spadgett
Copy link
Member

spadgett commented Feb 1, 2017

@jhadvig I think the places we should make this change are

  • When the message doesn't switch from "Loading..." to "No resources to show" ($scope.emtpyMessage is set once and never changed)
  • When we want different styles for empty states like Table Empty States V2 #497

Hesitant to change a lot working code if it's not for one of the two above reasons.

@jhadvig
Copy link
Member Author

jhadvig commented Feb 1, 2017

@spadgett ok, will update the PR so the changes only tackle mentioned reasons.
THanks !

@spadgett
Copy link
Member

spadgett commented Feb 1, 2017

So we do have the other #497 for empty states. I think for now we should probably only look at places when $scope.emptyMessage is set once and never changed.

@jhadvig
Copy link
Member Author

jhadvig commented Feb 6, 2017

@spadgett PTAL

@@ -176,8 +176,6 @@ angular.module('openshiftConsole')
pods: '=',
// Optional active pods map to display whether or not pods have endpoints
activePods: '=?',
// Optional empty message to display when there are no pods.
emptyMessage: '=?',
Copy link
Member

Choose a reason for hiding this comment

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

This breaks the loading message on the browse -> pods page.

@@ -194,8 +192,6 @@ angular.module('openshiftConsole')
services: '=',
portsByRoute: '=',
showNodePorts: '=?',
// Optional empty message to display when there are no pods.
emptyMessage: '=?',
Copy link
Member

Choose a reason for hiding this comment

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

@spadgett
Copy link
Member

spadgett commented Feb 6, 2017

@jhadvig Thanks for removing some completely unused variables

@jhadvig
Copy link
Member Author

jhadvig commented Feb 7, 2017

@spadgett updated .. PTAL :)

@spadgett spadgett added this to the 1.6.0 milestone Feb 10, 2017
@spadgett
Copy link
Member

Thanks @jhadvig, will merge when the stream opens for 1.6

@jwforres
Copy link
Member

@jhadvig needs to be rebased

@jwforres
Copy link
Member

@jhadvig actually this PR shouldn't have been touching vendor.js at all, I'm not seeing a reason for it to, make sure you clean/install deps/build after you rebase

@spadgett
Copy link
Member

actually this PR shouldn't have been touching vendor.js at all

It was from when we were pulling in the bootstrap-switch dependency update. Should disappear on the clean/install

@openshift-bot openshift-bot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Feb 21, 2017
@jhadvig
Copy link
Member Author

jhadvig commented Feb 22, 2017

It was from when we were pulling in the bootstrap-switch dependency update. Should disappear on the clean/install

yep

@jwforres @spadgett I've updated the PR, should be fine now

@openshift-bot openshift-bot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Feb 22, 2017
@spadgett
Copy link
Member

[merge]

@openshift-bot
Copy link

Evaluated for origin web console merge up to f0588be

@openshift-bot
Copy link

openshift-bot commented Feb 22, 2017

Origin Web Console Merge Results: SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pull_requests_origin_web_console/1069/) (Base Commit: 36c701f)

@openshift-bot openshift-bot merged commit 5d8765c into openshift:master Feb 22, 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.

4 participants