-
Notifications
You must be signed in to change notification settings - Fork 90
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
fix(Canvas): Canvas directive to component implementation #640
Conversation
c38452f
to
04fcb59
Compare
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.
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
?
Other than the keystroke issue, LGTM 👍 ! |
Thanks @dtaylor113 going to look into that issue now |
5fa5db1
to
98112ab
Compare
var ctrlKeyCode = 17; | ||
var ctrlDown = false; | ||
var aKeyCode = 65; | ||
var dKeyCode = 68; |
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 not used
// | ||
// zoom. | ||
// | ||
$scope.$on('zoomIn', function (evt, args) { |
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.
arguments are not used
ctrl.chart.zoom.in(); | ||
}); | ||
|
||
$scope.$on('zoomOut', function (evt, args) { |
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.
arguments are not used
6f1687c
to
e457ae0
Compare
@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. |
e457ae0
to
ea1f04c
Compare
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.
LGTM! Thanks
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.
|
||
ctrl.clickCallbackfmDir = function (item) { | ||
if (!item.disableInToolbox) { | ||
ctrl.clickCallback(item); |
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 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)) {...
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.
Can do. Makes sense for consistency purposes.
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.
After looking into it, seems like ctrl.clickCallback
isn't a function so would be unable to check for a function in this instance
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.
If it isn't a function, how is it being called?
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.
Or maybe I'm misunderstanding
}; | ||
|
||
ctrl.startDragCallbackfmDir = function (event, ui, item) { | ||
ctrl.startDragCallback(event, ui, item); |
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.
Same call out on function check...
if (angular.isFunction(ctrl.startDragCallback)) {...
startDragCallback: '=', | ||
clickCallback: '=', | ||
searchText: '=' | ||
}, |
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.
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...
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.
The one-way binds seem to work in this case.
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.
@jeff-phillips-18 @dtaylor113 since the syntax on the consumption end should be the same is there a contrast opinion to updating the syntax?
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.
works for me.
nodeActions: '=', | ||
nodeClickHandler: '=', | ||
nodeCloseHandler: '=' | ||
}, |
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.
Same comment regarding using one-way binds instead of two-way on the -Handlers
using <
, do we need the handlers passed back out?
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.
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: '=' |
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.
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}); |
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.
Might be better to pass 2 arguments rather than an object.
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.
I agree
|
||
$document.find('body').keydown(function (evt) { | ||
if (evt.keyCode === ctrlKeyCode) { | ||
ctrlDown = true; |
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 can check evt.ctrlKey to determine if ctrl is pressed rather than keeping state.
evt.stopPropagation(); | ||
evt.preventDefault(); | ||
} | ||
}); |
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.
Why keyup sometimes and keydown others? I would think we could check only on keydown for all of these.
ea1f04c
to
7397ace
Compare
@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); |
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.
I would && these together for readability.
7397ace
to
67053e8
Compare
controller: function toolboxItemsController () { | ||
var ctrl = this; | ||
|
||
ctrl.clickCallbackfmDir = function (item) { |
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 an odd name for the function, what does the 'fm' mean?
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.
I have no idea. They were already named these lol. Will change them.
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.
That stood for 'from directive'. I think at some point just 'clickCallback' wasn't descriptive enough.
67053e8
to
b981aa1
Compare
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.
Minor updates, an opinion question or two, and some props!
chartViewModel: "=?", | ||
readOnly: "=?", | ||
hideConnectors: "=?" | ||
}, |
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.
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.
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.
I'm fine with double quotes. I can go back and make them consistent.
Note: single quotes :)
evt.stopPropagation(); | ||
evt.preventDefault(); | ||
} | ||
}); |
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.
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;
}
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.
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}) |
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.
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.
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.
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.
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.
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" | |||
} | |||
], | |||
] |
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.
Good catch on going through the examples and cleaning up! Thank you!
return point.matrixTransform(matrix.inverse()); | ||
}; | ||
|
||
ctrl.hideConnectors = ctrl.hideConnectors ? ctrl.hideConnectors : false; |
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'll have to check it to confirm, but this might be a good spot for some simplification...
ctrl.hideConnectors = ctrl.hideConnectors || false;
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.
I agree
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.
If the idea is that any value makes this true, then I would use:
ctrl.hideConnectors = !!ctrl.hideConnectors;
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.
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) { |
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 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; |
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 not needed.
$scope.$digest(); | ||
} | ||
|
||
if (evt.keyCode === ctrlKeyCode) { |
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 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!
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.
Will do! Thanks :)
evt.stopPropagation(); | ||
evt.preventDefault(); | ||
} | ||
|
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 can get rid of the if (evt.ctrlKey === true)...stopPropagation
statement since you are no longer keeping track of ctrl key state.
b981aa1
to
24c0f66
Compare
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.
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: '=?', |
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 non-breaking, but we use a one way bind on the other readOnly binding would that work here too?
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.
Yes it does work here, will change for consistency.
|
||
$document.find('body').keydown(function (evt) { | ||
|
||
if (evt.keyCode === aKeyCode) { |
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.
Hi, you need evt.ctrlKey === true
here in order to do Ctrl-A, at the moment just hitting 'a' alone will select all.
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.
ahh yes good catch!
24c0f66
to
4a57c93
Compare
We don't seem to unit test this set of components, is that something we could aim for? |
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. |
@amarie401 I'm OK with adding unit tests as part of this PR or as a follow on. |
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.
Follow up PR for testing sounds like the vote. That works, let's do it!
Sounds good! Thanks guys! |
One question for @amarie401 @dtaylor113 @cdcabrera , is this a fix or a chore ? |
I would think |
Hmmm...I would say that it's a chore since it's a conversion and all the major pieces are still working. |
OK @amarie401, could you reword your commit please? |
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 |
4a57c93
to
1a15165
Compare
I'm ok with |
In that case with the possibility of the rollback then I would agree on labeling it a fix, thoughts @jeff-phillips-18 ? |
1a15165
to
b6b0f81
Compare
OK, I can go along with that. |
Description
Conversion of the Canvas directive to a component. This fixes #636
Rawgit