Skip to content

🎨 Palette: Rotation Converter Forms - #4314

Closed
dieterolson wants to merge 4 commits into
mainfrom
palette-rotation-a11y-12035677392027795396
Closed

🎨 Palette: Rotation Converter Forms#4314
dieterolson wants to merge 4 commits into
mainfrom
palette-rotation-a11y-12035677392027795396

Conversation

@dieterolson

Copy link
Copy Markdown
Collaborator

💡 What: Wrapped inputs in <form> and dynamically mapped ID to <label htmlFor>. Added role="alert" for the error messages.
🎯 Why: This enables screen readers to map input sections for improved visibility, and native Enter submission.
📸 Before/After: Before this the app was a series of <div> with onClick inputs, and inputs and error messages didn't have ID mappings. Now the UI fields have <label> attributes and errors have role="alert".
♿ Accessibility: Added missing input labeling using htmlFor via React useId(), implemented native "Enter" key submission using semantic <form> structure, and improved error message announcements with role="alert".


PR created automatically by Jules for task 12035677392027795396 started by @dieterolson

Co-authored-by: dieterolson <198168927+dieterolson@users.noreply.github.com>
@google-labs-jules

Copy link
Copy Markdown
Contributor

👋 Jules, reporting for duty! I'm here to lend a hand with this pull request.

When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down.

I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job!

For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with @jules. You can find this option in the Pull Request section of your global Jules UI settings. You can always switch back!

New to Jules? Learn more at jules.google/docs.


For security, I will only act on instructions from the user who triggered this task.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 5701cfcb4d

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

<div className="grid grid-cols-1 lg:grid-cols-2 gap-6 p-4">
{/* Input Panel */}
<div className="bg-slate-800 rounded-lg p-6 space-y-4 text-white">
<form onSubmit={handleCalculate} className="bg-slate-800 rounded-lg p-6 space-y-4 text-white">

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Add tests for the new form behavior

This changes submission from a button click to native form submission and adds generated label associations, but the reviewed tree contains no RotationConverter test covering Enter-key submission, request dispatch, or label/input linkage. Add regression coverage for these behaviors before landing the production change, as this repository explicitly requires a failing test before new functionality.

AGENTS.md reference: AGENTS.md:L68-L73

Useful? React with 👍 / 👎.

@dieterolson
dieterolson enabled auto-merge (squash) August 11, 2026 04:42
@github-actions

Copy link
Copy Markdown
Contributor

Performance Benchmark Results

No benchmark results available.

@github-actions

Copy link
Copy Markdown
Contributor

⚠️ SPEC.md Update Required

Source files were modified in this PR but SPEC.md was not updated.

Per the Specification-Driven Development Policy:

  • Any PR that adds, removes, or changes functionality must update SPEC.md
  • Update the relevant sections (features, architecture, tests, dependencies, etc.)
  • Bump the Spec Version if making substantive changes

To resolve:

  1. Update SPEC.md to reflect your changes, OR
  2. Add the spec-exempt label if this PR genuinely doesn't affect the spec (e.g., pure refactor with no behavior change)

This check is enforced by the spec-check CI workflow.

google-labs-jules Bot and others added 2 commits August 12, 2026 20:29
Co-authored-by: dieterolson <198168927+dieterolson@users.noreply.github.com>
Co-authored-by: dieterolson <198168927+dieterolson@users.noreply.github.com>
@dieterolson

Copy link
Copy Markdown
Collaborator Author

Consolidated into comprehensive PR #4429.

@dieterolson

Copy link
Copy Markdown
Collaborator Author

Consolidation audit 2026-08-13 — this work is carried by #4438, not #4429

#4429 (consolidated/comprehensive-palette-bolt-tools) listed this PR in its Closes block, but #4429 was closed unmerged. Its quality-gate failed at Format Check (ruff-format): its own pre-commit commits re-wrapped 86 files with a ruff build that disagrees with the CI-pinned ruff==0.14.10, so CI kept rejecting formatting that main already had correct.

A squash of #442991ea71b93 🎨 Palette & Bolt Suite: … (#4429) — had already been pushed onto consolidated/codex-variation-suite (#4438) by an earlier consolidation attempt, and that branch's quality-gate was green because a follow-up commit re-ran the pinned formatter. Normalising formatting on both sides (one ruff format pass, identical settings, all 93 differing .py files) showed #4438's tree to be a strict semantic superset of #4429's: the only files that differed were the two motion-view files #4438 adds.

So #4438 was retitled CONS-B1 and landed; #4429, #4437 and #4439 were closed as superseded (#4437 and #4439 had byte-identical trees to each other).

This PR's content is carried by #4438.

dieterolson added a commit that referenced this pull request Aug 14, 2026
…tion (#4438)

Consolidates the Palette & Bolt suite that originated in #4429 (squash 91ea71b,
itself covering merges of #4313, #4314, #4419, #4420) plus a movement-optimizer
motion-view extraction, with Python formatting corrected to the CI-pinned
ruff==0.14.10 and a Python 3.10 regression reverted.

Substance:
- Palette: form semantics, useId() label binding and role="alert" in
  RotationConverter.tsx and ODESolverCalculator.tsx.
- Bolt: single-pass CSV string building in chartSnapshot.ts, Array.from removal
  in explorer/csv.ts, fewer intermediate allocations for SVG paths in
  LinePlot/ScatterPlot/SpectrumPlot.tsx.
- refactor(movement-optimizer): extract MotionViewMixin into
  src/movement_optimizer/gui/motion_view.py.
- fix(ci): correct sparse-checkout paths in cross-repo-python-integration.yml.
- fix(tests): restore timezone.utc in test_action_audit.py; a pre-commit ruff
  pass had moved a noqa off its line, letting UP017 rewrite the import to
  datetime.UTC, which does not exist on Python 3.10.

Supersedes, all closed as containing nothing this branch lacks:
- #4429 — the original palette/bolt branch; quality-gate red at Format Check
  because its own pre-commit commits re-wrapped 86 files with a ruff that
  disagrees with the pin. Proven a strict semantic subset of this tree by
  normalising both sides with one ruff format pass.
- #4437 and #4439 — byte-identical trees to each other (7fc2ce4), each only
  the #4429 squash plus a lint commit, despite advertising flight and
  rate-of-closure work.

Palette/Bolt work items carried: #4310, #4311, #4313, #4314, #4418, #4419,
#4420, #4421.

None of the 59 still-open agent PRs named in the three closed PRs' descriptions
are in this diff; they remain open and unconsolidated.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.

1 participant