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

fixing-keyboard.js docs #7689

Open
wants to merge 2 commits into
base: dev-2.0
Choose a base branch
from

Conversation

perminder-17
Copy link
Contributor

@perminder-17 perminder-17 commented Mar 29, 2025

No description provided.

@perminder-17 perminder-17 marked this pull request as ready for review March 31, 2025 02:56
@@ -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

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?

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;
  }
}

Copy link
Contributor

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) {

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.

Copy link
Member

@ksen0 ksen0 Apr 3, 2025

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.

Copy link
Contributor

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.

Copy link
Contributor Author

@perminder-17 perminder-17 Apr 6, 2025

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?

Copy link
Contributor

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants