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

should force load react-components which send over turbo-stream #1614

Conversation

theforestvn88
Copy link

@theforestvn88 theforestvn88 commented May 4, 2024

Summary

Support React On Rails w/Hotwire and Turbo Streams #1493, #1508

All turbo events (turbo:before-render, turbo:render,.. ) will not dispatch with TurboStream, except turbo:before-stream-render.
And it looks like turbo-rails did not support a after-stream-render event, i don't know why yet.

But hotwired send html, react_on_rails send script, right ?
So my solution: send a script that will trigger load react component along with it.

  • I add a new render option: force_load which if true then the trigger load script will be concat with the component itself.
  • about the trigger load script : i not use reactOnRailsPageLoaded which will query and reload all current react-components (not effective), i introduce new method reactOnRailsComponentLoaded(react-component-dom-id) to load directly the react-component that the script be sent along with.

Pull Request checklist

Other Information


This change is Reviewable

Summary by CodeRabbit

  • New Features

    • Added a new configuration option to control forced loading of components.
    • Introduced script inclusion based on rendering options.
    • Implemented Turbo Stream capabilities for React components.
  • Enhancements

    • Enhanced component loading mechanisms to support dynamic DOM IDs.
  • Documentation

    • Updated helper and integration test documentation to reflect new features and use cases.
  • Bug Fixes

    • Adjusted configuration defaults and component pack loading settings.
  • Refactor

    • Streamlined React component rendering and configuration retrieval processes.
  • Tests

    • Added new test cases for React component interactions with Turbo Streams.

Copy link

coderabbitai bot commented May 4, 2024

Important

Auto Review Skipped

Auto reviews are disabled on base/target branches other than the default branch. Please add the base/target branch pattern to the list of additional branches to be reviewed in the settings.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

The recent updates focus on enhancing the React on Rails integration by introducing a force_load configuration option to control script loading explicitly. The changes span across configuration settings, helper methods, and TypeScript declarations, ensuring components can be dynamically loaded with Turbo Streams. Additionally, new routes and tests confirm the integration's functionality and robustness.

Changes

Files Summary
configuration.rb, helper.rb, react_component/render_options.rb Added force_load option and updated methods to support script conditionals based on this new setting.
ReactOnRails.ts, clientStartup.ts, types/index.ts Extended ReactOnRails TypeScript definitions and functions to handle component loading.
Gemfile, app/controllers/pages_controller.rb, client/app/packs/client-bundle.js, config/routes.rb, package.json Integrated turbo-rails, updated controllers, routes, and package configurations to support Turbo Stream functionalities.
app/views/pages/..., client/app/startup/HelloTurboStream.jsx Added new views and a React component to work with Turbo Streams, enhancing dynamic content handling.
spec/... Expanded testing to cover new functionalities and ensure the robustness of the force_load implementation and Turbo Stream integration.

🐰✨
In the code's woven warren, a new toggle we thread,
force_load springs to life, in Ruby's cozy bed.
With Turbo's swift currents, our components now stream,
ReactOnRails dances, a developer's dream.
Cheers to the crafts, where bits and bytes convene! 🎉🚀
🐰✨


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>.
    • 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 generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @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.

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 as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

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

context.roots = [];
}

const el = document.querySelector(`[data-dom-id=${domId}]`);
Copy link

Choose a reason for hiding this comment

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

Ensure domId is sanitized to prevent potential XSS vulnerabilities.

-  const el = document.querySelector(`[data-dom-id=${domId}]`);
+  const el = document.querySelector(`[data-dom-id='${CSS.escape(domId)}']`);

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.

Suggested change
const el = document.querySelector(`[data-dom-id=${domId}]`);
const el = document.querySelector(`[data-dom-id='${CSS.escape(domId)}']`);

Copy link
Member

@justin808 justin808 left a comment

Choose a reason for hiding this comment

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

@Judahmeek please review carefully

@@ -0,0 +1,3 @@
<%= turbo_frame_tag 'hello-turbo-stream' do %>
<%= button_to "send me hello-turbo-stream component", turbo_stream_send_hello_world_path %>
<% end %>
Copy link
Member

Choose a reason for hiding this comment

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

please add return

Copy link
Author

Choose a reason for hiding this comment

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

hi, i don't get it! what should i 'return' here. some document like other pages, right ?

@justin808
Copy link
Member

@theforestvn88 Thanks! @Judahmeek and I will review!

Copy link
Contributor

@Judahmeek Judahmeek left a comment

Choose a reason for hiding this comment

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

Overall, this seems like a solid piece of work.

Please make the requested changes while I look into resolving the CI failures related to Bundler version mismatch (in other words, the CI failures not related to your PR)

@@ -0,0 +1,3 @@
<%= turbo_stream.update 'hello-turbo-stream' do %>
<%= react_component("HelloTurboStream", props: @app_props_hello_from_turbo_stream, force_load: true) %>
<% end %>
Copy link
Contributor

Choose a reason for hiding this comment

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

please add return

@@ -5,3 +5,5 @@ source "https://rubygems.org"
eval_gemfile File.expand_path("../../Gemfile.development_dependencies", __dir__)

gem "react_on_rails", path: "../.."

gem "turbo-rails"
Copy link
Contributor

Choose a reason for hiding this comment

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

please add this gem to the Gemfile.development_dependencies file instead of here.

@Judahmeek Judahmeek changed the base branch from master to judahmeek/bundler-version May 15, 2024 07:36
@Judahmeek
Copy link
Contributor

@theforestvn88 please rebase your PR on shakacode:judahmeek/bundler-version

@justin808 justin808 deleted the branch shakacode:judahmeek/bundler-version May 15, 2024 08:26
@justin808 justin808 closed this May 15, 2024
@justin808
Copy link
Member

@theforestvn88 that PR is merged. Rebase on master please!

@justin808
Copy link
Member

@theforestvn88 please rebase your PR on shakacode:judahmeek/bundler-version

@Judahmeek that wasn't good advice as the branch got deleted.

@justin808 justin808 reopened this May 16, 2024
@justin808
Copy link
Member

@Judahmeek @theforestvn88 I recreated the branch so I could reopen this PR.

Can I see an example of this fix used in https://github.com/shakacode/react-webpack-rails-tutorial? @theforestvn88 can you make a PR against that repo?

* swap functions so the right errors show up
@justin808
Copy link
Member

Looks like #1620 takes over.

@justin808 justin808 closed this May 17, 2024
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.

None yet

3 participants