Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Bring support UI inline with design from UXD #1444

Merged
merged 11 commits into from
Feb 8, 2018
Merged

Bring support UI inline with design from UXD #1444

merged 11 commits into from
Feb 8, 2018

Conversation

mcoker
Copy link
Contributor

@mcoker mcoker commented Feb 6, 2018

Updates to /support to bring more inline with design from UXD with some deviations from the design signed off on by the UXD team.

https://raw.githubusercontent.com/syndesisio/syndesis/master/ux/designs/support-page/img/supportpage-landing.png

Copy link
Contributor

@deeleman deeleman left a comment

Choose a reason for hiding this comment

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

Just a few comments, but nothing really remarkable other than a couple of changes requested for the SASS files in order to improve reusability when consuming PF SASS partials.

background-color: white;
padding: 2em;
}
@import 'patternfly-sass/assets/stylesheets/patternfly/variables';
Copy link
Contributor

Choose a reason for hiding this comment

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

If we feel we'll want to refer to this SASS partial often, then let's add it to scss/base/_vendor.scss and then import syndesis-sass instead. This way we will not have to import the same partial again and again in the future

font-size: $font-size-base;
padding-top: 5px;
}
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Please add a EOF break here, thx :)

<ng-template #viewTemplate>
<div class="toolbar-pf-action-right">
<div class="form-group">
<strong>{{ selectedItems() }}</strong> of <strong>{{ totalItems() }}</strong> Items
Copy link
Contributor

Choose a reason for hiding this comment

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

Two notes here, mostly addressed to @paoloantinori I guess:

Contrary to web docs rendered serverside, SPA documents are not evaluated upon rendering on screen for the first time but often through a change detection loop, which spawns a new cycle every few (very few) milliseconds. This means that whatever function call we drop in our views will be executed every few milliseconds too. And here we can see there're two function calls. While totalItems() just returns a class field length value, which is just fine, selectedItems(), on the contrary, performs a lambda call. That can become memory expensive in the long run, so my suggestions would be to have just a selectedItems: number field defined at the SupportComponent class and update it every time the selected property changes by means of the click handler, whatever it is.

Copy link
Contributor

Choose a reason for hiding this comment

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

In any event, we can get away with these bindings as is, since they only affect this component, which is meant to be eventually destroyed. However, please take into consideration the principles exposed above for the future, thanks. :)

Copy link
Contributor

Choose a reason for hiding this comment

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

got it!

@pure-bot
Copy link
Contributor

pure-bot bot commented Feb 6, 2018

Pull request approved by @deeleman - applying approved label

@pure-bot pure-bot bot added the pr/approved Applied by pure-bot when a review is approved label Feb 6, 2018
@rhuss
Copy link
Collaborator

rhuss commented Feb 7, 2018

Please reapprove after the yarn lint errors are fixed. thanks ...

@gashcrumb
Copy link
Contributor

@michael-coker this can't be merged until this yarn lint issue is fixed:

[INFO] /workspace/app/ui/src/app/support/support.component.ts
[INFO] ERROR: 37:1    no-trailing-whitespace  trailing whitespace

run yarn lint to check that your changes pass linting properly.

@mcoker
Copy link
Contributor Author

mcoker commented Feb 8, 2018

@gashcrumb done

@pure-bot pure-bot bot merged commit 84e196b into syndesisio:master Feb 8, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
pr/approved Applied by pure-bot when a review is approved
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants