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

fix: remove hydration errors #3262

Merged
merged 8 commits into from
Oct 12, 2024

Conversation

akshatnema
Copy link
Member

@akshatnema akshatnema commented Sep 28, 2024

Description

Fixed hydration errors on the website

Related issue(s)

Summary by CodeRabbit

Release Notes

  • New Features

    • Introduced a loading indicator in the BlogIndexPage for improved user experience during data fetching.
  • Improvements

    • Enhanced SearchButton component to support dynamic content rendering based on the provided children.
    • Updated Avatar component to render a <button> instead of an anchor when a link prop is present, allowing links to open in a new tab.
    • Modified BlogPostItem component to display titles and excerpts as plain text without hyperlink functionality, while adding click handling for author names to open links in a new tab.
    • Updated Loader component to display a default loading icon.
    • Improved ToolsCard component's description rendering by changing the structure to a <span>.
    • Restructured the Row component for better modularity by separating link functionality for the arrow icon.
  • Chores

    • Updated TypeScript configuration documentation link for better guidance.

Copy link

netlify bot commented Sep 28, 2024

Deploy Preview for asyncapi-website ready!

Built without sensitive environment variables

Name Link
🔨 Latest commit ce6d606
🔍 Latest deploy log https://app.netlify.com/sites/asyncapi-website/deploys/670a4b8e5fa17e00089f7cbd
😎 Deploy Preview https://deploy-preview-3262--asyncapi-website.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@asyncapi-bot
Copy link
Contributor

asyncapi-bot commented Sep 28, 2024

⚡️ Lighthouse report for the changes in this PR:

Category Score
🔴 Performance 45
🟢 Accessibility 98
🟢 Best practices 92
🟢 SEO 100
🔴 PWA 33

Lighthouse ran on https://deploy-preview-3262--asyncapi-website.netlify.app/

@akshatnema akshatnema changed the title fix: removed hydration errors fix: remove hydration errors Sep 28, 2024
@anshgoyalevil
Copy link
Member

The issue still seems to exist

image

@anshgoyalevil
Copy link
Member

It seems like it is resolved on Homepage but persists on other routes like dashboard, newsroom, etc.

image

@akshatnema
Copy link
Member Author

@coderabbitai full review

Copy link

coderabbitai bot commented Oct 4, 2024

✅ Actions performed

Full review triggered.

Copy link

coderabbitai bot commented Oct 4, 2024

Walkthrough

The pull request introduces modifications across several components. The AlgoliaSearch.tsx component enhances the SearchButton functionality by adding a state variable for dynamic rendering of its children content. The Avatar.tsx component now renders a <button> instead of an <a> when the link prop is provided, with an onClick handler for opening links. In BlogPostItem.tsx and FeaturedBlogPost.tsx, author names are no longer clickable links; instead, they are displayed as plain text with an onClick event for author names. The BlogIndexPage in pages/blog/index.tsx adds a loading state to improve user experience, while a comment in next-env.d.ts updates a TypeScript documentation link. The Loader.tsx component now defaults to displaying an icon during loading, and ToolsCard.tsx adjusts the rendering of the description.

Changes

File Change Summary
components/AlgoliaSearch.tsx Enhanced SearchButton to use a state variable Children for dynamic rendering of button content based on children prop. Added useEffect to set Children on mount.
components/Avatar.tsx Changed rendering from <a> to <button> when link prop is provided, with an onClick event to open links in a new tab.
components/navigation/BlogPostItem.tsx Removed link wrapping for title and excerpt, changing them to plain text. Updated author rendering to use spans instead of links, with an onClick event for author names.
components/newsroom/FeaturedBlogPost.tsx Updated author names to render as <span> instead of <a>, removing hyperlink functionality.
components/Loader.tsx Changed default value of loaderIcon prop from null to an instance of AsyncAPIColorIcon, ensuring an icon is displayed during loading.
components/tools/ToolsCard.tsx Replaced <div> with <span> for descriptionRef, affecting how the description is rendered and styled.
pages/blog/index.tsx Added state variable isClient to manage loading state. Updated rendering logic to display a Loader when client is not ready.
pages/index.tsx Added import statement for React to enable JSX syntax.
utils/getStatic.ts Reformatted code for consistent indentation and removed console logging statements.
next-env.d.ts Updated comment to change the URL reference for TypeScript configuration documentation.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant BlogPostItem
    participant Author

    User->>BlogPostItem: Clicks on author name
    BlogPostItem->>Author: Opens author's link in new tab
Loading

🐇 "In the code, a change so bright,
The button now shines with new delight.
From links to spans, the authors play,
With tidied code, we hop away!
Let's celebrate with a joyful cheer,
For every tweak brings us near!" 🐇

Suggested reviewers

  • anshgoyalevil
  • derberg
  • magicmatatjahu
  • devilkiller-ag
  • sambhavgupta0705

📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 8cbd9e3 and ce6d606.

📒 Files selected for processing (2)
  • components/dashboard/table/Row.tsx (1 hunks)
  • components/newsroom/FeaturedBlogPost.tsx (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
  • components/dashboard/table/Row.tsx
  • components/newsroom/FeaturedBlogPost.tsx

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 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 resolve resolve all the CodeRabbit review comments.
  • @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.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

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

@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: 2

🧹 Outside diff range and nitpick comments (2)
components/AlgoliaSearch.tsx (2)

286-286: Rename state variable to follow React conventions

The introduction of the Children state variable is a good approach for managing dynamic content. However, the naming convention doesn't follow React's best practices for state variables.

Consider renaming Children to children (camelCase) to align with React conventions:

-  const [Children, setChildren] = useState<string | React.ReactNode>('');
+  const [children, setChildren] = useState<string | React.ReactNode>('');

312-316: Consider dependencies for useEffect

The addition of the useEffect hook is a good approach for initializing the Children state. However, it doesn't handle updates to the children prop or actionKey.

Consider adding children and actionKey to the dependency array to handle updates:

  useEffect(() => {
    if (typeof children === 'function') {
      setChildren(children({ actionKey }));
    }
-  }, []);
+  }, [children, actionKey]);

This change ensures that the Children state is updated whenever children or actionKey changes.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between e56289b and 9edd4ad.

📒 Files selected for processing (4)
  • components/AlgoliaSearch.tsx (3 hunks)
  • components/Avatar.tsx (1 hunks)
  • components/newsroom/FeaturedBlogPost.tsx (1 hunks)
  • utils/getStatic.ts (3 hunks)
✅ Files skipped from review due to trivial changes (1)
  • utils/getStatic.ts
🧰 Additional context used
🪛 Biome
components/Avatar.tsx

[error] 34-34: Avoid using unnecessary Fragment.

A fragment is redundant if it contains only one child, or if it is the child of a html element, and is not a keyed fragment.
Unsafe fix: Remove the Fragment

(lint/complexity/noUselessFragments)

🔇 Additional comments (3)
components/Avatar.tsx (1)

34-34: ⚠️ Potential issue

Reconsider changing anchor to span for linked avatars

The modification from an anchor (<a>) to a <span> when a link prop is provided removes the clickable behavior of the avatar. This change might negatively impact user experience and accessibility.

Consider reverting to using an anchor element when a link is provided:

- return link ? <span data-testid='Avatars-link'>{avatar}</span> : <React.Fragment>{avatar}</React.Fragment>;
+ return link ? <a href={link} data-testid='Avatars-link'>{avatar}</a> : <React.Fragment>{avatar}</React.Fragment>;

To understand the impact of this change, let's check for usages of the Avatar component with a link prop:

Additionally, could you please clarify how this change addresses the hydration errors mentioned in the PR objectives? It's not immediately clear how changing from an anchor to a span resolves hydration issues.

✅ Verification successful

No usages of Avatar component with link prop found

No instances of the Avatar component using the link prop were detected. Therefore, changing the anchor to a <span> does not affect the current codebase.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for Avatar component usage with link prop
rg --type typescript --type typescriptreact '<Avatar.*link=' -A 5

Length of output: 102


Script:

#!/bin/bash
# Search for Avatar component usage with link prop using file extensions
rg '<Avatar[^>]*\slink=' -g "*.ts" -g "*.tsx" -A 5

Length of output: 52

🧰 Tools
🪛 Biome

[error] 34-34: Avoid using unnecessary Fragment.

A fragment is redundant if it contains only one child, or if it is the child of a html element, and is not a keyed fragment.
Unsafe fix: Remove the Fragment

(lint/complexity/noUselessFragments)

components/AlgoliaSearch.tsx (2)

328-328: Improved rendering approach resolves hydration issues

The change to render the Children state variable instead of directly using the children prop is a significant improvement.

This modification:

  1. Allows for dynamic rendering of the button's content.
  2. Ensures consistency between server-side and client-side rendering, resolving the hydration errors mentioned in the PR objectives.
  3. Aligns with the new state management approach introduced earlier in the component.

Great job on addressing the hydration issues!


Line range hint 286-328: Summary: Effective resolution of hydration errors with room for minor improvements

The changes in this PR successfully address the hydration errors mentioned in the objectives. The new approach for managing the SearchButton component's children content provides better flexibility and ensures consistency between server-side and client-side rendering.

Key improvements:

  1. Introduction of state management for children content.
  2. Use of useEffect for initialization.
  3. Consistent rendering approach.

Suggestions for further refinement:

  1. Rename the Children state variable to follow React naming conventions.
  2. Update the useEffect dependencies to handle prop changes.

Overall, this PR effectively resolves the main issue while introducing a more robust implementation. Great work!

components/Avatar.tsx Outdated Show resolved Hide resolved
components/newsroom/FeaturedBlogPost.tsx Show resolved Hide resolved
Copy link

@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: 4

🧹 Outside diff range and nitpick comments (3)
components/Loader.tsx (1)

Line range hint 1-41: Overall impact: Improved default behavior with backwards compatibility

The changes to the Loader component improve its default behavior by providing a default icon and enhancing accessibility. The component remains backwards compatible as the prop interface hasn't changed. However, consider the following actions:

  1. Update the component's documentation to reflect the new default behavior.
  2. If there's a storybook or example usage, update it to showcase both default and custom icon scenarios.

