Skip to content

Conversation

panteliselef
Copy link
Member

@panteliselef panteliselef commented Aug 20, 2025

Description

Fixes BILL-1181

Checklist

  • pnpm test runs as expected.
  • pnpm build runs as expected.
  • (If applicable) JSDoc comments have been added or updated for any package exports
  • (If applicable) Documentation has been updated

Type of change

  • 🐛 Bug fix
  • 🌟 New feature
  • 🔨 Breaking change
  • 📖 Refactoring / dependency upgrade / documentation
  • other:

Summary by CodeRabbit

  • New Features

    • Introduces experimental billing buttons for Astro and React: Checkout, Plan Details, and Subscription Details.
    • Enables opening Clerk checkout, plan details, and subscription details modals with customizable labels and options.
    • Supports usage within signed-in contexts and organization-aware flows.
  • Documentation

    • Adds example pages demonstrating how to use the new billing buttons in an Astro app.
  • Chores

    • Prepares a minor release for @clerk/astro to expose the experimental billing buttons.

Copy link

changeset-bot bot commented Aug 20, 2025

🦋 Changeset detected

Latest commit: 7b27c8a

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

This PR includes changesets to release 1 package
Name Type
@clerk/astro Minor

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

vercel bot commented Aug 20, 2025

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

Project Deployment Preview Comments Updated (UTC)
clerk-js-sandbox Ready Ready Preview Comment Sep 9, 2025 2:42pm

Copy link

pkg-pr-new bot commented Aug 20, 2025

Open in StackBlitz

@clerk/agent-toolkit

npm i https://pkg.pr.new/@clerk/agent-toolkit@6583

@clerk/astro

npm i https://pkg.pr.new/@clerk/astro@6583

@clerk/backend

npm i https://pkg.pr.new/@clerk/backend@6583

@clerk/chrome-extension

npm i https://pkg.pr.new/@clerk/chrome-extension@6583

@clerk/clerk-js

npm i https://pkg.pr.new/@clerk/clerk-js@6583

@clerk/dev-cli

npm i https://pkg.pr.new/@clerk/dev-cli@6583

@clerk/elements

npm i https://pkg.pr.new/@clerk/elements@6583

@clerk/clerk-expo

npm i https://pkg.pr.new/@clerk/clerk-expo@6583

@clerk/expo-passkeys

npm i https://pkg.pr.new/@clerk/expo-passkeys@6583

@clerk/express

npm i https://pkg.pr.new/@clerk/express@6583

@clerk/fastify

npm i https://pkg.pr.new/@clerk/fastify@6583

@clerk/localizations

npm i https://pkg.pr.new/@clerk/localizations@6583

@clerk/nextjs

npm i https://pkg.pr.new/@clerk/nextjs@6583

@clerk/nuxt

npm i https://pkg.pr.new/@clerk/nuxt@6583

@clerk/clerk-react

npm i https://pkg.pr.new/@clerk/clerk-react@6583

@clerk/react-router

npm i https://pkg.pr.new/@clerk/react-router@6583

@clerk/remix

npm i https://pkg.pr.new/@clerk/remix@6583

@clerk/shared

npm i https://pkg.pr.new/@clerk/shared@6583

@clerk/tanstack-react-start

npm i https://pkg.pr.new/@clerk/tanstack-react-start@6583

@clerk/testing

npm i https://pkg.pr.new/@clerk/testing@6583

@clerk/themes

npm i https://pkg.pr.new/@clerk/themes@6583

@clerk/types

npm i https://pkg.pr.new/@clerk/types@6583

@clerk/upgrade

npm i https://pkg.pr.new/@clerk/upgrade@6583

@clerk/vue

npm i https://pkg.pr.new/@clerk/vue@6583

commit: 7b27c8a

@panteliselef panteliselef self-assigned this Aug 20, 2025
Copy link
Contributor

coderabbitai bot commented Aug 20, 2025

Walkthrough

Introduces experimental billing UI buttons (Checkout, Plan Details, Subscription Details) for Astro and React. Adds unstyled Astro components, React counterparts, and exports from component indexes. Includes three Astro example pages under integration/templates and updates React utils to accept these buttons. Adds a changeset declaring a minor bump.

Changes

Cohort / File(s) Summary
Example pages (Astro templates)
integration/templates/astro-node/src/pages/billing/checkout-btn.astro, .../plan-details-btn.astro, .../subscription-details-btn.astro
Adds sample pages demonstrating Checkout, Plan Details, and Subscription Details buttons inside a shared Layout; one uses SignedIn for gating.
Astro public exports
packages/astro/src/astro-components/index.ts
Adds exports: __experimental_SubscriptionDetailsButton, __experimental_CheckoutButton, PlanDetailsButton from unstyled components.
Astro unstyled components
packages/astro/src/astro-components/unstyled/CheckoutButton.astro, .../PlanDetailsButton.astro, .../SubscriptionDetailsButton.astro
New polymorphic button components with safeId binding and inline scripts to call window.Clerk.__internal_openCheckout, __internal_openPlanDetails, and __internal_openSubscriptionDetails. Supports asChild and deprecates as prop.
React components
packages/astro/src/react/CheckoutButton.tsx, .../PlanDetailsButton.tsx, .../SubscriptionDetailsButton.tsx
New components wrapped with withClerk. Enforce single child, default labels, and inject onClick to invoke corresponding internal open methods with provided options. Export prop type aliases.
React index exports
packages/astro/src/react/index.ts
Re-exports new components under experimental aliases and adds corresponding prop types. No changes to existing exports.
React utils
packages/astro/src/react/utils.tsx
Extends assertSingleChild’s allowed names to include the three new buttons; no runtime changes.
Changeset
.changeset/cold-parks-push.md
Declares a minor version bump for @clerk/astro with note about exposing billing buttons as experimental.

Sequence Diagram(s)

sequenceDiagram
  autonumber
  participant U as User
  participant B as CheckoutButton
  participant S as Inline Script
  participant C as window.Clerk
  participant F as Checkout Flow

  U->>B: Click
  B->>S: data-clerk-unstyled-id handler
  S->>C: __internal_openCheckout(options)
  C-->>F: Launch checkout UI
  Note over C,F: Validates signed-in state and (optional) organization context
Loading
sequenceDiagram
  autonumber
  participant U as User
  participant B as PlanDetailsButton
  participant S as Inline Script / React handler
  participant C as window.Clerk
  participant M as Plan Details Modal

  U->>B: Click
  B->>S: onClick
  S->>C: __internal_openPlanDetails(options)
  C-->>M: Open plan details
Loading
sequenceDiagram
  autonumber
  participant U as User
  participant B as SubscriptionDetailsButton
  participant S as Inline Script / React handler
  participant C as window.Clerk
  participant M as Subscription Details Modal

  U->>B: Click
  B->>S: onClick
  S->>C: __internal_openSubscriptionDetails(options)
  C-->>M: Open subscription details
  Note over S: Validates signed-in and organization when for="organization"
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~60 minutes

Pre-merge checks (3 passed, 2 inconclusive)

❌ Failed checks (2 inconclusive)
Check name Status Explanation Resolution
Linked Issues Check ❓ Inconclusive While the pull request adds the experimental billing buttons to the Astro integration and React bindings as intended, the linked issue BILL-1181 also calls for Vue support which is not addressed in this changeset, making it unclear whether all objectives are met. Please confirm whether Vue integration is required under BILL-1181 and, if so, add the corresponding billing button components and exports for Vue or update the issue scope accordingly.
Description Check ❓ Inconclusive The description only references the linked issue and includes the contribution template and a checklist without summarizing the implemented changes or testing instructions, making it too generic to convey meaningful information about this pull request. Please update the description to include a concise summary of the key changes introduced by this PR and instructions on how to test the new billing buttons.
✅ Passed checks (3 passed)
Check name Status Explanation
Title Check ✅ Passed The title succinctly describes the main change by indicating that the pull request adds billing buttons to the Astro integration, follows conventional commit style, and is both concise and clear.
Out of Scope Changes Check ✅ Passed All introduced files, exports, and modifications strictly pertain to adding the new billing button components and their exports for the Astro and React integrations, and no unrelated changes are present in this pull request.
Docstring Coverage ✅ Passed No functions found in the changes. Docstring coverage check skipped.

Poem

I tap my paws—three buttons appear,
Checkout, plans, subscriptions near.
With whispers of IDs, safely spun,
A click, a modal—work well done.
Experimental moonlight on the hill,
I nose the UI—burrow bill by bill. 🐇💳

Tip

👮 Agentic pre-merge checks are now available in preview!

Pro plan users can now enable pre-merge checks in their settings to enforce checklists before merging PRs.

  • Built-in checks – Quickly apply ready-made checks to enforce title conventions, require pull request descriptions that follow templates, validate linked issues for compliance, and more.
  • Custom agentic checks – Define your own rules using CodeRabbit’s advanced agentic capabilities to enforce organization-specific policies and workflows. For example, you can instruct CodeRabbit’s agent to verify that API documentation is updated whenever API schema files are modified in a PR. Note: Upto 5 custom checks are currently allowed during the preview period. Pricing for this feature will be announced in a few weeks.

Example:

reviews:
  pre_merge_checks:
    custom_checks:
      - name: "Undocumented Breaking Changes"
        mode: "warning"
        instructions: |
          Pass/fail criteria: All breaking changes to public APIs, CLI flags, environment variables, configuration keys, database schemas, or HTTP/GraphQL endpoints must be documented in the "Breaking Change" section of the PR description and in CHANGELOG.md. Exclude purely internal or private changes (e.g., code not exported from package entry points or explicitly marked as internal).

Please share your feedback with us on this Discord post.


📜 Recent review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • 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 c9e754e and 7b27c8a.

📒 Files selected for processing (1)
  • .changeset/cold-parks-push.md (1 hunks)
✅ Files skipped from review due to trivial changes (1)
  • .changeset/cold-parks-push.md
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
  • GitHub Check: Formatting | Dedupe | Changeset
  • GitHub Check: semgrep/ci
  • GitHub Check: Analyze (javascript-typescript)
  • GitHub Check: semgrep-cloud-platform/scan
✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch elef/com-1112-ga-billing-buttons-for-astro-and-vue

Comment @coderabbitai help to get the list of available commands and usage tips.

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

🧹 Nitpick comments (37)
integration/templates/astro-node/src/pages/billing/plan-details-btn.astro (3)

6-12: Wrap with SignedIn to enforce correct usage

Button requires an authenticated user; the example should demonstrate best practice.

 ---
-import { __experimental_PlanDetailsButton as PlanDetailsButton } from '@clerk/astro/components';
+import { __experimental_PlanDetailsButton as PlanDetailsButton, SignedIn } from '@clerk/astro/components';
 import Layout from '../../layouts/Layout.astro';
 ---
 
 <Layout title="Plan Details Button">
   <main>
-    <PlanDetailsButton planId='cplan_2wMjqdlza0hTJc4HLCoBwAiExhF'>
-      Plan details
-    </PlanDetailsButton>
+    <SignedIn>
+      <PlanDetailsButton planId="your_plan_id_here">
+        Plan details
+      </PlanDetailsButton>
+    </SignedIn>
   </main>
 </Layout>

8-10: Avoid hard-coding real plan ids in templates

Use a placeholder to prevent confusion or accidental coupling to internal resources.

-    <PlanDetailsButton planId='cplan_2wMjqdlza0hTJc4HLCoBwAiExhF'>
+    <PlanDetailsButton planId="your_plan_id_here">

1-12: Add integration tests for the new Astro billing pages

No tests were added. Please add basic integration/E2E checks that:

  • route renders,
  • button exists and is focusable/clickable,
  • ideally, click wiring stubs out Clerk open calls without real network.

I can draft Playwright tests under integration/** to cover these pages. Want me to open a follow-up PR with test scaffolding?

packages/astro/src/react/utils.tsx (1)

49-68: Add explicit return type to assertSingleChild

This is an exported utility in a package; add an explicit return type to satisfy TS/ESLint rules and improve DX.

 export const assertSingleChild =
   (children: React.ReactNode) =>
   (
     name:
       | 'SignInButton'
       | 'SignUpButton'
       | 'SignOutButton'
       | 'SignInWithMetamaskButton'
       | 'SubscriptionDetailsButton'
       | 'CheckoutButton'
-      | 'PlanDetailsButton',
-  ) => {
+      | 'PlanDetailsButton',
+  ): React.ReactElement | string => {
     try {
       return React.Children.only(children);
     } catch {
       return `You've passed multiple children components to <${name}/>. You can only pass a single child component or text.`;
     }
   };
packages/vue/src/utils/childrenUtils.ts (1)

15-24: Default rendered button should have type="button"

Prevents unintended form submission when used inside forms, and matches the React util’s behavior.

 export const normalizeWithDefaultValue = (slotContent: VNode[] | undefined, defaultValue: string) => {
   // Render a button with the default value if no slot content is provided
   if (!slotContent) {
-    return h('button', defaultValue);
+    return h('button', { type: 'button' }, defaultValue);
   }

   // Render a button with the slot content if it's a text node
   if (slotContent[0].type === Text) {
-    return h('button', slotContent);
+    return h('button', { type: 'button' }, slotContent);
   }
packages/astro/src/astro-components/unstyled/SubscriptionDetailsButton.astro (2)

17-24: Set type="button" by default when rendering a native

Avoids accidental form submissions if consumers don’t specify type. Compute tagProps once and spread.

 const {
   as: Tag = 'button',
   asChild,
   for: _for,
   subscriptionDetailsProps,
   onSubscriptionCancel,
   ...props
 } = Astro.props;
 
+const tagProps = {
+  ...props,
+  ...(Tag === 'button' && !('type' in props) ? { type: 'button' } : {}),
+};
@@
   ) : (
     <Tag
-      {...props}
+      {...tagProps}
       data-clerk-unstyled-id={safeId}
     >
       <slot>Subscription details</slot>
     </Tag>
   )

Also applies to: 44-49


1-52: Add tests for the Astro unstyled button behavior

Please add a minimal browser test that:

  • mounts the component in a page (with and without asChild),
  • verifies data-clerk-unstyled-id is present,
  • verifies click handler invokes a stubbed __internal_openSubscriptionDetails.

I can scaffold an Astro integration test harness with a mock window.Clerk and run assertions via Playwright. Want me to push a test bundle?

packages/vue/src/components/SubscriptionDetailsButton.vue (1)

1-50: Add component tests

Please add unit tests to assert:

  • multiple default slot children throw the expected error,
  • attrs (class, disabled) are forwarded to the rendered child,
  • click calls __internal_openSubscriptionDetails with correct options.

I can add Vitest + Vue Test Utils tests exercising these cases. Want me to include the scaffolding?

packages/vue/tsup.config.ts (1)

20-27: Minor: the EsbuildPlugin alias is now unused; either remove it or reintroduce typing for the plugin list.

Since the explicit casts were dropped, Line 7’s type EsbuildPlugin = … is dead code. Two options:

  • Keep it simple: remove the alias.
  • Maintain type-safety: reintroduce casts or use satisfies with an intermediate plugins array.

Apply this diff to remove the unused alias:

- type EsbuildPlugin = NonNullable<Options['esbuildPlugins']>[number];

Alternatively, re-add precise typing:

 esbuildPlugins: [
   // Adds .vue files support
-  vuePlugin(),
+  vuePlugin() as NonNullable<Options['esbuildPlugins']>[number],
   // Automatically generates runtime props from TypeScript types/interfaces for all
   // control and UI components, adding them to Vue components during build via
   // Object.defineProperty
   autoPropsPlugin({
     include: ['**/*.ts'],
-  }),
+  }) as NonNullable<Options['esbuildPlugins']>[number],
 ],
integration/templates/vue-vite/src/router.ts (1)

50-65: Secure new billing routes and tighten route guard types

  • Confirm whether PlanDetailsBtn and SubscriptionDetailsBtn should be protected by authentication. If so, add their route names to the authenticatedPages array:

     const authenticatedPages = [
       'Profile',
       'Admin',
       'CustomUserProfile',
       'CustomOrganizationProfile',
    -  // …
    +  'PlanDetailsBtn',
    +  'SubscriptionDetailsBtn',
     ];
  • Harden the guard’s type-check to handle to.name being string | symbol | null:

    -} else if (!isSignedIn.value && authenticatedPages.includes(to.name)) {
    +} else if (
    +  !isSignedIn.value &&
    +  typeof to.name === 'string' &&
    +  authenticatedPages.includes(to.name)
    +) {
  • (Optional) Add a lightweight E2E smoke test under integration/ to visit each billing route, assert the button renders, and verify auth enforcement.

integration/templates/vue-vite/src/views/billing/PlanDetailsBtn.vue (1)

1-9: Avoid hard-coding plan IDs; make it configurable (with a sensible fallback).

Hard-coded plan IDs easily go stale across environments. Read from a query param or env, keep a fallback for the template to work out of the box.

Apply this diff:

 <template>
   <main>
-    <PlanDetailsButton planId="cplan_2wMjqdlza0hTJc4HLCoBwAiExhF"> Plan details </PlanDetailsButton>
+    <PlanDetailsButton :planId="planId"> Plan details </PlanDetailsButton>
   </main>
 </template>

 <script setup lang="ts">
 import { PlanDetailsButton } from '@clerk/vue/experimental';
+import { useRoute } from 'vue-router';
+
+const route = useRoute();
+// Prefer passing ?planId=... or set via env. Fallback keeps the template functional.
+const planId = (route.query.planId as string) ?? 'cplan_2wMjqdlza0hTJc4HLCoBwAiExhF';
 </script>

If you prefer envs instead, swap the planId line for:
const planId = import.meta.env.VITE_CLERK_PLAN_ID ?? 'cplan_…';

integration/templates/vue-vite/src/views/billing/CheckoutBtn.vue (3)

2-12: Optional: Provide a SignedOut fallback for better UX

Currently nothing renders for signed-out users; consider a SignedOut branch or a small notice/CTA to sign in.


1-17: Add basic integration/E2E coverage for the new route

Per repository guidelines, please add/extend E2E tests under integration/ to assert the button is rendered for SignedIn users and triggers the expected Clerk action.

I can scaffold a minimal Playwright test that navigates to the route, signs in via helpers, and clicks the button to assert the expected side effect. Want me to draft it?


4-9: Centralize planId via env/config across all templates

The cplan_2wMjqdlza0hTJc4HLCoBwAiExhF value is hard-coded in multiple template files, which risks accidental leakage and complicates testing. Define it once via an env var (e.g. VITE_CLERK_EXAMPLE_PLAN_ID or NEXT_PUBLIC_CLERK_EXAMPLE_PLAN_ID) and bind it as a prop everywhere.

Affected files:

  • integration/templates/vue-vite/src/views/billing/PlanDetailsBtn.vue
  • integration/templates/vue-vite/src/views/billing/CheckoutBtn.vue
  • integration/templates/next-app-router/src/app/billing/plan-details-btn/page.tsx
  • integration/templates/next-app-router/src/app/billing/checkout-btn/page.tsx
  • integration/templates/astro-node/src/pages/billing/plan-details-btn.astro
  • integration/templates/astro-node/src/pages/billing/checkout-btn.astro

Example refactor for Vue (CheckoutBtn.vue):

<template>
  <main>
    <SignedIn>
      <CheckoutButton
-       planId="cplan_2wMjqdlza0hTJc4HLCoBwAiExhF"
+       :planId="planId"
        planPeriod="month"
      >
        Checkout Now
      </CheckoutButton>
    </SignedIn>
  </main>
</template>

<script setup lang="ts">
 import { SignedIn } from '@clerk/vue';
 import { CheckoutButton } from '@clerk/vue/experimental';
+// Load from env with fallback
+const planId = import.meta.env.VITE_CLERK_EXAMPLE_PLAN_ID ?? 'cplan_example_id';
</script>

Apply analogous changes in:

  • PlanDetailsBtn.vue: bind :planId="planId" and define planId in <script setup>.
  • Next.js pages: use const planId = process.env.NEXT_PUBLIC_CLERK_EXAMPLE_PLAN_ID ?? 'cplan_example_id' and pass planId={planId}.
  • Astro pages: use frontmatter to import planId from import.meta.env and pass planId={planId} to the component.
integration/templates/astro-node/src/pages/billing/checkout-btn.astro (2)

10-11: Parameterize planId instead of hard-coding

Move planId to an environment variable so apps generated from this template don’t ship a real/opaque ID and can configure it easily.

-      <CheckoutButton
-        planId='cplan_2wMjqdlza0hTJc4HLCoBwAiExhF'
-        planPeriod='month'
-      >
+      <CheckoutButton
+        planId={Astro?.props?.planId ?? import.meta.env.CLERK_EXAMPLE_PLAN_ID ?? 'cplan_example_id'}
+        planPeriod='month'
+      >

If you prefer not to thread props through, reading only from import.meta.env is fine for the template.


8-15: Optional: Add a SignedOut branch

For parity with the Vue example and clearer behavior in templates, consider rendering a simple SignedOut message/CTA or redirect.

integration/templates/vue-vite/src/views/billing/SubscriptionDetailsBtn.vue (1)

2-4: Gate behind SignedIn for consistency and to avoid unauthenticated interactions

The Checkout and (per PR summary) Plan Details examples are gated. Align this one as well.

 <template>
   <main>
-    <SubscriptionDetailsButton> Subscription details </SubscriptionDetailsButton>
+    <SignedIn>
+      <SubscriptionDetailsButton>Subscription details</SubscriptionDetailsButton>
+    </SignedIn>
   </main>
 </template>

 <script setup lang="ts">
-import { SubscriptionDetailsButton } from '@clerk/vue/experimental';
+import { SignedIn } from '@clerk/vue';
+import { SubscriptionDetailsButton } from '@clerk/vue/experimental';
 </script>

Also applies to: 7-9

packages/astro/src/astro-components/index.ts (1)

15-17: Consider exporting the associated prop types and adding an experimental JSDoc banner

Helps consumers with TS discoverability and sets expectations about instability.

 export { default as __experimental_SubscriptionDetailsButton } from './unstyled/SubscriptionDetailsButton.astro';
 export { default as __experimental_CheckoutButton } from './unstyled/CheckoutButton.astro';
 export { default as __experimental_PlanDetailsButton } from './unstyled/PlanDetailsButton.astro';
+
+/** Experimental unstyled billing buttons — API is unstable and may change without notice. */
+export type {
+  __experimental_SubscriptionDetailsButtonProps,
+  __experimental_CheckoutButtonProps,
+  __experimental_PlanDetailsButtonProps,
+} from '@clerk/types';
packages/astro/src/astro-components/unstyled/PlanDetailsButton.astro (2)

36-39: Optional: Validate asChild usage yields an element

If the default slot is empty or starts with text, addUnstyledAttributeToFirstTag won’t find a tag and the script will no-op. Consider warning when htmlElement is empty.

Example:

if (asChild) {
  htmlElement = await Astro.slots.render('default');
  if (!htmlElement?.trim()) {
    console.warn('PlanDetailsButton: asChild requires a single root element in the default slot.');
  } else {
    htmlElement = addUnstyledAttributeToFirstTag(htmlElement, safeId);
  }
}

55-63: CSP note: Inline scripts may violate strict CSP

If you plan to support strict CSP without 'unsafe-inline', consider centralizing event binding via a delegated script with nonces or external JS.

packages/vue/src/components/PlanDetailsButton.vue (3)

23-29: Avoid unnecessary type assertion on the payload

The explicit cast to __experimental_PlanDetailsButtonProps on the object literal is likely unnecessary and can mask shape mismatches. Let TS infer or type the __internal_openPlanDetails signature instead.

Apply:

-  return clerk.value.__internal_openPlanDetails({
+  return clerk.value.__internal_openPlanDetails({
     plan: props.plan,
     planId: props.planId,
     initialPlanPeriod: props.initialPlanPeriod,
     ...props.planDetailsProps,
-  } as __experimental_PlanDetailsButtonProps);
+  });

18-29: Add lightweight error handling around internal call

To aid debugging, wrap the call to __internal_openPlanDetails in try/catch and surface a concise, actionable log. If a repo-level logger exists, prefer it over console.

Would you like me to patch this to use your logging utility (if any) instead of console.error?


1-30: Docs and tests for a new public component

  • Add a brief JSDoc above defineProps describing the experimental API and the expected behavior (default label, auth requirement, shape of planDetailsProps).
  • No tests appear in this PR. Please add at least a smoke test for:
    • default rendering with text fallback
    • click calling __internal_openPlanDetails with the expected payload when clerk is available
    • no-op when clerk is absent

If you want, I can scaffold a minimal unit/integration test harness for Vue SFCs in this package.

packages/astro/src/react/index.ts (2)

12-16: Experimental re-exports look good; add JSDoc to clarify status and props

The aliasing to _experimental* is clear. Add JSDoc noting that these exports are experimental and their props may change.

Would you like me to draft the JSDoc block for consistency with other public APIs?


1-26: Tests missing for new API surface

No tests were added. Consider minimal coverage to prevent regressions:

  • Rendering of each experimental button from this index path
  • Ensuring the props types are emitted in the .d.ts bundle (typegen snapshot)
packages/astro/src/react/CheckoutButton.tsx (3)

1-6: Fix import order to satisfy ESLint (simple-import-sort/imports)

ESLint flagged import sorting. Apply the autofix or sort imports as below.

Apply:

-import type { __experimental_CheckoutButtonProps } from '@clerk/types';
-import React from 'react';
-
-import { assertSingleChild, normalizeWithDefaultValue, safeExecute, withClerk } from './utils';
-import type { WithClerkProp } from './utils';
+import React from 'react';
+import type { __experimental_CheckoutButtonProps } from '@clerk/types';
+import { assertSingleChild, normalizeWithDefaultValue, safeExecute, withClerk } from './utils';
+import type { WithClerkProp } from './utils';

Then run: pnpm eslint --fix


9-53: Add concise JSDoc for public component and props

This is a new public API. Add JSDoc indicating:

  • Experimental status
  • What the button does (opens checkout flow)
  • Required vs optional props and how child defaulting works (“Checkout” label, single child)
  • That the click is a no-op until Clerk is loaded

I can draft the JSDoc inline if you want it ready-to-commit.


1-53: Tests recommended for the checkout flow

Add tests to cover:

  • Default rendering with text child → normalized to
  • Chaining of child onClick (verify child’s handler is invoked before checkout)
  • Payload passed to __internal_openCheckout includes planId/planPeriod/for and spreads checkoutProps
  • No-op when clerk is undefined
packages/astro/src/react/PlanDetailsButton.tsx (4)

1-6: Fix import order to satisfy ESLint (simple-import-sort/imports)

Same sorting issue as CheckoutButton.tsx. Apply autofix or sort as below.

Apply:

-import type { __experimental_PlanDetailsButtonProps } from '@clerk/types';
-import React from 'react';
-
-import { assertSingleChild, normalizeWithDefaultValue, safeExecute, withClerk } from './utils';
-import type { WithClerkProp } from './utils';
+import React from 'react';
+import type { __experimental_PlanDetailsButtonProps } from '@clerk/types';
+import { assertSingleChild, normalizeWithDefaultValue, safeExecute, withClerk } from './utils';
+import type { WithClerkProp } from './utils';

Then run: pnpm eslint --fix


21-27: Remove unnecessary type assertion on the plan details payload

The cast to __experimental_PlanDetailsButtonProps is redundant and could hide mistakes. Let inference work or type the clerk method signature.

Apply:

       return clerk.__internal_openPlanDetails({
         plan,
         planId,
         initialPlanPeriod,
         ...planDetailsProps,
-      } as __experimental_PlanDetailsButtonProps);
+      });

