This repository was archived by the owner on Apr 20, 2026. It is now read-only.
Phase 4: migrate Docs domain to live data contract#179
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
mock-docsin docs page, docs API route, docs components, and docs UI config importssrc/lib/docs/model.tsas the typed non-mock docs model (types + options/constants)/api/docsto return live DB/workspace data only (no seed fallback), with stronger error signalingWhat changed
Model layer
src/lib/docs/model.tswith docs domain types and UI constants (CATEGORY_OPTIONS,PRIORITY_OPTIONS,REVIEW_STATUS_OPTIONS).ui-configto this live model module.API layer
src/app/api/docs/route.tsno longer importsSEED_DOCUMENTS.linked_to,version_history,priority,review_status,category,notes,assignments) and maps them through to response defaults.UI layer
src/app/docs/page.tsxstarts from empty state instead ofSEED_DOCUMENTS.Validation
npx eslint src/app/docs/page.tsx src/app/api/docs/route.ts src/lib/docs/model.ts src/lib/ui-config.ts✅npm run lintcurrently fails due to pre-existing repo-wide lint errors unrelated to this PR (react-hooks/set-state-in-effect and other baseline issues in non-docs areas).