Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
/NestPublic
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Implement Dynamic Labels & Repository Languages in the Contribute Page#1126

Draft
rishyym0927 wants to merge10 commits intoOWASP:main
base:main
Choose a base branch
Loading
fromrishyym0927:bug/enhance

Conversation

rishyym0927
Copy link
Contributor

@rishyym0927rishyym0927 commentedMar 17, 2025
edited
Loading

Resolves#1108

Title: 🏗️ Implement Dynamic Labels & Repository Languages in the Contribute Page 🚀

Description:

This PR enhances theCard component and updates theContribute Page to support dynamic labels and repository languages. These changes improve the information displayed for each project, making it easier for users to identify relevant details at a glance.

Key Changes:

  • UpdatedCard Component:
    • Added support forlabels andrepository_languages as new props.
    • Modified the layout to render multiple labels next to the project title.
    • Conditionally displays repository languages when available.
  • Contribute Page Enhancements:
    • ExtendedCardProps andModalProps to include the new properties.

Why This is Needed:

  • Enhances UI consistency by ensuring theCard component displays structured data.

Testing & Validation:

✔️ Verified UI updates in different screen sizes.
✔️ Ensured TypeScript type safety for new props.

Recording.2025-03-17.165756.mp4

@coderabbitaicoderabbitai
Copy link
Contributor

coderabbitaibot commentedMar 17, 2025
edited
Loading

Summary by CodeRabbit

  • New Features

    • The Card component now displays additional details, such as multiple labels and repository programming languages.
  • Style/Refactor

    • Enhanced layout consistency with optimized padding for mobile views.
    • Improved organization of social links and action buttons, offering a cleaner, more cohesive appearance.

Walkthrough

This change introduces two new properties,labels andrepository_languages, to the Card component. The component has been updated with layout and styling refinements, including adjustments based on mobile state and improvements in icon and social link rendering. Additionally, the Contribute page now passes the new properties from issue data, and the corresponding type definitions have been expanded.

Changes

FilesChange Summary
frontend/src/components/Card.tsx,frontend/src/types/card.tsAdded new propslabels andrepository_languages to the Card component; updated layout, styling, and streamlined icon logic; expanded type definitions.
frontend/src/pages/Contribute.tsxUpdatedrenderContributeCard to passlabels andrepository_languages sourced from issue data to the Card component.

Assessment against linked issues

ObjectiveAddressedExplanation
Enhance Contribute Page Card with project label and programming language details [#1108]

Possibly related PRs

  • Fixed contribute page responsiveness #1127: The changes in the main PR are related to the modifications in theCard component, specifically the addition of new props, which are also referenced in the retrieved PR's updates to the same component.

Suggested labels

docs

Suggested reviewers

  • arkid15r
  • kasya
✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat withCodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag@coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag@coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings togenerate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add@coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add@coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add@coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit ourDocumentation for detailed information on how to use CodeRabbit.
  • Join ourDiscord Community to get help, request features, and share feedback.
  • Follow us onX/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitaicoderabbitaibot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between16d2030 and5c6e0a0.

📒 Files selected for processing (4)
  • frontend/src/components/Card.tsx (4 hunks)
  • frontend/src/pages/Contribute.tsx (3 hunks)
  • frontend/src/types/card.ts (1 hunks)
  • frontend/src/types/modal.ts (1 hunks)
🔇 Additional comments (6)
frontend/src/types/modal.ts (1)

13-14:Interface extension looks good

The addition of optionallabels andrepository_languages properties to theModalProps interface is clean and maintains backward compatibility. Using string arrays for these properties is appropriate for representing collections of labels and programming languages.

frontend/src/types/card.ts (1)

14-15:Interface extension is consistent

The addition of optionallabels andrepository_languages properties to theCardProps interface mirrors the changes in theModalProps interface, maintaining consistency across the codebase. The types are appropriate for the data being represented.

frontend/src/pages/Contribute.tsx (2)

56-57:Properly connecting issue data to Card component

The code correctly passes the labels and repository languages from the issue object to the Card component.


70-71:Maintaining UI consistency between Card and Modal

Good job passing the same properties to both the Card and Modal components, ensuring consistent information display across UI elements.

frontend/src/components/Card.tsx (2)

32-33:Props declaration matches interface

The component props declaration correctly includes the new properties defined in the CardProps interface.


121-133:Repository languages implementation looks good

The implementation for displaying repository languages is well-structured:

  1. It properly checks both existence and length before rendering
  2. The styling is consistent with the app's design system
  3. It supports both light and dark modes with appropriate color contrasts
  4. The flex-wrap layout ensures good responsiveness on various screen sizes

rishyym0927and others added2 commitsMarch 17, 2025 17:12
adding null check for the labelsCo-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
@rishyym0927rishyym0927 changed the titleAdding Labels and Repo Languages In The Contribute Page Implement Dynamic Labels & Repository Languages in the Contribute PageMar 17, 2025
@rishyym0927
Copy link
ContributorAuthor

hey@arkid15r@kasya any update on this?

@rishyym0927
Copy link
ContributorAuthor

Hey@arkid15r do i need to make any change in this pr?

Copy link
Collaborator

@kasyakasya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Nice update! Left some comments!

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

We used to have these labels before, so thanks for adding those back.

One of the features they had is that they were clickable with the label/topic being added to a search field and fetching filtered records.
Do you think you could add that too?

Copy link
ContributorAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

"Hey@kasya, that's a great idea! Thanks for suggesting it. Since implementing this would require some modifications to the backend, I think it would be best to address it in a new issue. I'm currently working on the backend and will make sure to include this feature in future updates

kasya reacted with thumbs up emoji
@rishyym0927rishyym0927 requested a review fromkasyaMarch 30, 2025 12:06
Copy link
Contributor

@coderabbitaicoderabbitaibot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
frontend/src/components/Card.tsx (1)

114-129:Consider making labels clickable for filtering

Per the past review comments, there was a feature request to make labels clickable for filtering content. While you've responded that this requires backend changes, consider preparing the UI for this functionality.

You could modify the label spans to be wrapped in a button or link component with an onClick handler that would be implemented later:

- <span+ <button    key={`label-${index}`}    className={`rounded-md px-3 py-1 text-sm font-medium ${      isMobile        ? 'bg-sky-200 text-sky-900'        : 'bg-sky-100 text-sky-800 dark:bg-sky-900 dark:text-sky-300'    }`}+   onClick={() => {/* To be implemented */}}  >    {label}- </span>+ </button>
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between9f0b6bb andbcbecd8.

📒 Files selected for processing (2)
  • frontend/src/components/Card.tsx (4 hunks)
  • frontend/src/pages/Contribute.tsx (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • frontend/src/pages/Contribute.tsx
🧰 Additional context used
🧬 Code Definitions (1)
frontend/src/components/Card.tsx (3)
frontend/src/types/card.ts (1)
  • CardProps (11-26)
frontend/src/utils/constants.ts (1)
  • desktopViewMinWidth (90-90)
frontend/src/utils/urlIconMappings.ts (1)
  • getSocialIcon (24-54)
🔇 Additional comments (10)
frontend/src/components/Card.tsx (10)

30-31:Props added for enhanced information display

The addition of thelabels andrepository_languages props aligns with the PR objectives to support dynamic labels and repository languages on the Contribute page.


36-36:Simplified mobile detection function

Good refactoring - extracting the mobile detection logic into a named function improves readability.


42-46:Responsive container layout with conditional padding

The container's padding now adapts based on the mobile state, providing better spacing on different screen sizes.


48-72:Simplified title display with direct link wrapping

The title is now wrapped directly in a Link component with proper styling. This is a cleaner approach than previous implementations.


74-86:Improved icon display logic

The condition for displaying icons has been simplified to a more readable form, checking if any icon keys exist in the icons object.


90-97:Enhanced project link styling

The project link styling has been updated with more specific classes for better visibility in both light and dark modes.


101-112:Repository languages display implementation

The implementation for displaying repository languages looks good. The conditional rendering ensures the section only appears when languages are available.


114-129:Add null check for labels array

While thelabels?.length > 0 check prevents rendering when labels is empty, there's a past review comment that should be addressed. The render function inside still useslabels.map() without a null check, which could cause a runtime error.

Apply this change:

-  {labels.map((label, index) => (+  {labels?.map((label, index) => (     <span       key={`label-${index}`}       className={`rounded-md px-3 py-1 text-sm font-medium ${

114-129:Responsive styling for labels based on mobile state

Good implementation of conditional styling based on mobile state. This ensures labels look appropriate on both desktop and mobile views.


131-165:Improved layout for social links and action button

The layout for social links and action button has been restructured into a flex container with proper justification, improving the overall UI organization.

@rishyym0927
Copy link
ContributorAuthor

Recording.2025-03-30.173734.mp4

Hey@kasya I have made the changes requested!!

Copy link
Collaborator

@kasyakasya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

A few more requests ⬇️

</div>
)}

{labels?.length > 0 && (
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Labels background changes on smaller screens 🤔
Dark theme:
Screenshot 2025-03-30 at 7 22 11 PM
Screenshot 2025-03-30 at 7 22 20 PM
Light theme:
Screenshot 2025-03-30 at 7 23 13 PM
Screenshot 2025-03-30 at 7 23 20 PM

@rishyym0927rishyym0927 requested a review fromkasyaApril 1, 2025 19:51
Copy link
Contributor

@coderabbitaicoderabbitaibot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Actionable comments posted: 0

♻️ Duplicate comments (2)
frontend/src/components/Card.tsx (2)

118-133:⚠️ Potential issue

Fix inconsistent label styles between mobile and desktop views.

Labels have different background and text colors depending on screen size, which creates visual inconsistency when switching between views. This was previously noted in review comments.

Apply this fix to maintain consistent styling across all screen sizes:

              className={`rounded-md px-3 py-1 text-sm font-medium ${-                isMobile-                  ? 'bg-sky-200 text-sky-900'-                  : 'bg-sky-100 text-sky-800 dark:bg-sky-900 dark:text-sky-300'+                'bg-sky-100 text-sky-800 dark:bg-sky-900 dark:text-sky-300'              }`}

146-168:⚠️ Potential issue

Adjust action button positioning to match previous layout.

The action button should be positioned at the far right of the card, as per previous feedback from reviewers. Currently, it's grouped with social links which doesn't match the expected design.

Apply this change to fix the layout:

-        <div className="flex w-full items-center justify-between">+        <div className="flex w-full items-center justify-between">          {social && social.length > 0 && (-            <HStack mt={2}>+            <HStack mt={2} className="flex-grow">              {social.map((item) => (                <Link                  key={`${item.title}-${item.url}`}                  href={item.url}                                   rel="noopener noreferrer"                  display="flex"                  alignItems="center"                  gap={2}                >                  <FontAwesomeIcon icon={getSocialIcon(item.url)} className="h-5 w-5" />                </Link>              ))}            </HStack>+          ) || <div className="flex-grow"></div>}-          )}          <ActionButton tooltipLabel={tooltipLabel} url={button.url} onClick={button.onclick}>            {button.icon}            {button.label}          </ActionButton>        </div>

This ensures the button is always at the far right, regardless of whether social links are present or not.

🧹 Nitpick comments (1)
frontend/src/components/Card.tsx (1)

129-130:Future enhancement: Make labels clickable for filtering.

In a previous discussion, it was mentioned that labels should be clickable and filter content. While not implemented in this PR (as it requires backend changes), consider adding this functionality in a future update.

Would you like help creating an issue to track the implementation of clickable labels for filtering?

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between007f28d and28fbeaf.

📒 Files selected for processing (1)
  • frontend/src/components/Card.tsx (5 hunks)
🧰 Additional context used
🧬 Code Definitions (1)
frontend/src/components/Card.tsx (4)
frontend/src/types/card.ts (1)
  • CardProps (11-26)
frontend/src/utils/constants.ts (1)
  • desktopViewMinWidth (91-91)
frontend/src/utils/data.ts (1)
  • Icons (66-107)
frontend/src/utils/urlIconMappings.ts (1)
  • getSocialIcon (24-54)
🔇 Additional comments (6)
frontend/src/components/Card.tsx (6)

30-31:Props added successfully to support dynamic labels and repository languages.

These new props align with the PR objectives to enhance the Card component with the ability to display labels and repository languages.


36-36:Clean refactoring of mobile detection logic.

The simplified function improves readability while maintaining the same functionality.


42-46:Improved responsive container styling.

Good implementation of conditional padding based on screen size, ensuring appropriate spacing on both mobile and desktop views.


105-116:Good implementation of repository languages display.

The code properly handles the conditional rendering with null checks and applies appropriate styling for the language tags that works in both light and dark themes.


118-118:Good implementation of null check for labels array.

The optional chaining operator properly guards against potential runtime errors when labels is undefined or null, addressing previous feedback.


71-71:Good UI/UX improvements throughout the component.

Several small enhancements improve the component:

  • Smooth color transition for the title
  • More robust icon display logic with better conditional checks
  • Enhanced project link styling for better visibility

These changes result in a more polished user experience.

Also applies to: 78-90, 94-98

@rishyym0927rishyym0927 marked this pull request as draftApril 1, 2025 20:06
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@coderabbitaicoderabbitai[bot]coderabbitai[bot] left review comments

@arkid15rarkid15rAwaiting requested review from arkid15rarkid15r is a code owner

@kasyakasyaAwaiting requested review from kasyakasya is a code owner

Requested changes must be addressed to merge this pull request.

Assignees
No one assigned
Labels
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

Enhance Contribute Page Card with Project Label and Language Details
2 participants
@rishyym0927@kasya

[8]ページ先頭

©2009-2025 Movatter.jp