Consider adding a brief comment above the loaderIcon prop in the LoaderProps interface to indicate that it now has a default value. This can help developers understand the component's behavior at a glance:

interface LoaderProps {
  // ...

  /** The icon to be displayed along with the loading animation. Defaults to AsyncAPIColorIcon if not provided. */
  loaderIcon?: React.ReactElement | null;

  // ...
}
components/dashboard/table/Row.tsx (2)

36-43: Improved link structure with a minor suggestion

The restructuring of the main content link improves the component's rendering consistency and helps address hydration issues. However, for better accessibility, consider removing the <span> wrapper inside the <a> tag.

Consider this minor improvement:

 <a target='_blank' rel='noreferrer' href={`https://github.com/${item.resourcePath}`}>
-  <span
-    className='two-liner w-full text-base font-medium leading-5 text-gray-900'
-    data-testid='Row-spanText'
-  >
-    {item.title}
-  </span>
+  <div
+    className='two-liner w-full text-base font-medium leading-5 text-gray-900'
+    data-testid='Row-spanText'
+  >
+    {item.title}
+  </div>
 </a>

This change maintains the styling and testability while improving the semantic structure of the link.


54-62: Enhanced interactivity with arrow icon

The addition of a separate clickable arrow icon improves the user experience and component interactivity. The use of my-auto and w-fit classes ensures proper alignment and sizing of the icon.

To enhance accessibility, consider adding an aria-label to the anchor tag:

 <a
   target='_blank'
   rel='noreferrer'
   className='my-auto w-fit'
   href={`https://github.com/${item.resourcePath}`}
+  aria-label={`Open ${item.title} on GitHub`}
 >
   <img alt='arrow icon' src='/img/illustrations/icons/arrow.svg' />
 </a>

This change provides more context for screen reader users about the purpose of the link.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 9edd4ad and 6b30619.

📒 Files selected for processing (7)
  • components/AlgoliaSearch.tsx (4 hunks)
  • components/Loader.tsx (2 hunks)
  • components/dashboard/table/Row.tsx (1 hunks)
  • components/navigation/BlogPostItem.tsx (2 hunks)
  • components/tools/ToolsCard.tsx (2 hunks)
  • pages/blog/index.tsx (4 hunks)
  • pages/index.tsx (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • components/AlgoliaSearch.tsx
🧰 Additional context used
🪛 Biome
components/navigation/BlogPostItem.tsx

[error] 107-107: Missing key property for this element in iterable.

The order of the items may change, and having a key can help React identify which item was moved.
Check the React documentation.

(lint/correctness/useJsxKeyInIterable)

🔇 Additional comments (14)
pages/index.tsx (1)

Line range hint 13-30: Consider optimizing the HomePage component and clarify Redirect usage.

While the overall structure of the HomePage component looks good, there are a couple of points to consider:

  1. The Redirect function is called without any visible effect or error handling. Could you clarify its purpose and whether it's working as intended?

  2. To optimize performance, consider memoizing the Loader component's props if they don't change between renders:

const loaderProps = React.useMemo(() => ({
  loaderText: 'Loading...',
  loaderIcon: <AsyncAPIColorIcon alt='Loading...' />,
  className: 'my-60',
  dark: false,
  pulsating: true
}), []);

Then use it in the JSX like this:

<Loader {...loaderProps} />

This optimization is especially useful if the HomePage component re-renders frequently.

To verify the usage of the Redirect function, let's check its implementation:

#!/bin/bash
# Description: Check the implementation of the Redirect function

# Test: Search for the Redirect function definition
rg --type typescript -A 10 'export function Redirect'

This will help us understand if the Redirect function is being used correctly in the HomePage component.

components/Loader.tsx (2)

4-5: LGTM: New import statement for AsyncAPIColorIcon

The import statement for AsyncAPIColorIcon is correctly added and necessary for the updated default loaderIcon prop. This change follows React best practices for importing components.


30-30: Approve change with verification: Updated default loaderIcon

The new default value for loaderIcon improves the component by providing a default icon (AsyncAPIColorIcon) with an accessibility-friendly alt attribute. This ensures that an icon is always displayed when no custom icon is provided.

However, this change might affect existing usage of the Loader component where no icon was previously displayed.

Please run the following script to verify the impact on existing usage:

Review the results to ensure that this change doesn't negatively impact existing implementations.

components/dashboard/table/Row.tsx (2)

17-35: Improved component structure and layout

The restructuring of the component enhances both the layout and the separation of concerns. The use of flexbox (flex justify-between and flex flex-col gap-2) improves the responsiveness and alignment of the elements. Moving the repository link into a separate anchor tag (<a>) enhances accessibility and user interaction.

These changes appear to address potential hydration issues by clearly separating interactive elements, which is a step in the right direction for fixing the reported hydration errors.


Line range hint 1-66: Summary: Improved component structure with potential hydration fix

The changes in this file focus on restructuring the Row component's layout, which appears to address the hydration issues mentioned in the PR objectives. The separation of interactive elements and improved component structure are positive changes.

To ensure these changes resolve the hydration errors, please run the following verification script:

components/navigation/BlogPostItem.tsx (3)

4-4: LGTM: Proper React import

The addition of React to the import statement is correct and necessary for using JSX syntax and React-specific features like React.Fragment later in the component.


Line range hint 1-138: Clarify the relationship between changes and hydration errors

After reviewing the changes in this file, it's not immediately clear how they address the PR's main objective of fixing hydration errors. The modifications, such as removing clickable elements and changing fragment syntax, don't seem directly related to hydration issues.

Could you provide more context on:

  1. How these specific changes contribute to resolving hydration errors?
  2. If there are any other files or components where the main hydration fixes are implemented?
  3. Whether these changes are part of a larger refactoring effort to address hydration issues?

This additional information would help in understanding the full scope and impact of the PR.

🧰 Tools
🪛 Biome

[error] 107-107: Missing key property for this element in iterable.

The order of the items may change, and having a key can help React identify which item was moved.
Check the React documentation.

(lint/correctness/useJsxKeyInIterable)


80-87: ⚠️ Potential issue

Verify the intention behind removing clickable title and excerpt

The replacement of the Link component with a span removes the clickability of the blog post title and excerpt. This change might negatively impact user experience, as users typically expect blog post titles to be clickable links.

Could you clarify how this change relates to fixing hydration errors? If it's not directly related, consider reverting this change to maintain the expected user interaction.

components/tools/ToolsCard.tsx (3)

1-1: LGTM: Improved React import statement

The change to explicitly import React and specific hooks (useEffect, useRef, useState) aligns with modern React best practices. This improves code clarity without affecting functionality.


Line range hint 1-97: Summary: Hydration fixes look promising, further testing recommended

The changes made to the ToolsCard component, particularly the JSX structure modifications, appear to address the hydration issues mentioned in the PR objectives. The use of <span> instead of <div> and the addition of line clamping should help improve consistency between server-side and client-side rendering.

Next steps:

  1. Conduct thorough testing across all routes, especially the dashboard and newsroom, to ensure hydration errors are resolved.
  2. Verify that the layout and functionality of the ToolsCard component remain intact after these changes.
  3. Consider adding specific unit or integration tests to prevent future hydration issues.

To ensure the changes haven't introduced any regressions, please run the existing test suite and consider adding new tests specifically for hydration:

#!/bin/bash
# Description: Run existing tests and suggest adding hydration-specific tests

# Run existing test suite
npm test

# Suggestion for adding hydration-specific tests
echo "Consider adding the following test to your suite:"
echo "
import { render, hydrate } from '@testing-library/react'
import ToolsCard from './ToolsCard'

test('ToolsCard hydrates without warnings', () => {
  const consoleError = jest.spyOn(console, 'error')
  const container = document.createElement('div')
  const toolData = {...} // Add mock tool data here
  
  render(<ToolsCard toolData={toolData} />, container)
  hydrate(<ToolsCard toolData={toolData} />, container)
  
  expect(consoleError).not.toHaveBeenCalled()
})
"

95-97: Verify layout and hydration improvements

The changes from <div> to <span> and the addition of line-clamp-3 and conditional ellipsis classes appear to address the hydration issues mentioned in the PR objectives. These modifications should improve the consistency between server-side and client-side rendering.

However, please verify:

  1. The layout is not negatively affected by changing from a block-level <div> to an inline <span>.
  2. The line-clamp-3 class is working as expected across different browsers.
  3. The hydration errors are indeed resolved on all routes, including the dashboard and newsroom (as mentioned in the PR comments).

To check for any remaining hydration issues, please run the following script:

pages/blog/index.tsx (3)

2-2: Importing 'useEffect' Correctly

The addition of useEffect to the import statement is appropriate for utilizing the hook in the component.


117-122: Empty State Rendering is Appropriate

The conditional rendering for the empty state when there are no posts is correctly implemented.


123-134: Conditional Rendering Based on 'isClient'

The conditional rendering of posts and the loader based on isClient is logically sound and enhances user experience by providing a loading indicator during client-side rendering.

pages/index.tsx Show resolved Hide resolved
components/navigation/BlogPostItem.tsx Outdated Show resolved Hide resolved
components/navigation/BlogPostItem.tsx Outdated Show resolved Hide resolved
pages/blog/index.tsx Show resolved Hide resolved
Copy link

@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

🧹 Outside diff range and nitpick comments (1)
pages/blog/index.tsx (1)

117-134: LGTM: Improved rendering logic with loading state

The changes in the rendering logic are well-implemented:

  1. The condition for rendering when there are no posts has been simplified.
  2. Posts are only rendered when isClient is true, preventing hydration mismatches.
  3. A loader is displayed while waiting for client-side rendering.

These improvements should help address the hydration errors mentioned in the PR objectives.

For consistency, consider using posts.length instead of Object.keys(posts).length:

-{Object.keys(posts).length === 0 && (
+{posts.length === 0 && (
  // ...
)}
-{Object.keys(posts).length > 0 && isClient && (
+{posts.length > 0 && isClient && (
  // ...
)}
-{Object.keys(posts).length > 0 && !isClient && (
+{posts.length > 0 && !isClient && (
  // ...
)}

This change would make the code more idiomatic and slightly more efficient.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 6b30619 and 3a87764.

📒 Files selected for processing (4)
  • components/Avatar.tsx (1 hunks)
  • components/navigation/BlogPostItem.tsx (2 hunks)
  • next-env.d.ts (1 hunks)
  • pages/blog/index.tsx (4 hunks)
✅ Files skipped from review due to trivial changes (1)
  • next-env.d.ts
🚧 Files skipped from review as they are similar to previous changes (2)
  • components/Avatar.tsx
  • components/navigation/BlogPostItem.tsx
🧰 Additional context used
🔇 Additional comments (5)
pages/blog/index.tsx (5)

2-2: LGTM: Import statements updated correctly

The import statements have been updated to include useEffect and useState from React, as well as the Loader component. These additions are necessary for the new functionality implemented in this file.

Also applies to: 6-6


37-37: LGTM: Client-side rendering state added

The addition of the isClient state variable is a good practice for handling client-side only rendering in Next.js applications. This will help prevent hydration errors by ensuring certain components are only rendered on the client.


62-64: LGTM: Client-side rendering detection implemented correctly

The useEffect hook sets isClient to true on the client-side, which is the correct implementation. This change follows the previous suggestion to simplify the logic by not relying on router.isReady. Good job on implementing the feedback!


125-127: LGTM: Client-side rendering for BlogPostItem components

The rendering of BlogPostItem components is now correctly wrapped in a condition that checks for isClient. This ensures these components are only rendered on the client-side, which should help prevent hydration errors related to these components. This change aligns well with the PR objective of fixing hydration errors.


Line range hint 1-141: Overall assessment: Good progress on fixing hydration errors

The changes implemented in this file are a step in the right direction for addressing hydration errors. The introduction of client-side rendering checks and a loading state should help reduce hydration mismatches.

However, based on the PR comments, it seems that hydration issues still persist on some routes, such as the dashboard and newsroom.

To investigate this further, let's check for similar implementations in other route files:

If these patterns are not found in other route files, consider applying similar changes to those files to ensure consistent handling of client-side rendering across the application.

@akshatnema
Copy link
Member Author

@coderabbitai full review

Copy link

coderabbitai bot commented Oct 11, 2024

✅ Actions performed

Full review triggered.

Copy link

@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: 4

🧹 Outside diff range and nitpick comments (11)
components/Loader.tsx (2)

30-30: Approved: Default loaderIcon with suggestion for flexibility

The change to provide a default loaderIcon is a good improvement for user experience. It ensures that there's always a visual indicator when the loader is active.

Consider making the default icon more flexible by allowing customization of its properties. You could achieve this by creating a separate constant for the default icon:

const DEFAULT_LOADER_ICON = <AsyncAPIColorIcon alt='Loading...' />;

// Then in the component props
loaderIcon = DEFAULT_LOADER_ICON,

This approach would make it easier to modify the default icon in the future if needed.


4-5: Overall impact: Improved default behavior with documentation suggestion

The changes to the Loader component improve its default behavior by providing a visual icon when no loaderIcon prop is specified. This enhancement aligns well with the component's purpose and improves user experience.

To ensure clear communication of this change to other developers:

  1. Update the component's JSDoc comment to mention the default icon behavior.
  2. If there's a separate documentation file for this component, update it to reflect this change in default behavior.

This will help prevent any surprises for developers who are used to the previous behavior where no icon was shown by default.

Also applies to: 30-30

utils/getStatic.ts (3)

31-35: LGTM: Improved type safety and code cleanup

The changes to the getI18nProps function are beneficial:

  1. Adding a type annotation for ctx improves type safety.
  2. Removing the console.log statement is appropriate for production code.
  3. The formatting changes enhance readability.

Consider using a more specific type for ctx instead of any if possible, to further improve type safety. For example:

export async function getI18nProps(ctx: { params: { lang: string } }, ns = ['common']) {
  // ...
}

Also applies to: 37-37


46-50: LGTM: Improved code structure

The formatting changes in the makeStaticProps function enhance code readability without altering its functionality. The new structure is more consistent with modern JavaScript practices.

Consider adding a type annotation for the ctx parameter in the inner function for consistency with the getI18nProps function:

return async function getStaticProps(ctx: { params: { lang: string } }) {
  // ...
};

Line range hint 1-50: Overall improvements with a suggestion for further enhancement

The changes in this file are positive:

  1. Consistent formatting throughout improves readability.
  2. Removal of console.log statements is appropriate for production code.
  3. Addition of some type annotations enhances type safety.

To further improve the file:

  1. Consider using a more specific type for the ctx parameter across all functions where it's used. This could be achieved by creating a custom type or interface:
interface I18nContext {
  params: {
    lang: string;
  };
}

// Then use this type in function signatures:
export async function getI18nProps(ctx: I18nContext, ns = ['common']) {
  // ...
}

export function makeStaticProps(ns = {}) {
  return async function getStaticProps(ctx: I18nContext) {
    // ...
  };
}

This change would improve consistency and type safety across the file.

components/dashboard/table/Row.tsx (2)

36-43: Improved title link structure with a minor suggestion

The separation of the title link from the repository link is a good improvement. It allows for independent interaction with each element, enhancing usability.

Consider adding an aria-label to the title link to improve accessibility, especially if the title might be truncated. For example:

- <a target='_blank' rel='noreferrer' href={`https://github.com/${item.resourcePath}`}>
+ <a target='_blank' rel='noreferrer' href={`https://github.com/${item.resourcePath}`} aria-label={`View ${item.title} on GitHub`}>

This will ensure screen readers provide clear context for the link, even if the visible text is truncated.


54-62: Improved arrow icon accessibility with a minor suggestion

The introduction of a separate link for the arrow icon is a good improvement. It enhances accessibility by making the icon independently clickable and provides an additional way for users to access the issue/PR.

To further improve accessibility, consider adding an aria-label to the arrow icon link. This will provide more context for screen reader users. For example:

  <a
    target='_blank'
    rel='noreferrer'
    className='my-auto w-fit'
    href={`https://github.com/${item.resourcePath}`}
+   aria-label={`Open ${item.title} in a new tab`}
  >
    <img alt='arrow icon' src='/img/illustrations/icons/arrow.svg' />
  </a>

This change ensures that screen reader users understand the purpose of the arrow icon link.

components/AlgoliaSearch.tsx (1)

286-286: Approve changes with a suggestion for improvement.

The introduction of the Children state variable and the useEffect hook improves the flexibility of the SearchButton component by allowing dynamic rendering of its content. This is a good enhancement.

However, there's room for improvement:

Consider updating the useEffect dependency array to include the children prop. This will ensure that the Children state is updated if the children prop changes dynamically:

  useEffect(() => {
    if (typeof children === 'function') {
      setChildren(children({ actionKey }));
    }
-  }, []);
+  }, [children, actionKey]);

This change will make the component more robust and responsive to prop changes.

Also applies to: 312-316

pages/blog/index.tsx (3)

117-122: Simplify posts length check

Since posts is an array, consider using posts.length === 0 instead of Object.keys(posts).length === 0 for clarity and consistency.

Apply this diff to simplify the condition:

-{Object.keys(posts).length === 0 && (
+{posts.length === 0 && (

123-127: Consistent array length checking

Use posts.length > 0 instead of Object.keys(posts).length > 0 when checking if there are posts to display.

Apply this diff for consistency:

-{Object.keys(posts).length > 0 && isClient && (
+{posts.length > 0 && isClient && (

130-134: Refine loading condition

Simplify the condition by using posts.length > 0 instead of Object.keys(posts).length > 0 to check for available posts.

Apply this diff to refine the condition:

-{Object.keys(posts).length > 0 && !isClient && (
+{posts.length > 0 && !isClient && (
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 2e31739 and 3a87764.

📒 Files selected for processing (11)
  • components/AlgoliaSearch.tsx (4 hunks)
  • components/Avatar.tsx (1 hunks)
  • components/Loader.tsx (2 hunks)
  • components/dashboard/table/Row.tsx (1 hunks)
  • components/navigation/BlogPostItem.tsx (2 hunks)
  • components/newsroom/FeaturedBlogPost.tsx (1 hunks)
  • components/tools/ToolsCard.tsx (2 hunks)
  • next-env.d.ts (1 hunks)
  • pages/blog/index.tsx (4 hunks)
  • pages/index.tsx (1 hunks)
  • utils/getStatic.ts (3 hunks)
🧰 Additional context used
📓 Learnings (1)
components/newsroom/FeaturedBlogPost.tsx (2)
Learnt from: akshatnema
PR: asyncapi/website#3262
File: components/newsroom/FeaturedBlogPost.tsx:90-92
Timestamp: 2024-10-11T07:38:35.745Z
Learning: In Next.js, nested `<a>` tags cause hydration issues due to invalid HTML. To fix this, avoid nesting `<a>` tags by replacing inner `<a>` tags with non-interactive elements like `<span>`, and use click handlers to maintain interactivity if needed.
Learnt from: akshatnema
PR: asyncapi/website#3262
File: components/newsroom/FeaturedBlogPost.tsx:90-92
Timestamp: 2024-10-11T07:27:53.362Z
Learning: Using anchor tags for author names in 'FeaturedBlogPost' component leads to hydration issues on the website.
🔇 Additional comments (16)
next-env.d.ts (1)

5-5: LGTM: Documentation link update improves developer guidance.

The change to the documentation link is correct and beneficial. It now points to a more specific and relevant section of the Next.js documentation about configuring TypeScript in Next.js applications, which should provide developers with more precise guidance.

pages/index.tsx (1)

1-1: Approve the addition of React import.

The addition of the React import is correct and necessary for files using JSX syntax. This change is a step towards resolving hydration errors.

To ensure this change fully addresses the hydration issues mentioned in the PR objectives, we should verify if similar changes are needed in other files. Run the following script to check for missing React imports in other JSX/TSX files:

If the script returns any files, consider adding the React import to those files as well.

✅ Verification successful

Approve the addition of React import.

The project is using React version 18 with the new JSX transform. Therefore, 'import React' is not required in JSX/TSX files, and the addition in pages/index.tsx is acceptable.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for missing React imports in JSX/TSX files

# Define a new file type 'jsx' for .jsx and .tsx files
rg --type-add 'jsx:*.{jsx,tsx}' --type jsx -l '(<\\w+>|<\\/\\w+>)' | xargs -I {} sh -c 'if ! grep -q "import React" "{}"; then echo "{}"; fi'

Length of output: 145


Script:

#!/bin/bash
# Description: Check for JSX/TSX files missing the React import

# Search for .jsx and .tsx files containing JSX syntax
files=$(rg --type-add 'jsx:*.{jsx,tsx}' --type jsx '<[A-Za-z]+' -l)

# Iterate over each file and check for 'import React'
for file in $files; do
  if ! grep -q "^import React" "$file"; then
    echo "$file is missing 'import React'."
  fi
done

Length of output: 57612


Script:

#!/bin/bash
# Description: Check the React version from package.json to determine if 'import React' is necessary

# Ensure package.json exists
if [ ! -f package.json ]; then
  echo "Error: package.json not found in the repository root."
  exit 1
fi

# Extract the React version using grep and sed
react_version=$(grep '"react":' package.json | sed -E 's/.*"react": *"([^"]+)".*/\1/')

# Check if React version was found
if [ -z "$react_version" ]; then
  echo "React version not found in package.json."
  exit 1
fi

echo "React version: $react_version"

# Extract the major version number
major_version=$(echo "$react_version" | cut -d. -f1 | tr -d 'v')

# Validate that major_version is a number
if ! [[ "$major_version" =~ ^[0-9]+$ ]]; then
  echo "Invalid React version format."
  exit 1
fi

# Determine if React version is 17 or higher
if [ "$major_version" -ge 17 ]; then
  echo "Project is using React version $react_version with the new JSX transform. 'import React' is not required in JSX/TSX files."
else
  echo "Project is using React version $react_version. 'import React' may be required in JSX/TSX files."
fi

Length of output: 355


Script:

#!/bin/bash
# Description: Check the React version from package.json to determine if 'import React' is necessary

# Ensure package.json exists
if [ ! -f package.json ]; then
  echo "Error: package.json not found in the repository root."
  exit 1
fi

# Use jq to extract the React version
react_version=$(jq -r '.dependencies.react // .devDependencies.react // empty' package.json)

# Check if React version was found
if [ -z "$react_version" ]; then
  echo "React version not found in package.json."
  exit 1
fi

echo "React version specified: $react_version"

# Remove any non-numeric characters (e.g., ^, ~) to extract the version number
clean_version=$(echo "$react_version" | sed 's/[^0-9.]//g')

# Extract the major version number
major_version=$(echo "$clean_version" | cut -d. -f1)

# Validate that major_version is a number
if ! [[ "$major_version" =~ ^[0-9]+$ ]]; then
  echo "Invalid React version format after cleaning: $clean_version"
  exit 1
fi

# Determine if React version is 17 or higher
if [ "$major_version" -ge 17 ]; then
  echo "Project is using React version $clean_version with the new JSX transform. 'import React' is not required in JSX/TSX files."
else
  echo "Project is using React version $clean_version. 'import React' may be required in JSX/TSX files."
fi

Length of output: 596

components/Loader.tsx (1)

4-5: LGTM: Import statement for AsyncAPIColorIcon

The addition of the import statement for AsyncAPIColorIcon is correct and follows React best practices. This import will be used to provide a default icon for the loader.

utils/getStatic.ts (2)

10-14: LGTM: Improved code formatting

The changes to the getI18nPaths function improve code readability without altering its functionality. The new formatting is consistent with modern JavaScript practices.


21-22: LGTM: Enhanced readability

The formatting changes in the getStaticPaths function improve code clarity without altering its behavior. The new structure is more consistent with the rest of the file.

components/dashboard/table/Row.tsx (2)

17-35: Improved layout structure and accessibility

The restructured layout enhances both the semantics and accessibility of the component:

  1. The repository link is now independently clickable, improving user interaction.
  2. The issue/PR icon is appropriately placed next to the repository name.
  3. The use of flexbox for layout provides a clean and maintainable structure.

These changes contribute to a better user experience and more maintainable code.


Line range hint 1-66: Overall improvement in component structure and accessibility

The changes made to the Row component have significantly improved its structure and accessibility:

  1. The repository link, title link, and arrow icon are now separate interactive elements, reducing the likelihood of hydration errors.
  2. The layout is more semantic and maintainable, using appropriate HTML structure and CSS classes.
  3. Accessibility has been enhanced by making each interactive element independently focusable and clickable.

These improvements align well with the PR objective of fixing hydration errors and contribute to a better user experience overall. The minor suggestions provided for adding aria-label attributes will further enhance accessibility if implemented.

components/newsroom/FeaturedBlogPost.tsx (1)

90-92: 🛠️ Refactor suggestion

Hydration issue addressed, but consider improving interactivity

The change from <a> to <span> for author names addresses the hydration issue caused by nested <a> tags. This is a good step towards resolving the reported problem. However, this change removes the clickable functionality for author names, which might impact user experience.

To maintain interactivity while avoiding hydration issues, consider the following improvement:

- <span key={index} data-alt={author.name} rel='noreferrer'>
-   {author.name}
- </span>
+ <span
+   key={index}
+   data-alt={author.name}
+   onClick={(e) => {
+     e.stopPropagation();
+     window.open(author.link, '_blank', 'noopener,noreferrer');
+   }}
+   style={{ cursor: 'pointer', textDecoration: 'underline' }}
+ >
+   {author.name}
+ </span>

This suggestion:

  1. Maintains the <span> to avoid hydration issues.
  2. Adds an onClick handler to make the author name clickable.
  3. Uses e.stopPropagation() to prevent triggering the parent Link component.
  4. Opens the author's link in a new tab, maintaining the original behavior.
  5. Adds visual cues (cursor and underline) to indicate clickability.

To ensure this change doesn't introduce new issues, please run the following verification script:

This will help identify if similar changes need to be made elsewhere in the codebase for consistency.

components/tools/ToolsCard.tsx (1)

1-1: LGTM: Explicit React import

The change to explicitly import React along with the hooks is a good practice. It aligns with modern React conventions and improves code clarity.

components/AlgoliaSearch.tsx (3)

8-8: LGTM: Import statement updated correctly.

The addition of useState to the import statement is consistent with its usage in the SearchButton component. This change is necessary and correct.


328-328: LGTM: Button content rendering updated correctly.

The update to render the button's content using the Children state variable is consistent with the earlier changes and allows for dynamic rendering of the button's content. This implementation is correct and aligns well with the overall enhancements made to the component.


Line range hint 1-331: Summary: Positive changes with a minor suggestion for improvement.

The modifications to the AlgoliaSearch.tsx file, particularly in the SearchButton component, enhance its flexibility and allow for dynamic rendering of the button's content. The introduction of the Children state variable and the use of useEffect are well-implemented.

A minor suggestion was made to improve the useEffect dependency array to make the component more robust when handling dynamic prop changes.

Overall, these changes are a positive enhancement to the component's functionality.

pages/blog/index.tsx (4)

2-2: Imports are updated correctly

The addition of useEffect to the React import statement is appropriate for managing side effects.


6-6: Loader component imported successfully

Importing the Loader component is necessary for the new loading state implementation.


37-37: Client-side rendering detection implemented

Introducing the isClient state variable effectively detects client-side rendering.


62-64: useEffect hook correctly sets isClient to true upon mounting

This ensures that isClient accurately reflects the client-side environment after the component mounts.

components/Avatar.tsx Outdated Show resolved Hide resolved
components/tools/ToolsCard.tsx Outdated Show resolved Hide resolved
components/navigation/BlogPostItem.tsx Show resolved Hide resolved
components/navigation/BlogPostItem.tsx Outdated Show resolved Hide resolved
Copy link

@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: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 3a87764 and 8cbd9e3.

📒 Files selected for processing (3)
  • components/Avatar.tsx (1 hunks)
  • components/navigation/BlogPostItem.tsx (2 hunks)
  • components/tools/ToolsCard.tsx (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
  • components/Avatar.tsx
  • components/tools/ToolsCard.tsx
🧰 Additional context used
📓 Learnings (1)
components/navigation/BlogPostItem.tsx (1)
Learnt from: akshatnema
PR: asyncapi/website#3262
File: components/navigation/BlogPostItem.tsx:80-87
Timestamp: 2024-10-11T11:17:32.246Z
Learning: In the `BlogPostItem` component, the parent `Link` wraps the entire content, so inner `Link` components around the title and excerpt are unnecessary.
🔇 Additional comments (4)
components/navigation/BlogPostItem.tsx (4)

4-4: LGTM: Import statement updated correctly

The import statement has been updated to include forwardRef, which is necessary for the component's implementation. This change is correct and aligns with the component's usage of forwardRef.


80-87: LGTM: Removed unnecessary inner Link component

The removal of the inner Link component around the title and excerpt is a good change. This aligns with the learning that the parent Link already wraps the entire content, preventing unnecessary nesting of interactive elements. The use of a span maintains the block-level display while allowing the parent Link to handle navigation.


116-119: LGTM: Correct use of React.Fragment with key

The use of React.Fragment with a key in the author rendering is correct. This change addresses the previous comment about adding a key to the Fragment in an iterable, which is a good practice when rendering elements in an array. The implementation is now more aligned with React best practices.


Line range hint 1-143: Summary: Good progress, but author link implementation needs improvement

Overall, the changes in this file have addressed several issues:

  1. Removed unnecessary nested Link components.
  2. Added keys to React.Fragment elements in iterables.
  3. Updated import statements correctly.

However, the main area that still needs improvement is the author link implementation. The current use of <button> elements for links affects accessibility and SEO. Consider reverting to <a> tags with appropriate attributes for opening links in new tabs, as suggested in the previous comment.

These changes will significantly improve the component's accessibility, user experience, and adherence to web standards.

components/navigation/BlogPostItem.tsx Show resolved Hide resolved
Copy link
Member

@anshgoyalevil anshgoyalevil 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 seems to be resolved 🎊

@anshgoyalevil
Copy link
Member

/rtm

@asyncapi-bot asyncapi-bot merged commit 0c898cf into asyncapi:master Oct 12, 2024
21 checks passed
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.

3 participants