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

Updated user details page #1176

Merged
merged 6 commits into from
Mar 29, 2025
Merged

Conversation

samyak003
Copy link
Collaborator

Fixes: #1160

Copy link
Contributor

coderabbitai bot commented Mar 25, 2025

Summary by CodeRabbit

  • New Features

    • Enhanced data retrieval to include author details for pull requests.
    • Updated the Home page to display a dedicated "Recent Pull Requests" section and a new "Recent Releases" card, offering clearer visibility and additional context.
    • Improved query filtering to present distinct entries per author.
  • Tests

    • Added a test case to verify the proper rendering of the Recent Pull Requests section on the Home page.

Walkthrough

This pull request adds support for including detailed pull request author information to both the backend GraphQL schema and the frontend presentation. The "author" field is exposed in the pull request node on the backend. On the frontend, the GraphQL query, data types, component rendering, and associated tests were updated to include and display the author details for recent pull requests, along with a separate section for recent releases.

Changes

File(s) Change Summary
backend/.../pull_request.py Added the "author" field to the fields tuple in the PullRequestNode's Meta class.
frontend/.../mockHomeData.ts
frontend/.../Home.test.tsx
Added a new recentPullRequests property with pull request details (including author info) in the mock data, and introduced a test case to verify the rendering of the "Recent Pull Requests" section with author information.
frontend/.../homeQueries.ts
frontend/.../home.ts
Updated the GraphQL query GET_MAIN_PAGE_DATA to include recentPullRequests(limit: 5) and extended the MainPageData type with a new PullRequestsType for handling pull request details including the author object.
frontend/.../ItemCardList.tsx
frontend/.../Home.tsx
Modified component rendering to use the new author details: updated the renderDetails parameter type with an author property, adjusted display of pull requests (switching date field and conditionally rendering author name or login with an icon), and added a new SecondaryCard for recent releases.

Assessment against linked issues

