Skip to content
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

Open
wants to merge 8 commits into
base: develop
Choose a base branch
from
Open

#182 score card table UI #187

wants to merge 8 commits into from

Conversation

mhussajn
Copy link
Collaborator

@mhussajn mhussajn commented Mar 10, 2025

Let's merge this as is, once Drizzle is hooked up I'll revisit and improve the data flow/structure/types

image

@mhussajn mhussajn requested a review from skorekm March 10, 2025 11:56
@mhussajn mhussajn linked an issue Mar 10, 2025 that may be closed by this pull request
@mhussajn mhussajn force-pushed the 182-score-card-table branch from 62306a0 to 2477814 Compare March 18, 2025 12:53
@mhussajn mhussajn marked this pull request as draft March 18, 2025 12:53
@mhussajn mhussajn marked this pull request as ready for review April 3, 2025 15:15
@mhussajn mhussajn requested a review from Copilot April 3, 2025 15:15
Copy link

@Copilot Copilot AI left a 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;
Copy link
Preview

Copilot AI Apr 3, 2025

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Score Card Table
1 participant