Skip to content

Conversation

mehradotdev
Copy link

@mehradotdev mehradotdev commented Sep 1, 2025

While working on #105 I found a bug. CSS styles passed through "toolbar" component doesn't have any effect in Web platform.

Summary by CodeRabbit

  • New Features
    • Web toolbar components now honor the style prop across all elements (Root, Toggle Group, Toggle Item, Separator, Link, Button), enabling consistent custom styling.
  • Bug Fixes
    • Resolved previously ignored style prop on web toolbar components, ensuring passed-in styles are applied as expected.
  • Documentation
    • Clarified that styling can be applied directly via the style prop on all web toolbar components without changing the public API.

Copy link

vercel bot commented Sep 1, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
rn-primitives Ready Ready Preview Comment Sep 1, 2025 3:58am

Copy link

coderabbitai bot commented Sep 1, 2025

Walkthrough

Style prop is now forwarded to the underlying web components across toolbar wrappers (Root, ToggleGroup, ToggleItem, Separator, Link, Button) in toolbar.web.tsx. Render functions were updated to include style={style} on the inner Component. No public API signatures or control flow changed.

Changes

Cohort / File(s) Summary
Style prop forwarding in toolbar web wrappers
packages/toolbar/src/toolbar.web.tsx
Added style={style} pass-through to inner Component for: Root, ToggleGroup, ToggleItem (with onPress, role='button'), Separator, Link, Button. No signature changes; only style propagation adjustments.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

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.

❤️ 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.
    • 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.
  • 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 the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore or @coderabbit 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

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • 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: 0

🧹 Nitpick comments (3)
packages/toolbar/src/toolbar.web.tsx (3)

104-104: Prefer accessibilityRole over role for RN Web.

Use the platform-idiomatic prop for better typing and cross-platform a11y.

Apply:

-        <Component ref={ref} onPress={onPress} role='button' style={style} {...props} />
+        <Component ref={ref} onPress={onPress} accessibilityRole='button' style={style} {...props} />

115-115: Wrap Separator with Radix Toolbar.Separator for consistency & a11y.

Align with Menubar pattern so the separator participates in Radix semantics.

Apply:

-const Separator = React.forwardRef<SeparatorRef, SeparatorProps>(
-  ({ asChild, style, ...props }, ref) => {
-    const Component = asChild ? Slot.View : View;
-    return <Component ref={ref} style={style} {...props} />;
-  }
-);
+const Separator = React.forwardRef<SeparatorRef, SeparatorProps>(
+  ({ asChild, style, ...props }, ref) => {
+    const Component = asChild ? Slot.View : View;
+    return (
+      <Toolbar.Separator asChild>
+        <Component ref={ref} style={style} {...props} />
+      </Toolbar.Separator>
+    );
+  }
+);

136-136: Prefer accessibilityRole on Button.

Same reasoning as ToggleItem; keeps typings clean on RNW.

Apply:

-      <Component ref={ref} role='button' style={style} {...props} />
+      <Component ref={ref} accessibilityRole='button' style={style} {...props} />
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 13c40e2 and 7311013.

📒 Files selected for processing (1)
  • packages/toolbar/src/toolbar.web.tsx (6 hunks)
🧰 Additional context used
🧬 Code graph analysis (1)
packages/toolbar/src/toolbar.web.tsx (2)
packages/menubar/src/menubar.web.tsx (2)
  • props (448-455)
  • props (353-362)
packages/toggle-group/src/toggle-group.web.tsx (1)
  • viewProps (17-59)
🔇 Additional comments (3)
packages/toolbar/src/toolbar.web.tsx (3)

26-26: Root: style now forwarded — LGTM.

This fixes the Web styling gap for Root.


57-57: ToggleGroup: style forwarding — LGTM.

Matches ToggleGroup usage in related primitives; no side effects expected.


125-125: Link: style forwarding — LGTM.

This unblocks Web overrides on Link.

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.

1 participant