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

fix(Canvas): Canvas directive to component implementation #640

Merged
merged 1 commit into from
Oct 11, 2017

Conversation

amarie401
Copy link
Contributor

@amarie401 amarie401 commented Oct 5, 2017

Description

Conversion of the Canvas directive to a component. This fixes #636

Rawgit

@amarie401 amarie401 force-pushed the canvas-to-component branch from c38452f to 04fcb59 Compare October 5, 2017 18:18
Copy link
Member

@dtaylor113 dtaylor113 left a comment

Choose a reason for hiding this comment

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

Hi Amiee, this is great! One thing I noticed is that the keys don't seem to be working Ctrl+A to select all, [Delete] key to delete currently selected, etc.
I noticed in canvas-component.js you moved the keystroke handling to an $onInit, maybe try in $postLink?

@dtaylor113
Copy link
Member

Other than the keystroke issue, LGTM 👍 !

@amarie401
Copy link
Contributor Author

Thanks @dtaylor113 going to look into that issue now

@amarie401 amarie401 force-pushed the canvas-to-component branch 2 times, most recently from 5fa5db1 to 98112ab Compare October 5, 2017 19:57
var ctrlKeyCode = 17;
var ctrlDown = false;
var aKeyCode = 65;
var dKeyCode = 68;
Copy link
Member

Choose a reason for hiding this comment

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

this is not used

//
// zoom.
//
$scope.$on('zoomIn', function (evt, args) {
Copy link
Member

Choose a reason for hiding this comment

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

arguments are not used

ctrl.chart.zoom.in();
});

$scope.$on('zoomOut', function (evt, args) {
Copy link
Member

Choose a reason for hiding this comment

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

arguments are not used

@amarie401 amarie401 force-pushed the canvas-to-component branch 2 times, most recently from 6f1687c to e457ae0 Compare October 5, 2017 20:36
@amarie401
Copy link
Contributor Author

amarie401 commented Oct 5, 2017

@dtaylor113 keys should be working now. It was using scope instead of $scope and there was an issue where the mac keyboards use the backspace keycode for "delete" so had to account for both. It wasn't working for me for that reason.

@amarie401 amarie401 force-pushed the canvas-to-component branch from e457ae0 to ea1f04c Compare October 5, 2017 23:26
Copy link
Member

@dtaylor113 dtaylor113 left a comment

Choose a reason for hiding this comment

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

LGTM! Thanks

Copy link
Member

@cdcabrera cdcabrera left a comment

Choose a reason for hiding this comment

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


ctrl.clickCallbackfmDir = function (item) {
if (!item.disableInToolbox) {
ctrl.clickCallback(item);
Copy link
Member

Choose a reason for hiding this comment

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

This may have been in the existing directive, but if we're going for consistency...

we do checks for a function within the node-toolbar-component.js should we be doing that here too?
Similar too...

if (angular.isFunction(ctrl.clickCallback)) {...

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Can do. Makes sense for consistency purposes.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

After looking into it, seems like ctrl.clickCallback isn't a function so would be unable to check for a function in this instance

Copy link
Member

Choose a reason for hiding this comment

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

If it isn't a function, how is it being called?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Or maybe I'm misunderstanding

};

ctrl.startDragCallbackfmDir = function (event, ui, item) {
ctrl.startDragCallback(event, ui, item);
Copy link
Member

Choose a reason for hiding this comment

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

Same call out on function check...

if (angular.isFunction(ctrl.startDragCallback)) {...

startDragCallback: '=',
clickCallback: '=',
searchText: '='
},
Copy link
Member

@cdcabrera cdcabrera Oct 9, 2017

Choose a reason for hiding this comment

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

One-way binds for the callbacks using < do they work? Or do we need some form of the function/callback passed back out?

The reasoning typically has to do with "watches" and "parents" then add on top of that a callback which kind of works around a watch...

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The one-way binds seem to work in this case.

Copy link
Member

Choose a reason for hiding this comment

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

@jeff-phillips-18 @dtaylor113 since the syntax on the consumption end should be the same is there a contrast opinion to updating the syntax?

Copy link
Member

Choose a reason for hiding this comment

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

works for me.

nodeActions: '=',
nodeClickHandler: '=',
nodeCloseHandler: '='
},
Copy link
Member

Choose a reason for hiding this comment

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

Same comment regarding using one-way binds instead of two-way on the -Handlers using <, do we need the handlers passed back out?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

From my knowledge, I don't believe the handlers need to be passed back out. Can change these to one-way binds as well.

node: '=',
nodeActions: '=',
nodeClickHandler: '=',
nodeCloseHandler: '='
Copy link
Member

Choose a reason for hiding this comment

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

We should add comments here (since there is no doc for this) as to what the callback arguments should be.

ctrl.actionIconClicked = function (action) {
ctrl.selectedAction = action;
if (angular.isFunction(ctrl.nodeClickHandler)) {
ctrl.nodeClickHandler({'action': action, 'node': ctrl.node});
Copy link
Member

Choose a reason for hiding this comment

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

Might be better to pass 2 arguments rather than an object.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I agree


$document.find('body').keydown(function (evt) {
if (evt.keyCode === ctrlKeyCode) {
ctrlDown = true;
Copy link
Member

Choose a reason for hiding this comment

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

You can check evt.ctrlKey to determine if ctrl is pressed rather than keeping state.

evt.stopPropagation();
evt.preventDefault();
}
});
Copy link
Member

Choose a reason for hiding this comment

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

Why keyup sometimes and keydown others? I would think we could check only on keydown for all of these.

@amarie401 amarie401 force-pushed the canvas-to-component branch from ea1f04c to 7397ace Compare October 9, 2017 19:21
@amarie401
Copy link
Contributor Author

@cdcabrera @jeff-phillips-18 made some requested changes. Still working on fixing the eventText issue.

ctrl.clickCallbackfmDir = function (item) {
if (angular.isFunction(ctrl.clickCallback)) {
if (!item.disableInToolbox) {
ctrl.clickCallback(item);
Copy link
Member

Choose a reason for hiding this comment

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

I would && these together for readability.

@amarie401 amarie401 force-pushed the canvas-to-component branch from 7397ace to 67053e8 Compare October 9, 2017 19:24
controller: function toolboxItemsController () {
var ctrl = this;

ctrl.clickCallbackfmDir = function (item) {
Copy link
Member

Choose a reason for hiding this comment

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

This is an odd name for the function, what does the 'fm' mean?

Copy link
Contributor Author

@amarie401 amarie401 Oct 9, 2017

Choose a reason for hiding this comment

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

I have no idea. They were already named these lol. Will change them.

Copy link
Member

Choose a reason for hiding this comment

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

That stood for 'from directive'. I think at some point just 'clickCallback' wasn't descriptive enough.

@amarie401 amarie401 force-pushed the canvas-to-component branch from 67053e8 to b981aa1 Compare October 9, 2017 21:36
Copy link
Member

@cdcabrera cdcabrera left a comment

Choose a reason for hiding this comment

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

Minor updates, an opinion question or two, and some props!

chartViewModel: "=?",
readOnly: "=?",
hideConnectors: "=?"
},
Copy link
Member

Choose a reason for hiding this comment

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

We seem to flip back and forth between double quotes and single without a clear reason? Do you have a preference, or you up for making them consistent? If so encourage you to go back through and check them.

Copy link
Contributor Author

@amarie401 amarie401 Oct 10, 2017

Choose a reason for hiding this comment

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

I'm fine with double quotes. I can go back and make them consistent.
Note: single quotes :)

evt.stopPropagation();
evt.preventDefault();
}
});
Copy link
Member

Choose a reason for hiding this comment

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

Just a note you don't need to change it.

This could have also been flipped to a switch. However it probably wouldn't save us much...

switch(evt.keyCode) {
  case deleteKeyCode:
  case backspaceKeyCode:
    ctrl.deleteSelected();
    $scope.$digest();
    break;

  case escKeyCode:
    ctrl.deselectAll();
    $scope.$digest();
    break;

  case ctrlKeyCode:
    evt.ctrlKey = false;
    evt.stopPropagation();
    evt.preventDefault();
    break;
}

Copy link
Contributor Author

@amarie401 amarie401 Oct 10, 2017

Choose a reason for hiding this comment

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

I'm fine with changing it to a switch..butttt looks the eslint is kinda funky when trying to implement it.

bindings: {
node: '=',
nodeActions: '=',
nodeClickHandler: '<', // @callback args - (action {string}, node {Object})
Copy link
Member

@cdcabrera cdcabrera Oct 10, 2017

Choose a reason for hiding this comment

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

We sure about calling them arguments... what about parameters? (Looking for your input)

Also it may be a good idea to be consistent and apply similar comments to other callbacks that pass arguments (through parameters) back.

Copy link
Contributor Author

@amarie401 amarie401 Oct 10, 2017

Choose a reason for hiding this comment

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

I thought args/params were pretty much the same thing? I actually documented the nodeClickHandler in ng-docs canvas.js example so might not need this comment next to it.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

reworded the ng-docs to encompass the concept of both arguments and parameters for the nodeClickHandler in the canvas.js example. Do we still need the comment?

@@ -163,7 +169,7 @@
"fontFamily": "PatternFlyIcons-webfont",
"fontContent": "\ue621"
}
],
]
Copy link
Member

Choose a reason for hiding this comment

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

Good catch on going through the examples and cleaning up! Thank you!

return point.matrixTransform(matrix.inverse());
};

ctrl.hideConnectors = ctrl.hideConnectors ? ctrl.hideConnectors : false;
Copy link
Member

Choose a reason for hiding this comment

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

You'll have to check it to confirm, but this might be a good spot for some simplification...

ctrl.hideConnectors = ctrl.hideConnectors || false;

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I agree

Copy link
Member

Choose a reason for hiding this comment

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

If the idea is that any value makes this true, then I would use:

ctrl.hideConnectors = !!ctrl.hideConnectors;

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It appears that it’s already considered a boolean, I could cast it but I think the syntax is a bit confusing

var escKeyCode = 27;

$document.find('body').keydown(function (evt) {
if (evt.ctrlKey === true) {
Copy link
Member

Choose a reason for hiding this comment

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

(this got lost by an update)

You can check evt.ctrlKey to determine if ctrl is pressed rather than keeping state.

ctrl.$onInit = function () {
var backspaceKeyCode = 8;
var deleteKeyCode = 46;
var ctrlKeyCode = 17;
Copy link
Member

Choose a reason for hiding this comment

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

This is not needed.

$scope.$digest();
}

if (evt.keyCode === ctrlKeyCode) {
Copy link
Member

Choose a reason for hiding this comment

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

You should replace this with evt.ctrlKey === true like in the Ctrl-A usage. Then you can get rid of the ctrlkeyCode variable like @jeff-phillips-18 suggests. -thanks!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Will do! Thanks :)

evt.stopPropagation();
evt.preventDefault();
}

Copy link
Member

Choose a reason for hiding this comment

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

You can get rid of the if (evt.ctrlKey === true)...stopPropagation statement since you are no longer keeping track of ctrl key state.

@amarie401 amarie401 force-pushed the canvas-to-component branch from b981aa1 to 24c0f66 Compare October 10, 2017 19:21
Copy link
Member

@cdcabrera cdcabrera left a comment

Choose a reason for hiding this comment

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

Looking really good!

Keep seeing a broken image around the "dotted" background from /img/canvas-dot-grid.png from when looking at Rawgit, though it appears consistent with the current version, so working as intended. If you can figure it out go for it

bindings: {
chartDataModel:'=',
chartViewModel: '=?',
readOnly: '=?',
Copy link
Member

Choose a reason for hiding this comment

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

This is non-breaking, but we use a one way bind on the other readOnly binding would that work here too?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes it does work here, will change for consistency.


$document.find('body').keydown(function (evt) {

if (evt.keyCode === aKeyCode) {
Copy link
Member

Choose a reason for hiding this comment

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

Hi, you need evt.ctrlKey === true here in order to do Ctrl-A, at the moment just hitting 'a' alone will select all.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

ahh yes good catch!

@amarie401 amarie401 force-pushed the canvas-to-component branch from 24c0f66 to 4a57c93 Compare October 11, 2017 13:55
@amarie401
Copy link
Contributor Author

We don't seem to unit test this set of components, is that something we could aim for?

@cdcabrera @jeff-phillips-18 @dtaylor113

@cdcabrera
Copy link
Member

cdcabrera commented Oct 11, 2017

Unit tests eh, well they might have been helpful with the conversion as a base line comparison. But since they aren't there we could two part it @dtaylor113 @jeff-phillips-18 , were there any limitations before?

I'm leaning more towards integrating them into this PR, at least a few basics to verify things are loading/showing up. It'll increase the length of time on the PR a bit, but it'll head towards the sweet spot of a well rounded/thought out piece.

@jeff-phillips-18
Copy link
Member

@amarie401 I'm OK with adding unit tests as part of this PR or as a follow on.

Copy link
Member

@cdcabrera cdcabrera left a comment

Choose a reason for hiding this comment

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

Follow up PR for testing sounds like the vote. That works, let's do it!

@amarie401
Copy link
Contributor Author

Sounds good! Thanks guys!

@jeff-phillips-18
Copy link
Member

One question for @amarie401 @dtaylor113 @cdcabrera , is this a fix or a chore ?

@dtaylor113
Copy link
Member

One question for @amarie401 @dtaylor113 @cdcabrera , is this a fix or a chore ?

I would think chore as underlying changes should be transparent to the end users.

@amarie401
Copy link
Contributor Author

Hmmm...I would say that it's a chore since it's a conversion and all the major pieces are still working.

@jeff-phillips-18
Copy link
Member

OK @amarie401, could you reword your commit please?

@cdcabrera
Copy link
Member

cdcabrera commented Oct 11, 2017

heh, it kinda fits into neither. The conversion, while it shouldn't have, still might have introduced something that breaks... I'm more partial to labeling it a fix since there's at least a version increment for it that can be rolled back

Edit: Labeling this chore if we can work the unit tests in now feels better... but yeah my vote is for fix since it'll increment and allow consumers to pick their version

@dtaylor113
Copy link
Member

dtaylor113 commented Oct 11, 2017

Wow, really thought I had added the unit tests, as there are extensive ones here and here
But I guess these existing 'blueprint canvas' unit tests would need to be updated to work with the generalized a-pf pfCanvas component. Created Issue #643 which can be addressed in a follow on PR.
-thanks

@amarie401 amarie401 force-pushed the canvas-to-component branch from 4a57c93 to 1a15165 Compare October 11, 2017 15:11
@dtaylor113
Copy link
Member

I'm ok with fix(..) as it may possibly introduce a regression.

@amarie401
Copy link
Contributor Author

amarie401 commented Oct 11, 2017

In that case with the possibility of the rollback then I would agree on labeling it a fix, thoughts @jeff-phillips-18 ?

@amarie401 amarie401 force-pushed the canvas-to-component branch from 1a15165 to b6b0f81 Compare October 11, 2017 15:14
@jeff-phillips-18
Copy link
Member

OK, I can go along with that.

@jeff-phillips-18 jeff-phillips-18 merged commit cbf373d into patternfly:master Oct 11, 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.

Canvas is a directive, consider rewriting it as a component
4 participants