npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@tgillespie/ngx-youtube-player

v13.0.1

Published

A component for embedding the YouTube Player and controlling it via the [YouTube iFrame API](https://developers.google.com/youtube/iframe_api_reference).

Downloads

4

Readme

@tgillespie/ngx-youtube-player

A component for embedding the YouTube Player and controlling it via the YouTube iFrame API.

It makes the iFrame API and player instance available via services and the component attribute. Alternatively, the API and Player instances can be managed with custom services.

Demo

The following demo does not reflect all capabilities of the component but should provide a quick glance. The component is much more powerful:

Go to the Demo

Usage

Install the library npm install @tgillespie/ngx-youtube-player

Import the library within your module with YoutubePlayerModule.forRoot():

import {YouTubePlayerModule} from "@tgillespie/youtube-player";
@NgModule({
  ...
  imports: [
    YouTubePlayerModule.forRoot(),
    ...
  ],
  ...
})
export class AppModule {}

You can now use the component within your templates:

<g-youtube-player videoId="M7lc1UVf-VE"></g-youtube-player>

Accessing the API

You can access the API via two methods:

Direct Access on Component

Use a ViewChild (or any way to obtain the component instance) and access the wanted aspect (e.g., player or stateChange). The following example is a shortened version of the Showcase.

Typescript:

import {AfterViewInit, ViewChild} from '@angular/core';
import {YouTubePlayerComponent, YouTubePlayerState} from "@tgillespie/youtube-player";

@Component({
  selector: 'g-youtube-player-demo',
  templateUrl: './youtube-player-demo.component.html',
  styleUrls: ['./youtube-player-demo.component.scss'],
})
export class YouTubePlayerDemoComponent implements AfterViewInit {
  @ViewChild('youtubePlayer') youtubePlayer!: YouTubePlayerComponent;

  ngAfterViewInit() {
    this.youtubePlayer?.stateChange.subscribe((newState) => {
      // We could check for equality to PLAYING state but this feels more responsive, since there is a delay when buffering
      this.isPlaying = newState !== YouTubePlayerState.PAUSED;

      this.cd.detectChanges();
    });

  }

  togglePlayingState() {
    if(this.isPlaying) {
      this.youtubePlayer?.player?.pauseVideo();
    } else {
      this.youtubePlayer?.player?.playVideo();
    }
  }

}

Template:

<g-youtube-player
  videoId="M7lc1UVf-VE"
  #youtubePlayer
></g-youtube-player>

Access via the YoutubePlayerManagerService

Inject the service and use it the same way as with the direct component access. You will need to give the player an ID or if no ID is given a random ID will be generated which you can fetch. The addition of new entries entries will trigger the newEntry observer on the Service.

Typescript

import {AfterViewInit, ViewChild} from '@angular/core';
import {YouTubePlayerComponent, YouTubePlayerState, YoutubePlayerManagerService} from "@tgillespie/youtube-player";

@Component({
  selector: 'g-youtube-player-demo',
  templateUrl: './youtube-player-demo.component.html',
  styleUrls: ['./youtube-player-demo.component.scss'],
})
export class YouTubePlayerDemoComponent implements AfterViewInit {

  private youtubePlayer: PlayerData | undefined = undefined;
  youtubePlayerId = 'my-unique-id';

  constructor(
    private youtubePlayerManagerService: YoutubePlayerManagerService,
  ) {}

  ngAfterViewInit() {
    this.youtubePlayer = this.youtubePlayerManagerService.get(this.youtubePlayerId);
    this.youtubePlayer?.stateChange.subscribe((newState) => {
      // We could check for equality to PLAYING state but this feels more responsive, since there is a delay when buffering
      this.isPlaying = newState !== YouTubePlayerState.PAUSED;

      this.cd.detectChanges();
    });

  }

  togglePlayingState() {
    if(this.isPlaying) {
      this.youtubePlayer?.player?.pauseVideo();
    } else {
      this.youtubePlayer?.player?.playVideo();
    }
  }

}

Template

<g-youtube-player
  videoId="M7lc1UVf-VE"
  [id]="youtubePlayerId"
  #youtubePlayer
></g-youtube-player>

Documentation

This library mostly just copies and forwards the iFrame API, adds some typing and converts some event aspects to observers. It also reloads the iFrame when the change would otherwise not be dynamically reflected. No detailed documentation is provided. As a substitution please see: