-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
fixing-keyboard.js docs #7689
base: dev-2.0
Are you sure you want to change the base?
fixing-keyboard.js docs #7689
Conversation
@@ -273,13 +277,13 @@ function keyboard(p5, fn){ | |||
* function draw() { | |||
* // Update x and y if an arrow key is pressed. | |||
* if (keyIsPressed === true) { | |||
* if (keyCode === UP_ARROW) { | |||
* if (keyCode === 38) { // Up arrow key |
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 wondering if a select(key)
would be better or will it cause confusion for some users? We could simplify the if else logic, what do you think?
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.
// Update x and y if an arrow key is pressed.
if (keyIsPressed === true) {
switch (keyCode) {
case 38: // Up arrow key
y -= 1;
break;
case 40: // Down arrow key
y += 1;
break;
case 37: // Left arrow key
x -= 1;
break;
case 39: // Right arrow key
x += 1;
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 ok leaving this one as is for now since after a quick search, we don't use switch
/case
in other reference examples so far, so while it can be simplified, it might be a little easier to understand for now if we use the more familiar if/
else` construct.
@@ -899,19 +903,19 @@ function keyboard(p5, fn){ | |||
* | |||
* function draw() { | |||
* // Update x and y if an arrow key is pressed. | |||
* if (keyIsDown(37) === true) { | |||
* if (keyIsDown('ArrowLeft') === 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.
while this is correct and same from the old version, I think its a pattern we should discourage, maybe add a note at the begining that keyIsDown()
returns true and false, and we don't need to explicitly compare with the truth
value.
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 support simplifying this as you suggest.
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 generally also agree, but also wanted to flag that this is consistent with what the current documentation style guide has, so we might want to also update that if we're considering changing the pattern we want to use.
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 believe it’s valuable to maintain the explicit comparison with ===
true because it ensures both clarity and consistency with our current style guide. By explicitly checking for the boolean true, we remove any ambiguity around type coercion, making the code more readable and easier to reason about, especially for newer contributors who might be less familiar with how JavaScript treats truthy and falsy values. Additionally, if the style guide specifically calls out this convention, it’s simpler and more consistent to uphold it in the code rather than change the guide itself. This keeps our documentation and code aligned without introducing extra work or confusion about whether keyIsDown
is always guaranteed to return a strict boolean.
Currently we could keep this as it is and in future if it comes up, I would be more than happy to change the style-guide and replace by not comparing with truth values? Let me know your thoughts?
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 think at this point it's ok to leave as-is because probably other things are priority if that's ok with everyone else. But maybe we can make an issue to discuss changing the style guide + updating other docs?
No description provided.