Objective (#1160) Addressed Explanation
Update the main page to display recent pull requests and releases with user author details in line with the user details page design.

Possibly related PRs

Suggested reviewers

  • kasya

📜 Recent review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 9ff48cf and 6b7a1b0.

📒 Files selected for processing (7)
  • backend/apps/github/graphql/nodes/pull_request.py (1 hunks)
  • backend/apps/github/graphql/queries/issue.py (2 hunks)
  • backend/apps/github/graphql/queries/pull_request.py (2 hunks)
  • backend/apps/github/graphql/queries/release.py (2 hunks)
  • frontend/src/api/queries/homeQueries.ts (1 hunks)
  • frontend/src/pages/Home.tsx (1 hunks)
  • frontend/src/types/home.ts (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (3)
  • backend/apps/github/graphql/nodes/pull_request.py
  • frontend/src/api/queries/homeQueries.ts
  • frontend/src/types/home.ts
🧰 Additional context used
🧬 Code Definitions (1)
frontend/src/pages/Home.tsx (1)
frontend/src/utils/dateFormatter.ts (1)
  • formatDate (1-16)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: Run frontend e2e tests
🔇 Additional comments (14)
backend/apps/github/graphql/queries/release.py (4)

4-4: Nice addition of necessary imports for the new functionality.

The import of OuterRef and Subquery from Django models is appropriate for implementing the distinct filtering feature.


35-39: Good variable naming improvement.

Renaming from query to queryset enhances code clarity by using the standard Django convention for querysets.


41-52: Well-implemented distinct filtering logic.

The subquery approach for filtering distinct releases by author is a clean implementation using Django's ORM capabilities. The code correctly:

  1. Creates a subquery that finds the latest release per author
  2. Filters the main queryset to include only those releases
  3. Preserves the ordering by published date

53-53: Consistent return statement update.

The return statement is correctly updated to use the renamed variable.

backend/apps/github/graphql/queries/issue.py (2)

4-4: Appropriate imports for the new functionality.

The import of OuterRef and Subquery is needed for implementing the distinct filtering feature.


47-56: Consistent implementation of distinct filtering.

The implementation of distinct filtering for issues follows the same pattern used in other queries, which is good for maintaining consistency across the codebase. The subquery correctly:

  1. Filters for issues with matching author_id
  2. Orders by creation date
  3. Takes only the first result per author
  4. Filters the main queryset to include only these results
backend/apps/github/graphql/queries/pull_request.py (5)

4-4: Necessary imports for the distinct filtering feature.

The import of OuterRef and Subquery is appropriate for implementing the distinct filtering logic.


17-17: Good addition of the distinct parameter to the GraphQL field.

Adding the distinct parameter with a default value of False maintains backward compatibility while enabling the new functionality.


21-21: Method signature correctly updated for the new parameter.

The method signature has been updated to include the distinct parameter with a default value of False.


23-27: Clean code formatting.

The code formatting with proper indentation and spacing improves readability.


32-43: Well-implemented distinct filtering logic.

The implementation follows the same pattern used in other query resolvers, providing a consistent approach to filtering distinct results by author. The subquery correctly:

  1. Gets the latest pull request per author
  2. Orders them by creation date
  3. Filters the main queryset appropriately
frontend/src/pages/Home.tsx (3)

275-276: Updated ItemCardList to show recent pull requests.

The component is now displaying pull requests instead of releases, with the data source correctly updated to match.


280-286: Good defensive rendering of author information.

The code now correctly renders the author information for pull requests, with a good defensive approach that checks for either name or login being available before rendering.


291-337: Well-structured new component for recent releases.

The new SecondaryCard implementation for recent releases is well-organized and includes:

  1. Proper handling of the empty state
  2. Clean grid layout for displaying multiple releases
  3. Consistent formatting with other parts of the page
  4. Good use of existing utilities like formatDate
  5. Appropriate display of author information with avatar
✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • 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 to generate 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 our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Collaborator

@arkid15r arkid15r left a comment

Choose a reason for hiding this comment

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

The issue is about updating the main page layout (recent issuer, PRs and releases) to match the user details page. The main page should have avatars while user details page shouldn't. Please adjust the code when you get a chance.

@arkid15r arkid15r marked this pull request as draft March 27, 2025 00:32
Copy link
Contributor

@coderabbitai coderabbitai bot 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 (2)
frontend/__tests__/unit/data/mockHomeData.ts (1)

82-101: Mock data covers different author scenarios, but uses future dates.

The mock data provides good test coverage by including two different author scenarios (one with name, one with login), but the dates are set in the future (March 2025).

Consider changing the dates to past dates for more realistic test data:

-      createdAt: '2025-03-25T10:00:00Z',
+      createdAt: '2023-03-25T10:00:00Z',
-      createdAt: '2025-03-24T15:30:00Z',
+      createdAt: '2023-03-24T15:30:00Z',
frontend/src/components/ItemCardList.tsx (1)

35-46: Consider handling missing author login for profile links.

The component links to the author's profile using item?.author?.login, but your mock data shows some authors might have a name but no login property, which could result in broken links.

Consider adding a conditional to only render the link when login is available:

{showAvatar && item?.author?.login ? (
  <a
    className="flex-shrink-0 text-blue-400 hover:underline dark:text-blue-200"
    href={`/community/users/${item.author.login}`}
  >
    <img
      src={item?.author?.avatarUrl}
      alt={item?.author?.name}
      className="mr-2 h-6 w-6 rounded-full"
    />
  </a>
) : showAvatar && (
  <img
    src={item?.author?.avatarUrl}
    alt={item?.author?.name}
    className="mr-2 h-6 w-6 rounded-full"
  />
)}
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between cbb45c2 and 9ff48cf.

📒 Files selected for processing (7)
  • backend/apps/github/graphql/nodes/pull_request.py (1 hunks)
  • frontend/__tests__/unit/data/mockHomeData.ts (1 hunks)
  • frontend/__tests__/unit/pages/Home.test.tsx (1 hunks)
  • frontend/src/api/queries/homeQueries.ts (1 hunks)
  • frontend/src/components/ItemCardList.tsx (1 hunks)
  • frontend/src/pages/Home.tsx (1 hunks)
  • frontend/src/types/home.ts (2 hunks)
🧰 Additional context used
🧬 Code Definitions (2)
frontend/src/pages/Home.tsx (1)
frontend/src/utils/dateFormatter.ts (1)
  • formatDate (1-16)
frontend/__tests__/unit/pages/Home.test.tsx (2)
frontend/src/pages/Home.tsx (1)
  • Home (35-399)
frontend/__tests__/unit/data/mockHomeData.ts (1)
  • mockGraphQLData (1-102)
🔇 Additional comments (9)
backend/apps/github/graphql/nodes/pull_request.py (1)

19-19: LGTM! Author field added to GraphQL schema.

The addition of the "author" field to the PullRequestNode's fields tuple is clean and follows the existing pattern. This change properly exposes the author information through the GraphQL API, which aligns with the frontend changes.

frontend/src/api/queries/homeQueries.ts (1)

57-66: LGTM! Well-structured query for recent pull requests.

The implementation follows the same pattern as other "recent" queries with appropriate fields and limiting to 5 items. The author fields match what's being exposed from the backend and align with the UI requirements.

frontend/src/components/ItemCardList.tsx (1)

21-25: LGTM! Author type definition added correctly.

The author property has been added to the type definition with the appropriate fields matching the GraphQL schema.

frontend/src/types/home.ts (2)

10-10: Addition of recentPullRequests property looks good

The new property is well-typed and follows the existing pattern of other array properties in the MainPageData type.


50-59: Well-structured PullRequestsType definition

The new PullRequestsType includes all necessary fields for displaying pull request information, including the author details. The structure is consistent with other types in this file.

frontend/__tests__/unit/pages/Home.test.tsx (1)

170-182: Test for Recent Pull Requests section is comprehensive

Great job adding a test that verifies both the section title and the individual pull request details, including author information. The test correctly checks for either the author's name or login, which matches the conditional rendering in the Home component.

frontend/src/pages/Home.tsx (3)

272-274: Good implementation of the Recent Pull Requests list

The update from "Recent Releases" to "Recent Pull Requests" in the ItemCardList is well-implemented, with the correct data source.


277-283: Nice addition of author information

The conditional rendering of author information is well-implemented, showing either the name or login if available. The icon addition provides good visual context.


288-334: Well-structured Recent Releases section

The new SecondaryCard implementation for Recent Releases is well-designed:

  • Proper conditional rendering based on data availability
  • Clean layout with consistent styling
  • Good use of icons and formatting for dates
  • Author information is displayed prominently with avatar

This provides a much better presentation than the previous implementation.

@samyak003 samyak003 requested a review from arkid15r March 27, 2025 17:55
@arkid15r arkid15r marked this pull request as ready for review March 29, 2025 03:25
Copy link

Quality Gate Failed Quality Gate failed

Failed conditions
13.5% Duplication on New Code (required ≤ 3%)

See analysis details on SonarQube Cloud

@arkid15r arkid15r enabled auto-merge March 29, 2025 03:27
Copy link
Collaborator

@arkid15r arkid15r left a comment

Choose a reason for hiding this comment

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

LGTM

@arkid15r arkid15r added this pull request to the merge queue Mar 29, 2025
Merged via the queue into OWASP:main with commit 86ca343 Mar 29, 2025
17 of 18 checks passed
Rajgupta36 pushed a commit to Rajgupta36/Nest-n that referenced this pull request Mar 30, 2025
* Updated user details page

* Added Pull requests to homepage

* Update code

---------

Co-authored-by: Arkadii Yakovets <[email protected]>
Co-authored-by: Arkadii Yakovets <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Update Main Page Recent Issues, Pull Requests, and Releases to Match User Details Page Design
2 participants