Add photo station management UI - #136
Draft
noobydp wants to merge 2 commits into
Draft
Conversation
This was referenced Jul 11, 2026
noobydp
force-pushed
the
codex/photo-stations-management-ui
branch
from
July 11, 2026 07:50
a1a4b88 to
3a7a0e0
Compare
jasonmadigan
requested changes
Jul 26, 2026
noobydp
force-pushed
the
codex/photo-stations-management-ui
branch
from
August 2, 2026 08:46
3a7a0e0 to
2197926
Compare
Contributor
Author
|
Updated this branch after review and rebased it onto current Changes made in this update:
Local validation:
Code and PR drafted with Codex |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This adds the first frontend surface for managing reusable photo stations. Users can now see saved stations from the main dashboard, rename or delete them, and open a dedicated station corner editor to adjust the saved paper corners.
The PR includes:
Dependency
This PR depends on #135.
Because these branches live in a fork and the base repository does not have the stacked base branches, this PR targets
main. Until 135 lands, GitHub's diff may include commits from that backend PR as part of the stacked branch history.Implementation Notes
This PR depends on the backend station APIs from the previous PR.
The management UI is intentionally separate from the capture/reuse flow so reviewers can validate the station data model and station management surface before reviewing the larger trace workflow changes.
The station corner editor reuses the existing paper-corner editing interaction model where possible, instead of introducing a separate editor pattern. Paper size values are shared through the existing
PaperSizetype so A4, Letter, A3, and Tabloid stay consistent across backend and frontend.Tests
corepack pnpm@10.29.2 --dir frontend lintcorepack pnpm@10.29.2 --dir frontend exec tsc --noEmitCode and PR drafted with Codex