-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#182 score card table UI #187
base: develop
Are you sure you want to change the base?
Conversation
62306a0
to
2477814
Compare
…rm to include buckets
…rm to include buckets
…ta handling and validation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR enhances the score card table UI and updates various component styling and API routes. Key changes include:
- Introducing a new ScoreCardTable component with seniority-based grouping.
- Refining the styling of multiple components (Typography, Modal, Listbox, Input, etc.) by removing or adjusting border and layout classes.
- Adding new API routes for ladder data and employee addition.
Reviewed Changes
Copilot reviewed 55 out of 55 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
frontend/src/components/modules/ScoreCardTable/ScoreCardTable.tsx | New component for displaying a score card table with seniority logic. |
frontend/src/components/modules/BucketCard/BucketCard.tsx | Adjusted Link styling in the bucket card component. |
frontend/src/components/common/Typography/variantsStyles.tsx | Introduced centralized typography variant styles. |
frontend/src/components/common/Typography/Typography.tsx | Removed redundant local typography variants in favor of the centralized definitions. |
frontend/src/components/common/Tabs/Tabs.tsx | Simplified tab border styling. |
frontend/src/components/common/Pagination/Pagination.tsx | Updated pagination styling by removing a specific border color class. |
frontend/src/components/common/Modal/Modal.tsx | Enhanced modal with size options and header adjustments. |
frontend/src/components/common/Modal/Modal.interface.ts | Extended modal interface to support additional header and size options. |
frontend/src/components/common/Listbox/Listbox.tsx | Revised listbox styling by omitting a border color class. |
frontend/src/components/common/Input/Input.tsx | Simplified input styling by removing a border color class. |
frontend/src/components/common/ExpandableSection/ExpandableSection.tsx | Added support for rendering additional right-aligned content. |
frontend/src/components/common/ExpandableSection/ExpandableSection.interface.ts | Updated interface to support the new expandable section option. |
frontend/src/components/common/Editor/Editor.tsx | Adjusted editor styling by removing a border color class. |
frontend/src/components/common/Button/Button.tsx | Modified button disabled styles to remove reliance on a specific border color. |
frontend/src/components/common/AccordionCard/AccordionCard.tsx | Refined accordion card styling by removing redundant border classes. |
frontend/src/app/api/ladder/[slug]/route.ts | Added a new API route for fetching ladder data by slug. |
frontend/src/app/api/employee/add/route.ts | Introduced an API route for adding new employees. |
frontend/src/app/(auth)/auth/page.tsx | Updated auth page input styling. |
frontend/src/app/(app)/(root)/my-space/page.tsx | Fixed next band lookup logic using a nullish coalescing operator. |
frontend/src/app/(app)/(root)/library/[ladder]/page.tsx | Corrected prop passing to the LadderDetails component. |
Comments suppressed due to low confidence (1)
frontend/src/components/common/Modal/Modal.tsx:16
- There appears to be a typo in the CSS class; 'minw-[1664px]' should likely be 'min-w-[1664px]' to ensure proper styling.
xl: 'minw-[1664px] max-w-[90vw] h-[90vh]',
{bands.map(({ bandNumber, buckets, threshold }, bandIndex) => ( | ||
<Fragment key={bandNumber}> | ||
{buckets.map((bucket, bucketIndex) => { | ||
const lastRow = seniorityIndex + bandIndex + bucketIndex === bucketsCount + 1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The logic for determining 'lastRow' by summing indexes may not accurately identify the final row. Consider revising this calculation to use a direct comparison based on the row count.
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
Let's merge this as is, once Drizzle is hooked up I'll revisit and improve the data flow/structure/types