Open
Conversation
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.
Dashboard page, job‑posting improvements, DB performance indexes, and extension fixes
Summary
This PR adds a new dashboard view with charts, enhances job‑posting flows in both backend and frontend, introduces performance DB indexes, and fixes the browser extension parsing.
Changes
• Frontend
◦ New dashboard route (apps/frontend/src/routes/dashboard.tsx) with charts/metrics.
◦ Applied page UI/logic updates (apps/frontend/src/routes/applied.tsx).
◦ Posting card details refinements and navbar tweak.
◦ Route tree re-generated (apps/frontend/src/routeTree.gen.ts).
◦ Minor job-posting service update.
• Backend
◦ Job‑posting endpoints and service logic expanded (index.ts, services.ts).
◦ Validators updated and DB schema changes (schema.ts) to support new fields/queries.
• Database
◦ Added performance indexes via migration 0001_add_performance_indexes.sql.
◦ Drizzle snapshot/journal updated accordingly.
• Browser Extension
◦ Major updates to content-xing.js for more reliable extraction and “fixed extension” issues.
• Misc
◦ Lockfile adjustments.
Why
• Provide a consolidated dashboard for quick insights (includes chart fixes).
• Improve job‑posting create/fetch/update flows and validation.
• Speed up common queries with new indexes.
• Stabilize data capture via the browser extension.
How to test
• Database: apply the new migration so indexes are created.
• Backend: verify job‑posting endpoints (create/list/detail) still work; check validators.
• Frontend:
◦ Navigate to Dashboard and confirm charts render and update as expected.
◦ Verify Applied page interactions and posting details display.
◦ Smoke test navbar links.
• Extension: load the updated extension and confirm data extraction on target pages works.