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: prevent FactorFence key controls from firing when an input is focused #552

Merged
merged 2 commits into from
Mar 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 47 additions & 20 deletions src/visualizers/FactorFence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,6 @@ class FactorFence extends P5Visualizer(paramDesc) {
// no stroke (rectangles without borders)
this.sketch.strokeWeight(0)
this.sketch.frameRate(30)

// Only need a couple of frames to start with:
this.stop(tryFrames)
}

/** md
Expand All @@ -372,6 +369,29 @@ term that the mouse is above. Clicking a prime will set it as the persistent
highlight value. You can drag the chart in any direction to pan the view.

**/
// Implementation notes: control events (keypresses and mouse gestures) are
// handled in this code in a slightly roundabout way: every draw() call
// checks whether a keypress is in effect and/or whether any mouse
// gestures are occurring, and handles them accordingly. But since the
// graph doesn't change except as a result of these actions (or the cache
// filling), the draw loop can generally stop. So the interaction checkers
// have to extend the draw loop if they fire. And then finally, since
// the draw loop tends to stop, pretty much all that the actual
// event-handling functions (mousePressed() etc, well below here in this
// file) have to do is restart the draw loop, and then the interaction
// checkers in draw() will actually implement the behaviors that should
// be invoked by those events.
// It might be more natural-seeming to implement the behaviors directly
// in the event-handling functions. That simpler scheme would likely work
// for the mouse events. However, it is unclear how, in that scheme, one
// could implement the behavior that the graph continues to zoom (or
// stretch or whatever) as you hold the corresponding key down. That's
// because you can only rely on a single keyPressed() event and a single
// keyReleased() event, no matter how long you hold a key down.
// So something has to run in the meantime and check if the key is still
// down, and it seems as though that has to be the draw() call. And
// as long as the draw() call is implementing the key controls, it seems
// that for consistency, it might as well do all the controls.
mouseCheckDrag() {
const movement = new p5.Vector(this.sketch.mouseX, this.sketch.mouseY)
movement.sub(this.dragStart)
Expand All @@ -381,6 +401,7 @@ highlight value. You can drag the chart in any direction to pan the view.
this.dragging = true
movement.mult(1 / this.scaleFactor)
this.graphCorner = this.graphCornerStart.copy().add(movement)
this.extendLoop()
}
}

Expand All @@ -404,37 +425,36 @@ In addition, several keypress commands are recognized:
: 0.97
this.scaleFactor *= keyScale
this.graphCorner.y = this.graphCorner.y / keyScale
}
/** md
} else if (this.sketch.keyIsDown(this.sketch.UP_ARROW)) {
/** md
- up and down arrow: stretch the bars vertically
**/
if (this.sketch.keyIsDown(this.sketch.UP_ARROW)) {
**/
// stretch up UP
this.heightScale *= 1.03
}
if (this.sketch.keyIsDown(this.sketch.DOWN_ARROW)) {
} else if (this.sketch.keyIsDown(this.sketch.DOWN_ARROW)) {
// contract down DOWN
this.heightScale *= 0.97
}
/** md
} else if (this.sketch.keyIsDown(74)) {
/** md
- J/I/K/L: pan the chart left/up/down/right
**/
if (this.sketch.keyIsDown(74)) {
**/
// pan left J
this.graphCorner.x -= 10 / this.scaleFactor
}
if (this.sketch.keyIsDown(76)) {
} else if (this.sketch.keyIsDown(76)) {
// pan right L
this.graphCorner.x += 10 / this.scaleFactor
}
if (this.sketch.keyIsDown(73)) {
} else if (this.sketch.keyIsDown(73)) {
// pan up I
this.graphCorner.y -= 10 / this.scaleFactor
}
if (this.sketch.keyIsDown(75)) {
} else if (this.sketch.keyIsDown(75)) {
// pan down K
this.graphCorner.y += 10 / this.scaleFactor
} else {
// no key we care about
return
}
// Make sure that if we keep the key down, the drawing keeps adjusting:
this.extendLoop()
}

draw() {
Expand Down Expand Up @@ -516,6 +536,8 @@ In addition, several keypress commands are recognized:
// If we are waiting on elements or factorizations, extend lifetime
if (this.collectFailed || this.firstFailure < barsInfo.maxBars) {
this.extendLoop()
} else {
this.stop(tryFrames)
}
}

Expand Down Expand Up @@ -677,12 +699,17 @@ In addition, several keypress commands are recognized:
this.extendLoop()
}

mouseDragged(event: MouseEvent) {
this.mouseLast = event
this.extendLoop()
}

mousePressed() {
if (!this.mouseOnSketch()) return
this.mouseDown = true
this.dragStart = new p5.Vector(this.sketch.mouseX, this.sketch.mouseY)
this.graphCornerStart = this.graphCorner.copy()
this.continue()
this.extendLoop()
}

mouseReleased() {
Expand Down
6 changes: 5 additions & 1 deletion src/visualizers/P5Visualizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,11 @@ export function P5Visualizer<PD extends GenericParamDescription>(desc: PD) {
) {
sketch[method] = (event: KeyboardEvent) => {
const active = document.activeElement
if (active && active.tagName === 'INPUT') {
if (
active
&& (active.tagName === 'INPUT'
|| active.tagName === 'TEXTAREA')
) {
return true
}
return this[method](event)
Expand Down