|
| 1 | +# react-embeds |
| 2 | + |
| 3 | +Unified React components for embedding social media and streaming content. One component per platform with consistent styling, theming, and TypeScript support. |
| 4 | + |
| 5 | +## Installation |
| 6 | + |
| 7 | +```bash |
| 8 | +npm install react-embeds |
| 9 | +``` |
| 10 | + |
| 11 | +### Peer Dependencies |
| 12 | + |
| 13 | +```bash |
| 14 | +npm install react react-dom |
| 15 | +# Optional - for HLS/DASH video streaming: |
| 16 | +npm install hls.js dashjs |
| 17 | +``` |
| 18 | + |
| 19 | +| Dependency | Version | Required | |
| 20 | +|------------|---------|----------| |
| 21 | +| react | ≥18 | Yes | |
| 22 | +| react-dom | ≥18 | Yes | |
| 23 | +| hls.js | ≥1.0 | No (for HLS streams) | |
| 24 | +| dashjs | ≥4.0 | No (for DASH streams) | |
| 25 | + |
| 26 | +## Quick Start |
| 27 | + |
| 28 | +```tsx |
| 29 | +import { YouTubeEmbed, XEmbed, SpotifyEmbed } from "react-embeds"; |
| 30 | + |
| 31 | +function App() { |
| 32 | + return ( |
| 33 | + <div> |
| 34 | + <YouTubeEmbed url="https://www.youtube.com/watch?v=dQw4w9WgXcQ" /> |
| 35 | + <XEmbed url="https://x.com/elonmusk/status/123456789" theme="dark" /> |
| 36 | + <SpotifyEmbed url="https://open.spotify.com/track/4uLU6hMCjMI75M1A2tKUQC" /> |
| 37 | + </div> |
| 38 | + ); |
| 39 | +} |
| 40 | +``` |
| 41 | + |
| 42 | +## Supported Platforms |
| 43 | + |
| 44 | +### Social Media |
| 45 | +| Component | Platform | |
| 46 | +|-----------|----------| |
| 47 | +| `XEmbed` | X (Twitter) | |
| 48 | +| `InstagramEmbed` | Instagram | |
| 49 | +| `FacebookEmbed` | Facebook | |
| 50 | +| `ThreadsEmbed` | Threads | |
| 51 | +| `BlueskyEmbed` | Bluesky | |
| 52 | +| `MastodonEmbed` | Mastodon | |
| 53 | +| `TruthSocialEmbed` | Truth Social | |
| 54 | +| `LinkedInEmbed` | LinkedIn | |
| 55 | +| `RedditEmbed` | Reddit | |
| 56 | +| `TumblrEmbed` | Tumblr | |
| 57 | +| `PinterestEmbed` | Pinterest | |
| 58 | +| `SnapchatEmbed` | Snapchat | |
| 59 | +| `TelegramEmbed` | Telegram | |
| 60 | + |
| 61 | +### Video |
| 62 | +| Component | Platform | |
| 63 | +|-----------|----------| |
| 64 | +| `YouTubeEmbed` | YouTube | |
| 65 | +| `TikTokEmbed` | TikTok | |
| 66 | +| `TwitchEmbed` | Twitch | |
| 67 | +| `KickEmbed` | Kick | |
| 68 | +| `RumbleEmbed` | Rumble | |
| 69 | +| `DailymotionEmbed` | Dailymotion | |
| 70 | +| `OdyseeEmbed` | Odysee | |
| 71 | +| `BilibiliEmbed` | Bilibili | |
| 72 | +| `ArchiveOrgEmbed` | Archive.org | |
| 73 | + |
| 74 | +### Audio |
| 75 | +| Component | Platform | |
| 76 | +|-----------|----------| |
| 77 | +| `SpotifyEmbed` | Spotify | |
| 78 | +| `AppleMusicEmbed` | Apple Music | |
| 79 | +| `ApplePodcastsEmbed` | Apple Podcasts | |
| 80 | +| `SoundCloudEmbed` | SoundCloud | |
| 81 | +| `DeezerEmbed` | Deezer | |
| 82 | +| `TidalEmbed` | Tidal | |
| 83 | + |
| 84 | +## Common Props |
| 85 | + |
| 86 | +All embed components share these common props: |
| 87 | + |
| 88 | +```tsx |
| 89 | +interface CommonProps { |
| 90 | + url: string; // Required: Content URL |
| 91 | + theme?: "light" | "dark"; // Color theme (default: "light") |
| 92 | + width?: string | number; // Container width |
| 93 | + maxWidth?: string | number; // Maximum width |
| 94 | + showBranding?: boolean; // Show platform branding (default: true) |
| 95 | + showCTA?: boolean; // Show call-to-action button (default: true) |
| 96 | + ctaLabel?: string; // CTA button text |
| 97 | + disableCard?: boolean; // Remove card styling |
| 98 | + linkBehavior?: "card" | "title" | "cta" | "none"; |
| 99 | + linkTarget?: "_blank" | "_self"; |
| 100 | +} |
| 101 | +``` |
| 102 | + |
| 103 | +## Core Components |
| 104 | + |
| 105 | +### EmbedCard |
| 106 | + |
| 107 | +Base component used by all embeds. Use directly for custom embeds: |
| 108 | + |
| 109 | +```tsx |
| 110 | +import { EmbedCard } from "react-embeds"; |
| 111 | + |
| 112 | +<EmbedCard |
| 113 | + provider="Custom" |
| 114 | + title="My Custom Embed" |
| 115 | + author="Author Name" |
| 116 | + body="Description text" |
| 117 | + href="https://example.com" |
| 118 | + theme="dark" |
| 119 | + media={{ type: "image", url: "https://example.com/image.jpg" }} |
| 120 | +/> |
| 121 | +``` |
| 122 | + |
| 123 | +### MediaPlayer |
| 124 | + |
| 125 | +Custom video player with HLS/DASH support: |
| 126 | + |
| 127 | +```tsx |
| 128 | +import { MediaPlayer } from "react-embeds"; |
| 129 | + |
| 130 | +<MediaPlayer |
| 131 | + src="https://example.com/stream.m3u8" |
| 132 | + poster="https://example.com/poster.jpg" |
| 133 | + autoPlay={false} |
| 134 | +/> |
| 135 | +``` |
| 136 | + |
| 137 | +Supports: |
| 138 | +- Native video (MP4, WebM) |
| 139 | +- HLS streams (.m3u8) via hls.js |
| 140 | +- DASH streams (.mpd) via dashjs |
| 141 | + |
| 142 | +## Theming |
| 143 | + |
| 144 | +All components support light and dark themes: |
| 145 | + |
| 146 | +```tsx |
| 147 | +<YouTubeEmbed url={videoUrl} theme="dark" /> |
| 148 | +``` |
| 149 | + |
| 150 | +Use CSS variables for custom styling: |
| 151 | + |
| 152 | +```css |
| 153 | +.my-embed { |
| 154 | + --embed-accent: #ff6b6b; |
| 155 | + --embed-bg: #1a1a1a; |
| 156 | +} |
| 157 | +``` |
| 158 | + |
| 159 | +## Layout Modes |
| 160 | + |
| 161 | +Control layout with the `CardLayoutProvider`: |
| 162 | + |
| 163 | +```tsx |
| 164 | +import { CardLayoutProvider, YouTubeEmbed } from "react-embeds"; |
| 165 | + |
| 166 | +<CardLayoutProvider layout="modern"> |
| 167 | + <YouTubeEmbed url={url} /> |
| 168 | +</CardLayoutProvider> |
| 169 | +``` |
| 170 | + |
| 171 | +Layouts: `"classic"` (metadata first) | `"modern"` (media first) |
| 172 | + |
| 173 | +## TypeScript |
| 174 | + |
| 175 | +All components export their prop types: |
| 176 | + |
| 177 | +```tsx |
| 178 | +import { YouTubeEmbed, YouTubeEmbedProps } from "react-embeds"; |
| 179 | +import { EmbedCardProps, MediaPlayerProps } from "react-embeds"; |
| 180 | +``` |
| 181 | + |
| 182 | +## License |
| 183 | + |
| 184 | +MIT |
0 commit comments