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

@titoagudelo/cdf-ng-media

v1.4.1

Published

Angular module for displaying media assets (images, videos)

Downloads

20

Readme

CDF Media UI Module (@titoagudelo/cdf-ng-media)

version downloads

CDF-NG-MEDIA is an Angular module containing UI components for displaying different forms of media (images and/or video). This module simplifies the displaying of media assets. CDF-NG-MEDIA is a UI module existing in Content Delivery Framework's eco-system.

Happy Coding!

Requirements

CDF-NG-MEDIA requires the latest version of Angular (at the time of this writing: 2.4.7).

  //package.json

  "dependencies": {
    "@angular/common": "2.4.7",
    "@angular/compiler": "2.4.7",
    "@angular/core": "2.4.7",
    "@angular/forms": "2.4.7",
    "@angular/http": "2.4.7",
    "@angular/platform-browser": "2.4.7",
    "@angular/platform-browser-dynamic": "2.4.7",
    "@angular/router": "3.4.7"
	...
  }

CDF-NG-MEDIA also utilizes the following 3rd party sources:

  • JW Player as the vehicle for loading videos. CDF-NG-MEDIA is currently using:
    • JW Player version 7.6.1

Installation

CDF-NG-MEDIA requires a JW Player key in order for JW Player to work correctly. You will need to create an account and establish a JW Player key. You will provide the JW Player Key during configuration. See JW Player for creating an account.

Installing CDF-NG-MEDIA in your Angular application:

    //STEP 1: INSTALL CDF-NG-MEDIA

    npm install @titoagudelo/cdf-ng-media --save

...................................................

    //STEP 2: create a config file (cdf-media-config.ts) to provide configuration settings:

    import { ConfigInterface } from '@titoagudelo/cdf-ng-media/lib';

    export const CdfMediaConfig: ConfigInterface =
      {
        JwPlayerKey: 'YOUR JW PLAYER KEY'
      };

...................................................
  //STEP 3: configure your AppModule:

    // app.module.ts
    import { CdfModule } from '@titoagudelo/cdf-ng/lib';
    import { CdfMediaConfig } from './configs';

    @NgModule({
      declarations: [ ... ],
      imports: [
        ...
        //3rd PARTY
        CdfMediaModule.forRoot(CdfMediaConfig),
      ],
      providers: [ ... ],
      bootstrap: [ ... ]
    })
    export class AppModule { }

CDF-NG-MEDIA Models

CDF-NG-MEDIA containes the following models needed to show media asset(s):

  • CdfMediaModel
  • CdfVideoModel

CdfMediaModel

CdfMediaModel is the model that contains data about the media asset (image and/or video). CdfMediaModel contains the following data points:

	Id: string;
	Type: string;
	Title: string;
	Description: string;
	ImageUri: string;
	YouTubeId: string;
	VideoList: CdfVideoModel[] = [];
	HasImage: boolean = false;
	HasVideo: boolean = false;
  • Type can be used to apply a label ontop of the media asset (perfect for a collection of media assets of different types)
  • ImageUri is the complete http URL to an image
  • YouTubeId is the unique value representing a YouTube video (ex. 8geR0yacozY)
  • VideoList is an optional collection of URIs to different videos. This is a placeholder for future functionality

CdfVideoModel

CdfVideoModel is a placeholder data model for future development.

CDF-NG-MEDIA Components

CDF-NG-MEDIA containes the following components you can use:

  • CdfMediaComponent
  • CdfMediaSliderComponent
  • CdfVideoBackgroundComponent

CdfMediaComponent

CdfMediaComponent is the base component used to display either an image or a video. CdfMediaComponent consumes CdfMediaModel which contains all the data necessary to determine if the media asset is a video or an image.

CdfMediaSliderComponent

CdfMediaSliderComponent is a component handling a collection of CdfMediaModels (mix of images and/or videos). CdfMediaSliderComponent arranges the media in a grid. If one of the items is a video, then playing the video will cause an information pane to slide out showing media's title, type, description and a button to click. You can toggle on/off title, type, and description.

<cdf-media-slider [mediaModelList]="mediaModelList"
    [showType]="showType"
    [showTitle]="showTitle"
    [showDescription]="showDescription"
    (onImageClick)="doMediaClick($event)"></cdf-media-slider>

CdfVideoBackgroundComponent

CdfVideoBackgroundComponent uses JW Player's capability to run a video contained in CdfMediaModel in the background.

Helpful Links

Release History

  • 1.2.0
    • made cdf-media-slider self-contained
  • 1.1.3
    • removed configuration requirement passing in image source URL
  • < 1.0.65
    • Rounds and rounds of trial and error...

Meta

Tom Schreck – @tschreck[email protected]

https://github.com/tomschreck

License

MIT