GitXplorerGitXplorer
p

react-farcaster-embed

public
78 stars
8 forks
0 issues

Commits

List of commits on branch main.
Verified
c389876afafa1f7ac9acbd748c885e126fbd6137

1.8.9 — avatar layout tweaks

ppugson committed 3 months ago
Verified
2ed5f546ea0a0df8a9d5fafd5ba366841439c404

Fix styling of quote cast author avatars (#20)

zzingerj committed 3 months ago
Verified
804f8399abd9485f75beb9df8fb9dae113951786

1.8.8 — version bump

ppugson committed 3 months ago
Verified
bc912bd3c7a1183e1e96ec7c7d7c6360576b3ef6

1.8.7 — minor layout fixes

ppugson committed 3 months ago
Verified
d81ec9d07d150ae0499a616998f5d87bff6432df

fix: fit channel avatars to consistent size (#16)

zzingerj committed 3 months ago
Unverified
b8eb6f949b86ecf75f968cf10356fe8a8278c026

Fit pfps to consistent size

zzingerj committed 4 months ago

README

The README file for this repository.

react-farcaster-embed

react-farcaster-embed

Display an embedded cast from Farcaster in your React app. Works with Next.js SSR.

Examples

Live Demo

Regular casts
Quoted casts
With images
With video
With link previews

Features

  • [x] Supports server components and client components
  • [x] Shows the cast's author, their avatar and username, date when the cast was posted
  • [x] Renders the cast's content with links
  • [x] Shows the channel name and avatar
  • [x] Shows counts for replies, likes, recasts + quotes, watches
  • [x] Adds a link to the cast on Warpcast
  • [x] Renders images inline
  • [x] Renders videos inline
  • [x] Renders rich embeds for links
  • [x] Renders quoted casts with images and videos
  • [ ] Renders a frame preview with buttons

Installation

npm i react-farcaster-embed
# or
yarn add react-farcaster-embed
# or
pnpm add react-farcaster-embed

Usage

React Server Components / Next.js App Router

Add these imports inside your server component:

import { FarcasterEmbed } from "react-farcaster-embed";
import "react-farcaster-embed/dist/styles.css"; // include default styles or write your own


// use warpcast url
<FarcasterEmbed url="https://warpcast.com/pugson/0x4294c797" />

// or username and hash of the cast
<FarcasterEmbed username="dwr" hash="0x48d47343" />

Client Components / Next.js Pages Router

Add the CSS import inside _app.tsx if you are using Next.js Pages Router:

import "@/styles/globals.css";
import "react-farcaster-embed/dist/styles.css";
import type { AppProps } from "next/app";

export default function App({ Component, pageProps }: AppProps) {
  return <Component {...pageProps} />;
}

And then use the component in your client component using a special import:

import { FarcasterEmbed } from "react-farcaster-embed/dist/client";

// use warpcast url
<FarcasterEmbed url="https://warpcast.com/pugson/0x4294c797" />

// or username and hash of the cast
<FarcasterEmbed username="dwr" hash="0x48d47343" />

Styling

The embed will inherit your body color by default when you import the default stylesheet.

You can change the color of the component by changing its parent's color or adding custom CSS:

.farcaster-embed-container {
  color: purple;
}

Custom Endpoint

In case you need to self host the Warpcast Client API proxy, you can fork this repo and set the customEndpoint option in the FarcasterEmbed component.

Easiest way to do this is to make a wrapper component with that option applied. Example:

import { FarcasterEmbed as FCEmbed } from "react-farcaster-embed";

export const FarcasterEmbed = (props) => (
  <FCEmbed
    {...props}
    options={{
      customEndpoint: "https://your-endpoint.xyz/api/casts",
    }}
  />
);

Casts will be fetched from your custom proxy instead of the default one using this URL structure. Make sure your proxy supports it.

await fetch(`${options?.customEndpoint}/${username}/${hash}`);

Feeding your own cast JSON into the component

Warpcast's API will not return anything when the cast has been deleted, so this is useful if you want to display deleted casts from archival data using your own indexer. Use the castData prop to pass in the cast's JSON into the component to render.

const data = { /* cast data coming from your own indexer or Neynar */ };

<FarcasterEmbed castData={data} />

Prevent errors for deleted casts

You can use the silentError option to prevent errors from being thrown when the cast is deleted or unable to be fetched.

Easiest way to do this is to make a wrapper component with that option applied. Example:

import { FarcasterEmbed as FCEmbed } from "react-farcaster-embed";

export const FarcasterEmbed = (props) => (
  <FCEmbed
    {...props}
    options={{
      silentError: true,
    }}
  />
);

Found it useful?

Follow me on Farcaster or Twitter.

Send me a tip in ETH or $DEGEN to

  • pugson.eth
  • 0x96a77560146501eAEB5e6D5B7d8DD1eD23DEfa23

Other projects

You might also like ENS Data for getting ENS records and avatars or ABI Data for grabbing smart contract ABIs remotely.