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(use-image): image ReferenceError in SSR #4122

Merged
merged 4 commits into from
Nov 20, 2024
Merged

fix(use-image): image ReferenceError in SSR #4122

merged 4 commits into from
Nov 20, 2024

Conversation

wingkwong
Copy link
Member

@wingkwong wingkwong commented Nov 20, 2024

Closes #

📝 Description

applied the same PR from beta to canary.

⛳️ Current behavior (updates)

🚀 New behavior

💣 Is this a breaking change (Yes/No):

📝 Additional Information

Summary by CodeRabbit

  • Bug Fixes

    • Resolved a ReferenceError related to image handling in Server-Side Rendering (SSR) contexts, enhancing the stability of the image component.
  • New Features

    • Improved image loading logic in the useImage hook, streamlining how images are managed and potentially enhancing performance.
  • Tests

    • Streamlined test structure for the useImage hook, updating methodologies for handling asynchronous state changes.

Copy link

vercel bot commented Nov 20, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
nextui-docs-v2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 20, 2024 9:25am
nextui-storybook-v2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 20, 2024 9:25am

Copy link

changeset-bot bot commented Nov 20, 2024

🦋 Changeset detected

Latest commit: ac3e063

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 5 packages
Name Type
@nextui-org/use-image Patch
@nextui-org/avatar Patch
@nextui-org/image Patch
@nextui-org/user Patch
@nextui-org/react Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor

coderabbitai bot commented Nov 20, 2024

Walkthrough

This pull request introduces a patch for the @nextui-org/use-image package, focusing on resolving a ReferenceError in Server-Side Rendering (SSR) contexts. The changes involve modifying the useImage React hook to improve image loading logic and management. Specifically, the initialization of the image loading status has been streamlined, and the internal logic for handling image references during SSR has been refined. No alterations were made to exported or public entity declarations.

Changes

File Path Change Summary
packages/hooks/use-image/src/index.ts - Removed setImageAndGetInitialStatus function.
- Initialized status state directly in useImage.
- Encapsulated image loading logic in a new load function.
- Retained flush function for cleanup.
- Updated function signature: export function useImage(props: UseImageProps = {}).
- Added type alias: export type UseImageReturn = ReturnType<typeof useImage>;.
packages/hooks/use-image/tests/use-image.test.tsx - Updated import statement to include waitFor from @testing-library/react.
- Changed variable handling from rendered to destructured assignment as result.
- Updated tests to use waitFor for asynchronous assertions and removed cached image test.

Possibly related PRs

Suggested labels

🟠 Priority: High, 📋 Scope : Docs

Suggested reviewers

  • winchesHe

📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between d487902 and ac3e063.

📒 Files selected for processing (1)
  • packages/hooks/use-image/src/index.ts (3 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/hooks/use-image/src/index.ts

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.

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

🧹 Outside diff range and nitpick comments (3)
.changeset/wild-jobs-explain.md (1)

5-5: Consider enhancing the changeset description

While accurate, the description could be more informative for future reference. Consider adding:

  • The specific ReferenceError being fixed
  • The technical solution implemented (e.g., changing from new Image() to document.createElement("img"))
  • The impact on SSR applications
-fix Image ReferenceError in SSR
+fix: Image ReferenceError in SSR by using document.createElement instead of new Image()
+
+Resolves ReferenceError when creating image elements during server-side rendering by
+switching from `new Image()` to `document.createElement("img")`. This change ensures
+proper image handling in SSR environments.
packages/hooks/use-image/src/index.ts (2)

Line range hint 52-63: Consider using useEffect for cleanup

For better SSR compatibility, consider moving the cleanup logic to useEffect. While useSafeLayoutEffect provides some safety, useEffect is more appropriate for side effects that don't need to be synchronous with layout updates.

- useSafeLayoutEffect(() => {
+ useEffect(() => {
    if (firstMount.current) {
      firstMount.current = false;
      return;
    }
    setStatus(setImageAndGetInitialStatus(props, imageRef));
    return () => {
      flush();
    };
  }, [src, crossOrigin, srcSet, sizes, loading]);

Line range hint 42-42: Improve type safety for imageRef

Consider making the null case explicit in the type definition of imageRef for better type safety, especially in SSR contexts.

- const imageRef = useRef<HTMLImageElement | null>();
+ const imageRef = useRef<HTMLImageElement | null>(null);
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between c6326d1 and b521aea.

📒 Files selected for processing (2)
  • .changeset/wild-jobs-explain.md (1 hunks)
  • packages/hooks/use-image/src/index.ts (1 hunks)
🔇 Additional comments (1)
.changeset/wild-jobs-explain.md (1)

1-3: LGTM on the patch version bump!

The patch version bump is appropriate for this bug fix as it maintains backward compatibility while addressing the SSR-related ReferenceError.

@@ -122,7 +122,7 @@ function setImageAndGetInitialStatus(
if (!src) return "pending";
if (ignoreFallback) return "loaded";

const img = new Image();
const img = document.createElement("img");
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Add SSR safety check for document access

While using document.createElement("img") fixes the Image constructor ReferenceError, accessing document directly can still cause SSR issues. Consider adding a check for the browser environment.

-  const img = document.createElement("img");
+  const img = typeof document !== "undefined" 
+    ? document.createElement("img")
+    : null;
+
+  if (!img) return "pending";
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
const img = document.createElement("img");
const img = typeof document !== "undefined"
? document.createElement("img")
: null;
if (!img) return "pending";

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

🧹 Outside diff range and nitpick comments (1)
packages/hooks/use-image/__tests__/use-image.test.tsx (1)

32-35: Consider adjusting error simulation timing

The error is simulated before the hook renders, which might not catch issues that occur during image loading. Consider moving the error simulation after the initial render:

-mockImage.simulate("error");
const {result} = renderHook(() => useImage({src: "/test.png"}));
expect(result.current).toEqual("loading");
+mockImage.simulate("error");
await waitFor(() => expect(result.current).toBe("failed"));
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between b521aea and d487902.

📒 Files selected for processing (1)
  • packages/hooks/use-image/__tests__/use-image.test.tsx (2 hunks)
🔇 Additional comments (4)
packages/hooks/use-image/__tests__/use-image.test.tsx (4)

1-1: LGTM! Good modernization of test utilities

The switch to @testing-library/react and addition of waitFor follows current best practices for testing React hooks.


17-19: LGTM! Clean test refactoring

The destructured assignment improves readability while maintaining the same test behavior.


23-27: Consider adding SSR-specific test cases

While the current test changes look good, given that this PR fixes an SSR-related ReferenceError, we should add test coverage for SSR scenarios to prevent regression.

Would you like help creating SSR-specific test cases?


Line range hint 1-37: Review overall test coverage

A few observations about the test suite:

  1. The cached image test case was removed - was this intentional?
  2. Missing test coverage for SSR scenarios, which is crucial given the PR's focus on fixing SSR-related issues
  3. No tests verifying the switch from new Image() to document.createElement("img")

@jrgarciadev jrgarciadev merged commit ce1546c into canary Nov 20, 2024
8 checks passed
@jrgarciadev jrgarciadev deleted the fix/ssr-img branch November 20, 2024 11:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants