Skip to content

Commit 1c1c027

Browse files
committed
feat: Enhance YouTube component with additional configuration options
fixes #488 - Add new props for YouTube embed: mute, controls, loop, modestBranding, and rel - Update documentation with detailed prop explanations and usage examples - Modify component to support new configuration options in iframe URL - Update tests to cover new prop configurations
1 parent 5d5f0b2 commit 1c1c027

File tree

3 files changed

+94
-18
lines changed

3 files changed

+94
-18
lines changed

apps/web/src/routes/+page.md

+58-12
Original file line numberDiff line numberDiff line change
@@ -729,30 +729,76 @@ Output:
729729
Props:
730730

731731
```ts
732-
youTubeId: string = ''
733-
listId: string = ''
734-
autoPlay: boolean = false
735-
aspectRatio: string = '16:9'
736-
skipTo: { h: 0, m: 0, s: 0 }
737-
disable_observer: boolean = false
738-
export let iframe_styles: string = `
739-
border-radius: 0.6rem;
740-
`
732+
youTubeId?: string;
733+
listId?: string;
734+
index?: number = 0;
735+
autoPlay?: boolean = false;
736+
aspectRatio?: string = '16:9';
737+
skipTo?: { h: number; m: number; s: number } = { h: 0, m: 0, s: 0 };
738+
disable_observer?: boolean = false;
739+
iframe_styles?: string = '';
740+
mute?: boolean = false;
741+
controls?: boolean = true;
742+
loop?: boolean = false;
743+
modestBranding?: boolean = false;
744+
rel?: boolean = false;
741745
```
742746

743-
Usage:
747+
Usage with video ID:
748+
749+
```html
750+
<YouTube youTubeId="dQw4w9WgXcQ" />
751+
```
752+
753+
Usage with playlist:
754+
755+
```html
756+
<YouTube
757+
listId="PLlrxD0HtieHhS8VzuMCfQD4uJ9yne1mE6"
758+
index="{2}"
759+
autoPlay="{true}"
760+
mute="{true}"
761+
controls="{true}"
762+
modestBranding="{true}"
763+
/>
764+
```
765+
766+
Usage with timestamp:
744767

745768
```html
746-
<YouTube youTubeId="L7_z8rcbFPg" />
769+
<YouTube
770+
youTubeId="dQw4w9WgXcQ"
771+
skipTo={{ h: 0, m: 1, s: 30 }}
772+
loop={true}
773+
rel={false}
774+
/>
747775
```
748776

749777
Output:
750778

751779
<YouTube
752780
disable_observer={$disable_observer_store}
753-
youTubeId="L7_z8rcbFPg"
781+
youTubeId="dQw4w9WgXcQ"
782+
aspectRatio="16:9"
754783
/>
755784

785+
### YouTube Props Explained
786+
787+
- `youTubeId`: The ID of the YouTube video
788+
- `listId`: The ID of a YouTube playlist
789+
- `index`: Starting index for playlist playback (default: 0)
790+
- `autoPlay`: Automatically start playing (default: false)
791+
- `mute`: Start video muted (default: false)
792+
- `controls`: Show player controls (default: true)
793+
- `loop`: Loop the video/playlist (default: false)
794+
- `modestBranding`: Use minimal YouTube branding (default: false)
795+
- `rel`: Show related videos at the end (default: false)
796+
- `aspectRatio`: Set the aspect ratio (default: '16:9')
797+
- `skipTo`: Start at specific timestamp (default: { h: 0, m: 0, s: 0
798+
})
799+
- `disable_observer`: Disable lazy loading (default: false)
800+
- `iframe_styles`: Custom CSS styles for the iframe
801+
756802
## Zencastr
757803

758804
Props:

packages/sveltekit-embed/src/lib/components/you-tube.svelte

+12-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
skipTo?: any;
1212
disable_observer?: boolean;
1313
iframe_styles?: string;
14+
mute?: boolean;
15+
controls?: boolean;
16+
loop?: boolean;
17+
modestBranding?: boolean;
18+
rel?: boolean;
1419
}
1520
1621
let {
@@ -24,6 +29,11 @@
2429
iframe_styles = `
2530
border-radius: 0.6rem;
2631
`,
32+
mute = false,
33+
controls = true,
34+
loop = false,
35+
modestBranding = false,
36+
rel = false,
2737
}: Props = $props();
2838
2939
const { h, m, s } = skipTo;
@@ -38,8 +48,8 @@
3848
const baseUrl = `https://www.youtube-nocookie.com/embed/`;
3949
const src = `${baseUrl}${
4050
youTubeId.length > 0
41-
? `${youTubeId}?autoplay=${autoPlay}&start=${startTime}`
42-
: `?videoseries&list=${listId}&index=${index}&autoplay=${autoPlay}&start=${startTime}`
51+
? `${youTubeId}?autoplay=${Number(autoPlay)}&start=${startTime}&mute=${Number(mute)}&controls=${Number(controls)}&loop=${Number(loop)}&modestbranding=${Number(modestBranding)}&rel=${Number(rel)}`
52+
: `?videoseries&list=${listId}&index=${index}&autoplay=${Number(autoPlay)}&start=${startTime}&mute=${Number(mute)}&controls=${Number(controls)}&loop=${Number(loop)}&modestbranding=${Number(modestBranding)}&rel=${Number(rel)}`
4353
}`;
4454
</script>
4555

packages/sveltekit-embed/src/lib/components/you-tube.test.ts

+24-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('YouTube', () => {
1818
expect(container).toBeTruthy();
1919
});
2020

21-
it('renders iframe with correct src for video', async () => {
21+
it('renders iframe with correct src for video with default options', async () => {
2222
const { getByTitle } = render(YouTube, {
2323
youTubeId: 'abc123',
2424
listId: '',
@@ -29,11 +29,31 @@ describe('YouTube', () => {
2929
disable_observer: true,
3030
});
3131
const iframe = getByTitle('youTube-abc123');
32-
const expectedSrc = `https://www.youtube-nocookie.com/embed/abc123?autoplay=false&start=0`;
32+
const expectedSrc = `https://www.youtube-nocookie.com/embed/abc123?autoplay=0&start=0&mute=0&controls=1&loop=0&modestbranding=0&rel=0`;
3333
expect(iframe.getAttribute('src')).toBe(expectedSrc);
3434
});
3535

36-
it('renders iframe with correct src for playlist', async () => {
36+
it('renders iframe with correct src for video with custom options', async () => {
37+
const { getByTitle } = render(YouTube, {
38+
youTubeId: 'abc123',
39+
listId: '',
40+
autoPlay: true,
41+
mute: true,
42+
controls: false,
43+
loop: true,
44+
modestBranding: true,
45+
rel: true,
46+
skipTo: { h: 0, m: 0, s: 0 },
47+
aspectRatio: '16:9',
48+
iframe_styles: '',
49+
disable_observer: true,
50+
});
51+
const iframe = getByTitle('youTube-abc123');
52+
const expectedSrc = `https://www.youtube-nocookie.com/embed/abc123?autoplay=1&start=0&mute=1&controls=0&loop=1&modestbranding=1&rel=1`;
53+
expect(iframe.getAttribute('src')).toBe(expectedSrc);
54+
});
55+
56+
it('renders iframe with correct src for playlist with default options', async () => {
3757
const listId = '123abc';
3858
const { getByTitle } = render(YouTube, {
3959
youTubeId: '',
@@ -45,7 +65,7 @@ describe('YouTube', () => {
4565
disable_observer: true,
4666
});
4767
const iframe = getByTitle(`youTube-${listId}`);
48-
const expectedSrc = `https://www.youtube-nocookie.com/embed/?videoseries&list=${listId}&index=0&autoplay=false&start=0`;
68+
const expectedSrc = `https://www.youtube-nocookie.com/embed/?videoseries&list=${listId}&index=0&autoplay=0&start=0&mute=0&controls=1&loop=0&modestbranding=0&rel=0`;
4969
expect(iframe.getAttribute('src')).toBe(expectedSrc);
5070
});
5171

0 commit comments

Comments
 (0)