9-15: Add concise JSDoc for the public component and props

Mirror CheckoutButton’s docs: experimental status, behavior (opens plan details modal/sheet), default label, single-child constraint, and no-op until Clerk is ready.

Happy to provide the docblock text.


1-41: Tests recommended for plan details flow

Cover:

  • Default rendering (text → )
  • Child onClick is invoked before __internal_openPlanDetails
  • Payload fields plan/planId/initialPlanPeriod plus spread planDetailsProps
  • No-op when clerk is undefined
packages/astro/src/react/SubscriptionDetailsButton.tsx (2)

1-6: Sort imports to satisfy ESLint (simple-import-sort/imports)

The linter requests import reordering. Suggested ordering below usually satisfies the rule. Alternatively, run the repo’s lint autofix.

Apply this diff:

-import type { __experimental_SubscriptionDetailsButtonProps } from '@clerk/types';
-import React from 'react';
-
-import { assertSingleChild, normalizeWithDefaultValue, safeExecute, withClerk } from './utils';
-import type { WithClerkProp } from './utils';
+import React from 'react';
+import type { __experimental_SubscriptionDetailsButtonProps } from '@clerk/types';
+import { assertSingleChild, normalizeWithDefaultValue, safeExecute, withClerk } from './utils';
+import type { WithClerkProp } from './utils';

7-15: Document the new public API (JSDoc) for discoverability

Per repository guidelines, public exports should have JSDoc. Add brief JSDoc to SubscriptionDetailsButton and the props alias.

Example (add above the exports):

/**

  • SubscriptionDetailsButton opens Clerk's subscription details for the active user or organization.
  • Renders a single child (or a default Subscription details).
    */
    export const SubscriptionDetailsButton ...

/** Props for SubscriptionDetailsButton. */
export type { __experimental_SubscriptionDetailsButtonProps as SubscriptionDetailsButtonProps };

packages/vue/src/components/CheckoutButton.vue (2)

15-22: Auth/Org checks timing: consider deferring to click time

Throwing in setup will error during SSR/hydration if a consumer accidentally places this outside . Deferring these checks to clickHandler (like the Astro unstyled path does) avoids breaking render and provides the same developer guidance at interaction time.

Possible approach: move both checks into clickHandler, early-return with the same error messages.


1-53: Add tests for the new public component

No tests are included in this PR. Add basic tests covering:

  • renders default content and asserts single-child rule
  • calls __internal_openCheckout with expected options
  • enforces SignedIn and organization checks

I can scaffold Vitest component tests for this file if desired.

packages/astro/src/astro-components/unstyled/CheckoutButton.astro (1)

1-57: Add tests for the new Astro unstyled component

Consider adding integration tests verifying:

  • asChild renders and wiring via data-clerk-unstyled-id
  • default label, and type="button" behavior when Tag is "button"
  • click invokes __internal_openCheckout with the right payload

Happy to scaffold Astro component tests using Playwright or a lightweight DOM harness.

📜 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
  • 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 2fa2a41 and 86b0d3b.

📒 Files selected for processing (24)
  • integration/templates/astro-node/src/pages/billing/checkout-btn.astro (1 hunks)
  • integration/templates/astro-node/src/pages/billing/plan-details-btn.astro (1 hunks)
  • integration/templates/astro-node/src/pages/billing/subscription-details-btn.astro (1 hunks)
  • integration/templates/vue-vite/src/router.ts (1 hunks)
  • integration/templates/vue-vite/src/views/billing/CheckoutBtn.vue (1 hunks)
  • integration/templates/vue-vite/src/views/billing/PlanDetailsBtn.vue (1 hunks)
  • integration/templates/vue-vite/src/views/billing/SubscriptionDetailsBtn.vue (1 hunks)
  • integration/tests/pricing-table.test.ts (0 hunks)
  • packages/astro/src/astro-components/index.ts (1 hunks)
  • packages/astro/src/astro-components/unstyled/CheckoutButton.astro (1 hunks)
  • packages/astro/src/astro-components/unstyled/PlanDetailsButton.astro (1 hunks)
  • packages/astro/src/astro-components/unstyled/SubscriptionDetailsButton.astro (1 hunks)
  • packages/astro/src/react/CheckoutButton.tsx (1 hunks)
  • packages/astro/src/react/PlanDetailsButton.tsx (1 hunks)
  • packages/astro/src/react/SubscriptionDetailsButton.tsx (1 hunks)
  • packages/astro/src/react/index.ts (1 hunks)
  • packages/astro/src/react/utils.tsx (1 hunks)
  • packages/vue/package.json (1 hunks)
  • packages/vue/src/components/CheckoutButton.vue (1 hunks)
  • packages/vue/src/components/PlanDetailsButton.vue (1 hunks)
  • packages/vue/src/components/SubscriptionDetailsButton.vue (1 hunks)
  • packages/vue/src/experimental.ts (1 hunks)
  • packages/vue/src/utils/childrenUtils.ts (1 hunks)
  • packages/vue/tsup.config.ts (1 hunks)
💤 Files with no reviewable changes (1)
  • integration/tests/pricing-table.test.ts
🧰 Additional context used
📓 Path-based instructions (15)
**/*.{js,jsx,ts,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

**/*.{js,jsx,ts,tsx}: All code must pass ESLint checks with the project's configuration
Follow established naming conventions (PascalCase for components, camelCase for variables)
Maintain comprehensive JSDoc comments for public APIs
Use dynamic imports for optional features
All public APIs must be documented with JSDoc
Provide meaningful error messages to developers
Include error recovery suggestions where applicable
Log errors appropriately for debugging
Lazy load components and features when possible
Implement proper caching strategies
Use efficient data structures and algorithms
Profile and optimize critical paths
Validate all inputs and sanitize outputs
Implement proper logging with different levels

Files:

  • packages/astro/src/astro-components/index.ts
  • integration/templates/vue-vite/src/router.ts
  • packages/astro/src/react/utils.tsx
  • packages/vue/src/utils/childrenUtils.ts
  • packages/astro/src/react/PlanDetailsButton.tsx
  • packages/astro/src/react/CheckoutButton.tsx
  • packages/vue/src/experimental.ts
  • packages/vue/tsup.config.ts
  • packages/astro/src/react/SubscriptionDetailsButton.tsx
  • packages/astro/src/react/index.ts
**/*.{js,jsx,ts,tsx,json,css,scss,md,yaml,yml}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

Use Prettier for consistent code formatting

Files:

  • packages/astro/src/astro-components/index.ts
  • integration/templates/vue-vite/src/router.ts
  • packages/astro/src/react/utils.tsx
  • packages/vue/src/utils/childrenUtils.ts
  • packages/astro/src/react/PlanDetailsButton.tsx
  • packages/astro/src/react/CheckoutButton.tsx
  • packages/vue/src/experimental.ts
  • packages/vue/tsup.config.ts
  • packages/astro/src/react/SubscriptionDetailsButton.tsx
  • packages/astro/src/react/index.ts
  • packages/vue/package.json
packages/**/*.{ts,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

TypeScript is required for all packages

Files:

  • packages/astro/src/astro-components/index.ts
  • packages/astro/src/react/utils.tsx
  • packages/vue/src/utils/childrenUtils.ts
  • packages/astro/src/react/PlanDetailsButton.tsx
  • packages/astro/src/react/CheckoutButton.tsx
  • packages/vue/src/experimental.ts
  • packages/vue/tsup.config.ts
  • packages/astro/src/react/SubscriptionDetailsButton.tsx
  • packages/astro/src/react/index.ts
packages/**/*.{ts,tsx,d.ts}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

Packages should export TypeScript types alongside runtime code

Files:

  • packages/astro/src/astro-components/index.ts
  • packages/astro/src/react/utils.tsx
  • packages/vue/src/utils/childrenUtils.ts
  • packages/astro/src/react/PlanDetailsButton.tsx
  • packages/astro/src/react/CheckoutButton.tsx
  • packages/vue/src/experimental.ts
  • packages/vue/tsup.config.ts
  • packages/astro/src/react/SubscriptionDetailsButton.tsx
  • packages/astro/src/react/index.ts
packages/**/index.{js,ts}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

Use tree-shaking friendly exports

Files:

  • packages/astro/src/astro-components/index.ts
  • packages/astro/src/react/index.ts
**/*.{ts,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

Use proper TypeScript error types

**/*.{ts,tsx}: Always define explicit return types for functions, especially public APIs
Use proper type annotations for variables and parameters where inference isn't clear
Avoid any type - prefer unknown when type is uncertain, then narrow with type guards
Use interface for object shapes that might be extended
Use type for unions, primitives, and computed types
Prefer readonly properties for immutable data structures
Use private for internal implementation details
Use protected for inheritance hierarchies
Use public explicitly for clarity in public APIs
Prefer readonly for properties that shouldn't change after construction
Prefer composition and interfaces over deep inheritance chains
Use mixins for shared behavior across unrelated classes
Implement dependency injection for loose coupling
Let TypeScript infer when types are obvious
Use const assertions for literal types: as const
Use satisfies operator for type checking without widening
Use mapped types for transforming object types
Use conditional types for type-level logic
Leverage template literal types for string manipulation
Use ES6 imports/exports consistently
Use default exports sparingly, prefer named exports
Use type-only imports: import type { ... } from ...
No any types without justification
Proper error handling with typed errors
Consistent use of readonly for immutable data
Proper generic constraints
No unused type parameters
Proper use of utility types instead of manual type construction
Type-only imports where possible
Proper tree-shaking friendly exports
No circular dependencies
Efficient type computations (avoid deep recursion)

Files:

  • packages/astro/src/astro-components/index.ts
  • integration/templates/vue-vite/src/router.ts
  • packages/astro/src/react/utils.tsx
  • packages/vue/src/utils/childrenUtils.ts
  • packages/astro/src/react/PlanDetailsButton.tsx
  • packages/astro/src/react/CheckoutButton.tsx
  • packages/vue/src/experimental.ts
  • packages/vue/tsup.config.ts
  • packages/astro/src/react/SubscriptionDetailsButton.tsx
  • packages/astro/src/react/index.ts
**/*.{js,ts,tsx,jsx}

📄 CodeRabbit Inference Engine (.cursor/rules/monorepo.mdc)

Support multiple Clerk environment variables (CLERK_, NEXT_PUBLIC_CLERK_, etc.) for configuration.

Files:

  • packages/astro/src/astro-components/index.ts
  • integration/templates/vue-vite/src/router.ts
  • packages/astro/src/react/utils.tsx
  • packages/vue/src/utils/childrenUtils.ts
  • packages/astro/src/react/PlanDetailsButton.tsx
  • packages/astro/src/react/CheckoutButton.tsx
  • packages/vue/src/experimental.ts
  • packages/vue/tsup.config.ts
  • packages/astro/src/react/SubscriptionDetailsButton.tsx
  • packages/astro/src/react/index.ts
**/index.ts

📄 CodeRabbit Inference Engine (.cursor/rules/react.mdc)

Use index.ts files for clean imports but avoid deep barrel exports

Avoid barrel files (index.ts re-exports) as they can cause circular dependencies

Files:

  • packages/astro/src/astro-components/index.ts
  • packages/astro/src/react/index.ts
**/*

⚙️ CodeRabbit Configuration File

If there are no tests added or modified as part of the PR, please suggest that tests be added to cover the changes.

Files:

  • packages/astro/src/astro-components/index.ts
  • integration/templates/vue-vite/src/router.ts
  • integration/templates/astro-node/src/pages/billing/checkout-btn.astro
  • integration/templates/astro-node/src/pages/billing/subscription-details-btn.astro
  • packages/astro/src/react/utils.tsx
  • packages/vue/src/utils/childrenUtils.ts
  • integration/templates/vue-vite/src/views/billing/PlanDetailsBtn.vue
  • packages/astro/src/react/PlanDetailsButton.tsx
  • packages/astro/src/react/CheckoutButton.tsx
  • integration/templates/astro-node/src/pages/billing/plan-details-btn.astro
  • packages/vue/src/experimental.ts
  • packages/vue/src/components/SubscriptionDetailsButton.vue
  • integration/templates/vue-vite/src/views/billing/SubscriptionDetailsBtn.vue
  • packages/vue/tsup.config.ts
  • packages/vue/src/components/PlanDetailsButton.vue
  • packages/astro/src/react/SubscriptionDetailsButton.tsx
  • packages/astro/src/react/index.ts
  • integration/templates/vue-vite/src/views/billing/CheckoutBtn.vue
  • packages/astro/src/astro-components/unstyled/PlanDetailsButton.astro
  • packages/astro/src/astro-components/unstyled/SubscriptionDetailsButton.astro
  • packages/astro/src/astro-components/unstyled/CheckoutButton.astro
  • packages/vue/src/components/CheckoutButton.vue
  • packages/vue/package.json
integration/**

📄 CodeRabbit Inference Engine (.cursor/rules/global.mdc)

Framework integration templates and E2E tests should be placed under the integration/ directory

Files:

  • integration/templates/vue-vite/src/router.ts
  • integration/templates/astro-node/src/pages/billing/checkout-btn.astro
  • integration/templates/astro-node/src/pages/billing/subscription-details-btn.astro
  • integration/templates/vue-vite/src/views/billing/PlanDetailsBtn.vue
  • integration/templates/astro-node/src/pages/billing/plan-details-btn.astro
  • integration/templates/vue-vite/src/views/billing/SubscriptionDetailsBtn.vue
  • integration/templates/vue-vite/src/views/billing/CheckoutBtn.vue
integration/**/*

📄 CodeRabbit Inference Engine (.cursor/rules/monorepo.mdc)

End-to-end tests and integration templates must be located in the 'integration/' directory.

Files:

  • integration/templates/vue-vite/src/router.ts
  • integration/templates/astro-node/src/pages/billing/checkout-btn.astro
  • integration/templates/astro-node/src/pages/billing/subscription-details-btn.astro
  • integration/templates/vue-vite/src/views/billing/PlanDetailsBtn.vue
  • integration/templates/astro-node/src/pages/billing/plan-details-btn.astro
  • integration/templates/vue-vite/src/views/billing/SubscriptionDetailsBtn.vue
  • integration/templates/vue-vite/src/views/billing/CheckoutBtn.vue
**/*.{jsx,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

**/*.{jsx,tsx}: Use error boundaries in React components
Minimize re-renders in React components

**/*.{jsx,tsx}: Always use functional components with hooks instead of class components
Follow PascalCase naming for components: UserProfile, NavigationMenu
Keep components focused on a single responsibility - split large components
Limit component size to 150-200 lines; extract logic into custom hooks
Use composition over inheritance - prefer smaller, composable components
Export components as named exports for better tree-shaking
One component per file with matching filename and component name
Use useState for simple state management
Use useReducer for complex state logic
Implement proper state initialization
Use proper state updates with callbacks
Implement proper state cleanup
Use Context API for theme/authentication
Implement proper state selectors
Use proper state normalization
Implement proper state persistence
Use React.memo for expensive components
Implement proper useCallback for handlers
Use proper useMemo for expensive computations
Implement proper virtualization for lists
Use proper code splitting with React.lazy
Implement proper cleanup in useEffect
Use proper refs for DOM access
Implement proper event listener cleanup
Use proper abort controllers for fetch
Implement proper subscription cleanup
Use proper HTML elements
Implement proper ARIA attributes
Use proper heading hierarchy
Implement proper form labels
Use proper button types
Implement proper focus management
Use proper keyboard shortcuts
Implement proper tab order
Use proper skip links
Implement proper focus traps
Implement proper error boundaries
Use proper error logging
Implement proper error recovery
Use proper error messages
Implement proper error fallbacks
Use proper form validation
Implement proper error states
Use proper error messages
Implement proper form submission
Use proper form reset
Use proper component naming
Implement proper file naming
Use proper prop naming
Implement proper...

Files:

  • packages/astro/src/react/utils.tsx
  • packages/astro/src/react/PlanDetailsButton.tsx
  • packages/astro/src/react/CheckoutButton.tsx
  • packages/astro/src/react/SubscriptionDetailsButton.tsx
**/*.tsx

📄 CodeRabbit Inference Engine (.cursor/rules/react.mdc)

**/*.tsx: Use proper type definitions for props and state
Leverage TypeScript's type inference where possible
Use proper event types for handlers
Implement proper generic types for reusable components
Use proper type guards for conditional rendering

Files:

  • packages/astro/src/react/utils.tsx
  • packages/astro/src/react/PlanDetailsButton.tsx
  • packages/astro/src/react/CheckoutButton.tsx
  • packages/astro/src/react/SubscriptionDetailsButton.tsx
packages/*/tsup.config.{js,ts}

📄 CodeRabbit Inference Engine (.cursor/rules/monorepo.mdc)

TypeScript compilation and bundling must use tsup.

Files:

  • packages/vue/tsup.config.ts
packages/*/package.json

📄 CodeRabbit Inference Engine (.cursor/rules/global.mdc)

All publishable packages should be placed under the packages/ directory

packages/*/package.json: All publishable packages must be located in the 'packages/' directory.
All packages must be published under the @clerk namespace on npm.
Semantic versioning must be used across all packages.

Files:

  • packages/vue/package.json
🧬 Code Graph Analysis (3)
packages/astro/src/react/PlanDetailsButton.tsx (2)
packages/astro/src/react/index.ts (1)
  • PlanDetailsButton (15-15)
packages/astro/src/react/utils.tsx (5)
  • withClerk (16-43)
  • WithClerkProp (45-47)
  • normalizeWithDefaultValue (70-78)
  • assertSingleChild (50-67)
  • safeExecute (81-87)
packages/astro/src/react/CheckoutButton.tsx (2)
packages/astro/src/react/index.ts (1)
  • CheckoutButton (14-14)
packages/astro/src/react/utils.tsx (5)
  • withClerk (16-43)
  • WithClerkProp (45-47)
  • normalizeWithDefaultValue (70-78)
  • assertSingleChild (50-67)
  • safeExecute (81-87)
packages/astro/src/react/SubscriptionDetailsButton.tsx (1)
packages/astro/src/react/utils.tsx (5)
  • withClerk (16-43)
  • WithClerkProp (45-47)
  • normalizeWithDefaultValue (70-78)
  • assertSingleChild (50-67)
  • safeExecute (81-87)
🪛 ESLint
packages/astro/src/react/PlanDetailsButton.tsx

[error] 1-5: Run autofix to sort these imports!

(simple-import-sort/imports)

packages/astro/src/react/CheckoutButton.tsx

[error] 1-5: Run autofix to sort these imports!

(simple-import-sort/imports)

packages/astro/src/react/SubscriptionDetailsButton.tsx

[error] 1-5: Run autofix to sort these imports!

(simple-import-sort/imports)

🔇 Additional comments (10)
packages/astro/src/react/utils.tsx (1)

52-61: Union extension for new button names looks good

The added names align with the new experimental billing buttons.

packages/vue/src/utils/childrenUtils.ts (1)

6-13: Union extension for new button names looks good

Matches the new Vue billing buttons.

packages/vue/package.json (1)

33-36: Export map and sources verified – please confirm d.ts emission in build pipeline

  • packages/vue/src/experimental.ts exists
  • All referenced components under packages/vue/src/components/ are present
  • Export map entry in packages/vue/package.json (lines 33–36) correctly points to dist/experimental.d.ts & dist/experimental.js

Please ensure that the CI build (vue-tsc) emits dist/experimental.d.ts as expected.

integration/templates/astro-node/src/pages/billing/subscription-details-btn.astro (1)

1-12: LGTM — minimal, idiomatic Astro usage of the experimental button.

This aligns with the new experimental Astro components API and matches the template’s layout pattern. Consider adding an integration test that navigates to /billing/subscription-details-btn and asserts the button renders.

packages/astro/src/astro-components/index.ts (1)

15-17: Looks good: experimental unstyled buttons are exported in a tree-shake-friendly way

The new exports follow existing conventions.

packages/vue/src/components/PlanDetailsButton.vue (1)

13-16: Ignore child VNode prop-preservation concern: utilities already return VNodes
Both normalizeWithDefaultValue and assertSingleChild produce actual VNode instances (via h or by returning the slot’s VNode), not raw component types or strings. When you pass a VNode to <component :is="…">, Vue will mount that VNode directly—without re-creating it—so any props, classes or listeners on the original VNode stay intact. No need to switch to cloneVNode here.

Likely an incorrect or invalid review comment.

packages/astro/src/react/index.ts (1)

18-25: Astro export map covers new React entry

  • The root packages/astro/package.json exports object includes "./react" pointing to dist/react/index.js and dist/react/index.d.ts, so all new component and type re-exports in src/react/index.ts (including the __experimental_*Props aliases) will be packaged.
  • The __experimental_SubscriptionDetailsButtonProps, __experimental_CheckoutButtonProps, and __experimental_PlanDetailsButtonProps aliases are tree-shake friendly and available under @clerk/astro/react.
  • Please ensure your public documentation or changelog is updated to mention these experimental types.
packages/astro/src/react/CheckoutButton.tsx (1)

24-26: Child click handler is correctly chained and element is cloned

Parity with the React approach is solid here: default label, single-child assertion, safe chaining of the child’s onClick, and no-op when Clerk is not ready.

Also applies to: 42-47, 49-51

packages/astro/src/react/PlanDetailsButton.tsx (1)

13-15: LGTM on child handling parity with React

You normalize to “Plan details”, assert a single child, chain onClick, and clone the element—matching the established pattern.

Also applies to: 29-38

packages/vue/src/components/CheckoutButton.vue (1)

24-27: Default to a non-submitting button when using default content

If normalizeWithDefaultValue renders a , ensure it sets type="button" to avoid unintended form submissions. Align with the React util that sets type="button".

Please confirm the Vue normalizeWithDefaultValue implementation sets type="button" for string children. If not, I can open a follow-up PR to add it.

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

🧹 Nitpick comments (3)
integration/tests/pricing-table.test.ts (3)

88-99: Make the skip intentional (fixme) and fix test title grammar

  • test.fixme conveys “temporarily disabled; to be fixed,” better than skip.
  • Minor grammar nit in the test title.
-  test('when signed in, clicking checkout button open checkout drawer', async ({ page, context }) => {
-    test.skip(app.name.includes('astro'), 'Still working on it');
+  test('when signed in, clicking checkout button opens checkout drawer', async ({ page, context }) => {
+    test.fixme(
+      app.name.includes('astro'),
+      'Astro: CheckoutButton E2E pending wiring of experimental billing buttons (BILL-1181)'
+    );

123-138: Use test.fixme with a concrete reason instead of a generic skip

Keep the rationale actionable and tied to the initiative, so it’s easier to re-enable once the Astro work lands.

-    test.skip(app.name.includes('astro'), 'Still working on it');
+    test.fixme(
+      app.name.includes('astro'),
+      'Astro: SubscriptionDetailsButton E2E pending wiring of experimental billing buttons (BILL-1181)'
+    );

31-37: Consolidate vague test.skip calls into test.fixme with actionable reasons

No early-return guards were found. However, there are three occurrences of
test.skip(app.name.includes('astro'), 'Still working on it') in
integration/tests/pricing-table.test.ts that should be replaced with
test.fixme and tied to their respective tracking tickets for clarity and future cleanup:

• Lines 30–34
• Lines 87–91
• Lines 122–126

Suggested diff for each block (example for the first occurrence):

-    test.skip(app.name.includes('astro'), 'Still working on it');
+    test.fixme(
+      app.name.includes('astro'),
+      'Astro: PricingTable “renders pricing details” E2E awaiting billing buttons wiring (BILL-1181)'
+    );

Please apply a similarly structured test.fixme with a clear, ticket-linked reason to the other two skips.

📜 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
  • 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 86b0d3b and 070e816.

📒 Files selected for processing (3)
  • .changeset/cold-parks-push.md (1 hunks)
  • integration/tests/pricing-table.test.ts (3 hunks)
  • packages/vue/src/experimental.ts (1 hunks)
✅ Files skipped from review due to trivial changes (1)
  • .changeset/cold-parks-push.md
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/vue/src/experimental.ts
🧰 Additional context used
📓 Path-based instructions (8)
**/*.{js,jsx,ts,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

**/*.{js,jsx,ts,tsx}: All code must pass ESLint checks with the project's configuration
Follow established naming conventions (PascalCase for components, camelCase for variables)
Maintain comprehensive JSDoc comments for public APIs
Use dynamic imports for optional features
All public APIs must be documented with JSDoc
Provide meaningful error messages to developers
Include error recovery suggestions where applicable
Log errors appropriately for debugging
Lazy load components and features when possible
Implement proper caching strategies
Use efficient data structures and algorithms
Profile and optimize critical paths
Validate all inputs and sanitize outputs
Implement proper logging with different levels

Files:

  • integration/tests/pricing-table.test.ts
**/*.{js,jsx,ts,tsx,json,css,scss,md,yaml,yml}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

Use Prettier for consistent code formatting

Files:

  • integration/tests/pricing-table.test.ts
**/*.{ts,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

Use proper TypeScript error types

**/*.{ts,tsx}: Always define explicit return types for functions, especially public APIs
Use proper type annotations for variables and parameters where inference isn't clear
Avoid any type - prefer unknown when type is uncertain, then narrow with type guards
Use interface for object shapes that might be extended
Use type for unions, primitives, and computed types
Prefer readonly properties for immutable data structures
Use private for internal implementation details
Use protected for inheritance hierarchies
Use public explicitly for clarity in public APIs
Prefer readonly for properties that shouldn't change after construction
Prefer composition and interfaces over deep inheritance chains
Use mixins for shared behavior across unrelated classes
Implement dependency injection for loose coupling
Let TypeScript infer when types are obvious
Use const assertions for literal types: as const
Use satisfies operator for type checking without widening
Use mapped types for transforming object types
Use conditional types for type-level logic
Leverage template literal types for string manipulation
Use ES6 imports/exports consistently
Use default exports sparingly, prefer named exports
Use type-only imports: import type { ... } from ...
No any types without justification
Proper error handling with typed errors
Consistent use of readonly for immutable data
Proper generic constraints
No unused type parameters
Proper use of utility types instead of manual type construction
Type-only imports where possible
Proper tree-shaking friendly exports
No circular dependencies
Efficient type computations (avoid deep recursion)

Files:

  • integration/tests/pricing-table.test.ts
integration/**

📄 CodeRabbit Inference Engine (.cursor/rules/global.mdc)

Framework integration templates and E2E tests should be placed under the integration/ directory

Files:

  • integration/tests/pricing-table.test.ts
integration/**/*

📄 CodeRabbit Inference Engine (.cursor/rules/monorepo.mdc)

End-to-end tests and integration templates must be located in the 'integration/' directory.

Files:

  • integration/tests/pricing-table.test.ts
integration/**/*.{test,spec}.{js,ts}

📄 CodeRabbit Inference Engine (.cursor/rules/monorepo.mdc)

Integration tests should use Playwright.

Files:

  • integration/tests/pricing-table.test.ts
**/*.{js,ts,tsx,jsx}

📄 CodeRabbit Inference Engine (.cursor/rules/monorepo.mdc)

Support multiple Clerk environment variables (CLERK_, NEXT_PUBLIC_CLERK_, etc.) for configuration.

Files:

  • integration/tests/pricing-table.test.ts
**/*

⚙️ CodeRabbit Configuration File

If there are no tests added or modified as part of the PR, please suggest that tests be added to cover the changes.

Files:

  • integration/tests/pricing-table.test.ts

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

♻️ Duplicate comments (1)
packages/astro/src/astro-components/unstyled/SubscriptionDetailsButton.astro (1)

55-74: Guard against null element and missing Clerk; prevent default on click

Add null checks for the queried element and window.Clerk, and prevent default to avoid unintended form submits or navigation. This mirrors patterns used in similar components.

-<script is:inline define:vars={{ props, subscriptionDetailsOptions, safeId }}>
-  const btn = document.querySelector(`[data-clerk-unstyled-id="${safeId}"]`);
-
-  btn.addEventListener('click', () => {
-    const clerk = window.Clerk;
+<script is:inline define:vars={{ subscriptionDetailsOptions, safeId }}>
+  const btn = document.querySelector(`[data-clerk-unstyled-id="${safeId}"]`);
+  if (!btn) {
+    console.warn('SubscriptionDetailsButton: target element not found', { safeId });
+  } else {
+    btn.addEventListener('click', (evt) => {
+      evt.preventDefault();
+      const clerk = window.Clerk;
+      if (!clerk) {
+        return;
+      }
 
     // Authentication checks
-    if (!clerk.user) {
+    if (!clerk.user) {
       throw new Error('Ensure that `<SubscriptionDetailsButton />` is rendered inside a `<SignedIn />` component.');
     }
 
     if (!clerk.organization && subscriptionDetailsOptions.for === 'organization') {
       throw new Error(
         'Wrap `<SubscriptionDetailsButton for="organization" />` with a check for an active organization.',
       );
     }
 
-    return clerk.__internal_openSubscriptionDetails(subscriptionDetailsOptions);
-  });
+    return clerk.__internal_openSubscriptionDetails(subscriptionDetailsOptions);
+    });
+  }
 </script>
🧹 Nitpick comments (3)
packages/astro/src/astro-components/unstyled/SubscriptionDetailsButton.astro (3)

36-39: Handle empty asChild slot gracefully

If the default slot renders nothing, addUnstyledAttributeToFirstTag gets an empty string and the client querySelector returns null. Warn and skip mutation when empty.

-if (asChild) {
-  htmlElement = await Astro.slots.render('default');
-  htmlElement = addUnstyledAttributeToFirstTag(htmlElement, safeId);
-}
+if (asChild) {
+  htmlElement = await Astro.slots.render('default');
+  if (!htmlElement?.trim()) {
+    console.warn('SubscriptionDetailsButton: asChild slot is empty; button will not be interactive.', { safeId });
+  } else {
+    htmlElement = addUnstyledAttributeToFirstTag(htmlElement, safeId);
+  }
+}

46-51: Default type="button" to avoid accidental form submissions

When Tag is a native button and no type is provided, browsers default to type="submit". Set a safe default.

     <Tag
       {...props}
       data-clerk-unstyled-id={safeId}
+      type={Tag === 'button' ? ((props as any)?.type ?? 'button') : undefined}
     >

1-75: Add tests for new experimental Astro billing button

No tests were added in this PR. Please add coverage for:

  • Renders as native button with type="button" and asChild.
  • Click invokes __internal_openSubscriptionDetails with correct options for user and organization.
  • Guards: no-op when element missing or Clerk not available; throws helpful errors when not signed in or organization missing.

I can scaffold minimal Astro integration tests and a basic DOM click test using Playwright or Vitest + @astrojs/renderer if you prefer.

📜 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
  • 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 070e816 and 183001f.

📒 Files selected for processing (5)
  • packages/astro/src/astro-components/unstyled/PlanDetailsButton.astro (1 hunks)
  • packages/astro/src/astro-components/unstyled/SubscriptionDetailsButton.astro (1 hunks)
  • packages/astro/src/react/CheckoutButton.tsx (1 hunks)
  • packages/astro/src/react/PlanDetailsButton.tsx (1 hunks)
  • packages/astro/src/react/SubscriptionDetailsButton.tsx (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (4)
  • packages/astro/src/astro-components/unstyled/PlanDetailsButton.astro
  • packages/astro/src/react/PlanDetailsButton.tsx
  • packages/astro/src/react/SubscriptionDetailsButton.tsx
  • packages/astro/src/react/CheckoutButton.tsx
🧰 Additional context used
📓 Path-based instructions (1)
**/*

⚙️ CodeRabbit Configuration File

If there are no tests added or modified as part of the PR, please suggest that tests be added to cover the changes.

Files:

  • packages/astro/src/astro-components/unstyled/SubscriptionDetailsButton.astro
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (26)
  • GitHub Check: Integration Tests (ap-flows, chrome)
  • GitHub Check: Integration Tests (react-router, chrome)
  • GitHub Check: Integration Tests (localhost, chrome)
  • GitHub Check: Integration Tests (astro, chrome)
  • GitHub Check: Integration Tests (machine, chrome)
  • GitHub Check: Integration Tests (nuxt, chrome)
  • GitHub Check: Integration Tests (sessions, chrome)
  • GitHub Check: Integration Tests (elements, chrome)
  • GitHub Check: Integration Tests (nextjs, chrome, 14)
  • GitHub Check: Integration Tests (nextjs, chrome, 15)
  • GitHub Check: Integration Tests (tanstack-react-start, chrome)
  • GitHub Check: Integration Tests (vue, chrome)
  • GitHub Check: Integration Tests (billing, chrome)
  • GitHub Check: Integration Tests (tanstack-react-router, chrome)
  • GitHub Check: Integration Tests (expo-web, chrome)
  • GitHub Check: Integration Tests (express, chrome)
  • GitHub Check: Integration Tests (quickstart, chrome)
  • GitHub Check: Integration Tests (generic, chrome)
  • GitHub Check: Publish with pkg-pr-new
  • GitHub Check: Unit Tests (18, --filter=@clerk/astro --filter=@clerk/backend --filter=@clerk/express --filter=@c...
  • GitHub Check: Static analysis
  • GitHub Check: Unit Tests (22, **)
  • GitHub Check: semgrep/ci
  • GitHub Check: Analyze (javascript-typescript)
  • GitHub Check: semgrep-cloud-platform/scan
  • GitHub Check: semgrep-cloud-platform/scan

Comment on lines +28 to +32
const subscriptionDetailsOptions = {
for: _for,
onSubscriptionCancel,
...subscriptionDetailsProps,
};
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Make top-level props take precedence over nested subscriptionDetailsProps

Currently subscriptionDetailsProps can override for/onSubscriptionCancel, which is surprising. Prefer explicit top-level props to win.

Apply:

-const subscriptionDetailsOptions = {
-  for: _for,
-  onSubscriptionCancel,
-  ...subscriptionDetailsProps,
-};
+const subscriptionDetailsOptions = {
+  ...subscriptionDetailsProps,
+  for: _for,
+  onSubscriptionCancel,
+};

Verification (consistency with sibling Astro buttons):


🏁 Script executed:

#!/bin/bash
# Inspect options precedence across related unstyled Astro buttons
rg -n -C2 --type=astro 'checkoutOptions|planDetailsOptions|subscriptionDetailsOptions' packages/astro/src/astro-components/unstyled

Length of output: 163


🏁 Script executed:

#!/bin/bash
# Inspect options precedence across related unstyled Astro buttons
rg -n -C2 'checkoutOptions' packages/astro/src/astro-components/unstyled -g '*.astro'
rg -n -C2 'planDetailsOptions' packages/astro/src/astro-components/unstyled -g '*.astro'
rg -n -C2 'subscriptionDetailsOptions' packages/astro/src/astro-components/unstyled -g '*.astro'

Length of output: 5783


🏁 Script executed:

#!/bin/bash
sed -n '1,60p' packages/astro/src/astro-components/unstyled/CheckoutButton.astro
echo '---'
sed -n '1,60p' packages/astro/src/astro-components/unstyled/PlanDetailsButton.astro

Length of output: 2932


Align prop precedence across all unstyled Astro buttons

To ensure top-level props always override nested ones, we need to reverse the spread order in all three buttons—currently each one spreads nested props after the explicit fields, allowing nested props to win. Update as follows:

• packages/astro/src/astro-components/unstyled/CheckoutButton.astro
Replace:

const checkoutOptions = {
  planId,
  planPeriod,
  for: _for,
  onSubscriptionComplete,
  newSubscriptionRedirectUrl,
-  ...checkoutProps,
};
+  ...checkoutProps,
+  planId,
+  planPeriod,
+  for: _for,
+  onSubscriptionComplete,
+  newSubscriptionRedirectUrl,
};

• packages/astro/src/astro-components/unstyled/PlanDetailsButton.astro
Replace:

const planDetailsOptions = {
  plan,
  planId,
  initialPlanPeriod,
-  ...planDetailsProps,
};
+  ...planDetailsProps,
+  plan,
+  planId,
+  initialPlanPeriod,
};

• packages/astro/src/astro-components/unstyled/SubscriptionDetailsButton.astro
Replace:

const subscriptionDetailsOptions = {
  for: _for,
  onSubscriptionCancel,
-  ...subscriptionDetailsProps,
};
+  ...subscriptionDetailsProps,
+  for: _for,
+  onSubscriptionCancel,
};

This guarantees explicit for, planId, etc., always take precedence over any overrides passed in via *Props.

📝 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 subscriptionDetailsOptions = {
for: _for,
onSubscriptionCancel,
...subscriptionDetailsProps,
};
const subscriptionDetailsOptions = {
...subscriptionDetailsProps,
for: _for,
onSubscriptionCancel,
};
🤖 Prompt for AI Agents
In packages/astro/src/astro-components/unstyled/SubscriptionDetailsButton.astro
around lines 28-32 (and also apply the same change to
packages/astro/src/astro-components/unstyled/CheckoutButton.astro and
packages/astro/src/astro-components/unstyled/PlanDetailsButton.astro), the
object spread currently places the nested props last so they win; reverse the
spread order so nested props are spread first and then explicit fields follow
(i.e., move ...subscriptionDetailsProps before the explicit for and
onSubscriptionCancel entries) so top-level explicit props take precedence over
the *Props overrides.

Comment on lines 16 to 22
if (userId.value === null) {
throw new Error('Ensure that `<CheckoutButton />` is rendered inside a `<SignedIn />` component.');
}

if (orgId.value === null && props.for === 'organization') {
throw new Error('Wrap `<CheckoutButton for="organization" />` with a check for an active organization.');
}
Copy link
Member

Choose a reason for hiding this comment

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

Should we also throw this error when value is still undefined (Clerk is loading)?

Comment on lines 16 to 22
if (userId.value === null) {
throw new Error('Ensure that `<SubscriptionDetailsButton />` is rendered inside a `<SignedIn />` component.');
}

if (orgId.value === null && props.for === 'organization') {
throw new Error('Wrap `<SubscriptionDetailsButton for="organization" />` with a check for an active organization.');
}
Copy link
Member

Choose a reason for hiding this comment

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

Comment on lines 15 to 17
export { default as __experimental_SubscriptionDetailsButton } from './unstyled/SubscriptionDetailsButton.astro';
export { default as __experimental_CheckoutButton } from './unstyled/CheckoutButton.astro';
export { default as __experimental_PlanDetailsButton } from './unstyled/PlanDetailsButton.astro';
Copy link
Member

Choose a reason for hiding this comment

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

Is there any reason why we're not exporting them in a ‎/experimental path?

…for-astro-and-vue

# Conflicts:
#	integration/tests/pricing-table.test.ts
…for-astro-and-vue

# Conflicts:
#	packages/vue/src/components/CheckoutButton.vue
#	packages/vue/src/components/SubscriptionDetailsButton.vue
@panteliselef
Copy link
Member Author

!snapshot

@clerk-cookie
Copy link
Collaborator

Hey @panteliselef - the snapshot version command generated the following package versions:

Package Version
@clerk/astro 2.13.0-snapshot.v20250909142839
@clerk/nuxt 1.8.17-snapshot.v20250909142839
@clerk/vue 1.14.0-snapshot.v20250909142839

Tip: Use the snippet copy button below to quickly install the required packages.
@clerk/astro

npm i @clerk/[email protected] --save-exact

@clerk/nuxt

npm i @clerk/[email protected] --save-exact

@clerk/vue

npm i @clerk/[email protected] --save-exact

@panteliselef panteliselef changed the title feat(vue,astro): Add Billing buttons feat(astro): Add Billing buttons Sep 9, 2025
Copy link
Member

@wobsoriano wobsoriano left a comment

Choose a reason for hiding this comment

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

Looks good! Just left minor comments in case we want to support the events in the .astro files

);
}

return clerk.__internal_openSubscriptionDetails(subscriptionDetailsOptions);
Copy link
Member

@wobsoriano wobsoriano Sep 9, 2025

Choose a reason for hiding this comment

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

Since we can't pass a function as prop here, the onSubscriptionCancel prop is unusable, but we can use a custom event like this

const customEvent = new CustomEvent('clerk:subscription-cancel');
clerk.__internal_openSubscriptionDetails({
  ...subscriptionDetailsOptions,
  onSubscriptionCancel: () => document.dispatchEvent(customEvent),
});

and in the parent component, they can listen to it

<script>
  document.addEventListener('clerk:subscription-cancel', (e) => {
     //...
  })
</script>

We do this pattern in our <UserButton> custom menu items in Astro

btn.addEventListener('click', () => {
const clerk = window.Clerk;

return clerk.__internal_openPlanDetails(planDetailsOptions);
Copy link
Member

Choose a reason for hiding this comment

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

ditto with the onSubscriptionComplete event https://github.com/clerk/javascript/pull/6583/files#r2333981663

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