-
-
Notifications
You must be signed in to change notification settings - Fork 96
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
Implement reusable leader links component #1177
Conversation
Summary by CodeRabbit
WalkthroughThis pull request introduces a new reusable component for displaying leader names as clickable links. A new functional component is created to render leader links with URL-encoded names, and its corresponding prop type is defined. The project details page has been updated to use this component instead of plain text. The links are styled appropriately and open in a new tab, with separators added between each leader except after the last one. Changes
Assessment against linked issues
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (3)
🧰 Additional context used🧬 Code Definitions (1)frontend/src/components/ui/LeadersLinks.tsx (1)
🔇 Additional comments (7)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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)
Other keywords and placeholders
Documentation and Community
|
|
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.
Thanks for addressing this!
I'd like to request adding some tests for the new functionality, also some e2e tests would be great.
Please also use this new component for the main page recent project/issues sections.
export interface LeaderLinksProps { | ||
leaders: string[] | ||
} | ||
|
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.
Please run these locally -- https://github.com/OWASP/Nest/blob/main/CONTRIBUTING.md#code-quality-checks
Implemented in #1143 |
Commit Message
feat: Implement reusable leader links component
/community/users?q=<leader_name>
Closes #1094
Pull Request Message
Title:
Implement reusable leader links component
*Description: *
This PR introduces a reusable component that renders leader names as links, directing users to
/community/users?q=<leader_name>
. This enhances navigation and user experience. In future updates, these links will be refactored to point directly to individual user detail pages when that functionality becomes available.Changes:
Recording.2025-03-25.223511.mp4
Let me know if you need any modifications! 🚀