Conversation
Jobs represent potential assignments from clients, allowing the team to track incoming opportunities with title, description, rate, and attachments before they become actual Assignments. Backend: Wirespec contract, JPA entity, repository, service, controller with CRUD + file upload endpoints, Liquibase migration, and JobAuthority (READ/WRITE). Frontend: JobClient API client, JobFeature/JobList/JobDialog/JobForm components with status chips, client selector, date pickers, and document upload via DropzoneAreaField. Added to navigation drawer and routing. Includes Playwright e2e tests for create, edit, delete, and navigation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Replace manual Spring MVC annotations with Wirespec handler interfaces on the backend, use wirespec-generated JobForm directly in JobService (removing the domain JobForm.kt), and rewrite JobClient.ts to use wirespecFetch with typed endpoint clients instead of NonInternalizingClient. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Use proper package export paths (@flock/wirespec/fetch and @flock/wirespec/serialization) and add TypeScript path mappings in tsconfig.json so both Vite and tsc can resolve the modules. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
HTML <input type="number"> has implicit role "spinbutton", not "textbox". This caused all job CRUD tests to time out looking for the wrong element. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Two issues found from CI Playwright test failures:
1. GET /api/jobs failed because wirespecFetch doesn't URL-encode query
values. Serialized Pageable JSON contains {, }, [, ] characters that
Tomcat rejects per RFC 7230/3986. Added wirespecFetchSafe wrapper.
2. POST /api/jobs failed with "Sequence job_seq not found" because the
Hibernate 6 sequence migration (changelog-026) predates the Job entity
(changelog-027). Added changelog-028 to create the missing sequence.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Spread Pageable into individual query params (page, size, sort) in wirespec contract since DefaultParamSerialization cannot deserialize complex types. Fix test selectors for MUI Select comboboxes, scoped card assertions, and strict mode violations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
JobAuthority.READ/WRITETest plan
./mvnw clean install -DskipTests)npx tsc --noEmit)npm test— 25/25)🤖 Generated with Claude Code