> ## Documentation Index
> Fetch the complete documentation index at: https://docs.beyondwords.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Call To Action

> Displays the player's call-to-action text, with a fallback when none is set.

export const CallToActionDemo = () => {
  const MOCK_CONTENT = [{
    id: "demo-1",
    title: "How AI voices are changing publishing",
    imageUrl: "/images/player-ui/demo-cover.svg",
    sourceUrl: "https://beyondwords.io",
    sourceId: "demo",
    adsEnabled: false,
    duration: 124,
    audio: [{
      id: "audio-1",
      url: "/images/player-ui/demo-silent.mp3",
      contentType: "audio/mpeg",
      duration: 124
    }],
    video: [],
    summarization: {
      audio: [],
      video: []
    },
    segments: []
  }];
  const [target, setTarget] = useState(null);
  const [player, setPlayer] = useState(null);
  const [callToAction, setCallToAction] = useState(null);
  useEffect(() => {
    if (!target) return;
    let instance;
    const init = () => {
      instance = new window.BeyondWords.Player({
        target,
        content: MOCK_CONTENT,
        widgetStyle: "none",
        showUserInterface: false,
        analyticsConsent: "none"
      });
      const sync = () => setCallToAction(instance.callToAction);
      instance.addEventListener("<any>", sync);
      sync();
      setPlayer(instance);
    };
    if (window.BeyondWords) init(); else window.addEventListener("BeyondWordsReady", init);
    return () => {
      window.removeEventListener("BeyondWordsReady", init);
      if (instance) instance.destroy();
    };
  }, [target]);
  return <div className="not-prose flex w-full items-center justify-center rounded-lg border p-10" style={{
    minHeight: "16rem",
    fontFamily: 'ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif'
  }}>
      <div ref={setTarget} style={{
    display: "none"
  }} />
      {player && <div>{callToAction ?? "Listen to this article"}</div>}
    </div>;
};

<Tabs>
  <Tab title="Preview">
    <CallToActionDemo />
  </Tab>

  <Tab title="Code">
    ```jsx CallToAction.jsx theme={null}
    "use client";

    import { usePlayerSelector } from "@/registry/react/PlayerProvider";

    export function CallToAction() {
      const callToAction = usePlayerSelector((p) => p.callToAction);
      return <div>{callToAction ?? "Listen to this article"}</div>;
    }
    ```
  </Tab>
</Tabs>

## Installation

<CodeGroup>
  ```bash npm theme={null}
  npx @beyondwords/cli components add call-to-action
  ```

  ```bash pnpm theme={null}
  pnpm dlx @beyondwords/cli components add call-to-action
  ```

  ```bash yarn theme={null}
  yarn dlx @beyondwords/cli components add call-to-action
  ```

  ```bash bun theme={null}
  bunx --bun @beyondwords/cli components add call-to-action
  ```
</CodeGroup>

## Usage

```tsx theme={null}
import { PlayerProvider } from '@/registry/react/PlayerProvider';
import { CallToAction } from '@/registry/react/CallToAction';

export function Player() {
  return (
    <PlayerProvider args={{ projectId: 9504, contentId: "ba00ef51-03ac-4a85-8b98-e45c957e8ef8", showUserInterface: false }}>
      <CallToAction />
    </PlayerProvider>
  );
}
```

The component reads `callToAction` from the surrounding
[`PlayerProvider`](/player-ui/react/player-provider) via `usePlayerSelector`, so it
re-renders only when that value changes. When the source has no call-to-action
configured, it falls back to `"Listen to this article"`. Edit the fallback or
the markup to match your UI.

## Reference

|                       |                                                                 |
| --------------------- | --------------------------------------------------------------- |
| **Props**             | None                                                            |
| **Player state read** | `callToAction`                                                  |
| **Events emitted**    | None (display only)                                             |
| **Requires**          | a [`PlayerProvider`](/player-ui/react/player-provider) ancestor |
