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

@greg-md/ng-facebook

v1.2.5

Published

Using Facebook SDK with Angular.

Downloads

40

Readme

Ng Facebook

npm version Build Status

Using Facebook SDK with Angular.

Table of Contents:

Features

  1. Multi-Language initialization support with changing languages in real time;
  2. Lazy loading Facebook plugins when they appears in viewport.

Installation

npm install @greg-md/ng-facebook --save

How It Works

Setting up in a module

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

// 1. Import Facebook module;
import { FacebookModule } from '@greg-md/ng-facebook';

import { AppComponent } from './app.component';

@NgModule({
  imports: [
    BrowserModule,
    // 2. Register Facebook providers in root module;
    FacebookModule.forRoot(),
    
    // 3. Import Facebook components for a specific module.
    FacebookModule,
  ],
  declarations: [AppComponent],
  bootstrap: [AppComponent]
})
export class AppModule { }

Using in components/views

import { Component, OnInit } from '@angular/core';
import { FacebookService } from '@greg-md/ng-facebook';

@Component({
  selector: 'app-root',
  template: `
    <a tabindex="0" (click)="changeLanguage('en_EN')">English</a>
    |
    <a tabindex="0" (click)="changeLanguage('ro_RO')">Romanian</a>

    <fb-like href="http://greg.md"></fb-like>
  `,
})
export class AppComponent implements OnInit {
  constructor(public facebook: FacebookService) { }

  ngOnInit() {
    this.facebook.init().subscribe();
  }
  
  changeLanguage(newLanguage) {
    this.facebook.init({}, newLanguage).subscribe();
  }
}

Components

All components have next attributes:

lazyLoad

By default plugins are loaded when Facebook SDK is initialized. If you want plugins to be lazy loaded, use lazyLoad attribute. Setting lazyLoad to 200 causes image to load 200 pixels before it appears on viewport.

You can also define lazy loading threshold globally providing FB_PARSE_LAZY_LOAD token in module providers.

{
  provide: FB_PARSE_LAZY_LOAD,
  useValue: 200,
}

container

You can use also use lazyLoad attribute inside a scrolling container, such as div with scroll bar.

Example:

<div #container>
  <fb-page href="https://www.facebook.com/facebook" [lazyLoad]="200" [container]="container"></fb-page>
</div>

fb-page

Page Plugin.

Facebook Documentation.

Example:

<fb-page href="https://www.facebook.com/facebook">Facebook</fb-page>

Attributes

href

The URL of the Facebook Page.

width

The pixel width of the plugin. Min. is 180 & Max. is 500.

Default: 340.

height

The pixel height of the plugin. Min. is 70.

Default: 500.

tabs

Tabs to render i.e. timeline, events, messages. Use a comma-separated list to add multiple tabs, i.e. timeline, events.

Default: timeline.

hideCover

Hide cover photo in the header.

Default false.

showFacepile

Show profile photos when friends like this.

Default true.

hideCta

Hide the custom call to action button (if available).

Default false.

smallHeader

Use the small header instead.

Default false.

adaptContainerWidth

Try to fit inside the container width.

Default true.

fb-like

A single click on the Like button will 'like' pieces of content on the web and share them on Facebook. You can also display a Share button next to the Like button to let people add a personal message and customize who they share with.

Facebook Documentation.

Example:

<fb-like href="http://greg.md"></fb-like>

Attributes

action

The verb to display on the button. Can be either like or recommend.

Default: like.

colorscheme

The color scheme used by the plugin for any text outside of the button itself. Can be light or dark.

Default: light.

href

The absolute URL of the page that will be liked.

kidDirectedSite

If your web site or online service, or a portion of your service, is directed to children under 13 you must enable this.

Default: false.

layout

Selects one of the different layouts that are available for the plugin. Can be one of standard, button_count, button or box_count.

Layout Settings

| Layout | Default Sizes | | ------------- | ------------- | | standard | Minimum width: 225 pixels.Default width: 450 pixels.Height: 35 pixels (without photos) or 80 pixels (with photos). | | box_count | Minimum width: 55 pixels.Default width: 55 pixels.Height: 65 pixels. | | button_count | Minimum width: 90 pixels.Default width: 90 pixels.Height: 20 pixels. | | button | Minimum width: 47 pixels.Default width: 47 pixels.Height: 20 pixels. |

ref

A label for tracking referrals which must be less than 50 characters and can contain alphanumeric characters and some punctuation (currently +/=-.:_). See the FAQ for more details.

share

Specifies whether to include a share button beside the Like button. This only works with the XFBML version.

Default: false.

showFaces

Specifies whether to display profile photos below the button (standard layout only). You must not enable this on child-directed sites.

Default: false.

size

The button is offered in 2 sizes i.e. large and small.

Default: small.

width

The width of the plugin (standard layout only), which is subject to the minimum and default width. Please see Layout Settings for more details.

Directives

All directives have next attributes:

lazyLoad

By default plugins are loaded when Facebook SDK is initialized. If you want plugins to be lazy loaded, use lazyLoad attribute. Setting lazyLoad to 200 causes image to load 200 pixels before it appears on viewport.

container

You can use also use lazyLoad attribute inside a scrolling container, such as div with scroll bar.

Example:

<div #container>
    <div fbParse [lazyLoad]="200" [container]="container">
      <div class="fb-like"
        data-href="http://greg.md"
        data-layout="standard"
        data-action="like"
        data-size="small"
        data-showFaces="true"
        data-share="true"></div>
    </div>
</div>

fbParse

Parse Facebook plugins from current container.

Example:

<div fbParse>
  <div class="fb-like"
    data-href="http://greg.md"
    data-layout="standard"
    data-action="like"
    data-size="small"
    data-showFaces="true"
    data-share="true"></div>
</div>

Facebook Service

FacebookService works directly with Facebook sdk.

Methods

Below is a list of supported methods:

  • load - Load Facebook SDK;
  • init - Load and initialize Facebook SDK;
  • login - Login via Facebook;
  • api - Facebook API;
  • parse - Parse Facebook plugins from a HTMLElement;
  • reloadRenderedElements - Reload all rendered elements from DOM;

load

Load Facebook SDK.

load(locale: string = 'en_US'): Observable<Facebook>

lang - Facebook SDK locale. See Localization & Translation.

Example:

import { Component, OnInit } from '@angular/core';

import { FacebookService } from '@greg-md/ng-facebook';

@Component({
  selector: 'app',
  template: `
    <fb-page href="https://www.facebook.com/facebook"></fb-page>
  `,
})
export class AppComponent implements OnInit {
  constructor(private facebookService: FacebookService) { }

  ngOnInit() {
    this.facebookService.load().subscribe(sdk => {
      // do something
    });
  }
}

init

Load and initialize Facebook SDK.

This method extends the load method, by initializing the Facebook SDK in the meantime.

init(params: FacebookInitParams = {}, locale: string = 'en_US'): Observable<Facebook>

params - The same as FB.init(params) parameters;
lang - Facebook SDK locale. See Localization & Translation.

Example:

import { Component, OnInit } from '@angular/core';

import { FacebookService } from '@greg-md/ng-facebook';

@Component({
  selector: 'app',
  template: `
    <button type="button" (click)="changeLocale()">Change Locale</button>
    
    <fb-page href="https://www.facebook.com/facebook"></fb-page>
  `,
})
export class AppComponent implements OnInit {
  settings = {
    appId : '{your-app-id}',
    version: 'v2.7',
  };

  constructor(private facebookService: FacebookService) { }

  ngOnInit() {
    this.facebookService.init(this.settings).subscribe();
  }

  changeLocale() {
    return this.facebookService.init(this.settings, 'ro_RO').subscribe();
  }
}

login

Facebook Login.

login(options?: FacebookLoginOptions): Observable<FacebookAuth>

Example:

import { Component, OnInit } from '@angular/core';

import { FacebookService } from '@greg-md/ng-facebook';

@Component({
  selector: 'app',
  template: `
    <button type="button" (click)="loginViaFacebook()">Login via Facebook</button>
    
    <p *ngIf="userID">User ID: {{ userID }}</p>
  `,
})
export class AppComponent implements OnInit {
  settings = {
    appId : '{your-app-id}',
    version: 'v2.7',
  };

  userID: string;

  constructor(private facebookService: FacebookService) { }

  ngOnInit() {
    this.facebookService.init(this.settings).subscribe();
  }

  loginViaFacebook() {
    this.facebookService.login({scope: 'email'}).subscribe(auth => {
      this.userID = auth.userID;
    });
  }
}

api

Facebook API.

api(path: string, method?: 'get' | 'post' | 'delete' | FacebookApiParamsArg, params?: FacebookApiParamsArg): Observable<Object>

Example:

import { Component, OnInit } from '@angular/core';

import { FacebookService } from '@greg-md/ng-facebook';

@Component({
  selector: 'app',
  template: `
    <button type="button" (click)="getFacebookName()">Get Facebook Name</button>
    
    <p *ngIf="name">Name: {{ name }}</p>
  `,
})
export class AppComponent implements OnInit {
  settings = {
    appId : '{your-app-id}',
    version: 'v2.7',
  };

  name: string;

  constructor(private facebookService: FacebookService) { }

  ngOnInit() {
    this.facebookService.init(this.settings).subscribe();
  }

  getFacebookName() {
    this.facebookService.api('/me').subscribe(me => {
      this.name = me.name;
    });
  }
}

parse

Parse Facebook plugins from a HTMLElement.

parse(element: HTMLElement): Observable<HTMLElement>

element - An HTMLElement.

Example:

import { Component, OnInit, ElementRef } from '@angular/core';

import { FacebookService } from '@greg-md/ng-facebook';

@Component({
  selector: 'facebook-page',
  template: `
    <h2>We on Facebook!</h2>
    
    <div class="fb-page" 
      data-href="https://www.facebook.com/facebook"
      data-width="380" 
      data-hideCover="false"
      data-showFacepile="false" 
      data-show-posts="false"></div>
  `,
})
export class FacebookPageComponent implements OnInit {
  constructor(private: elementRef: ElementRef, private facebookService: FacebookService) { }

  ngOnInit() {
    this.facebookService.parse(this.elementRef.nativeElement).subscribe();
  }
}

reloadRenderedElements

Reload all Facebook rendered elements from DOM.

reloadRenderedElements(): Observable<HTMLElement>

Example:

import { Component, OnInit } from '@angular/core';

import { FacebookService } from '@greg-md/ng-facebook';

@Component({
  selector: 'app',
  template: `
    <button type="button" (click)="changeLocale()">Change Locale</button>
    
    <fb-page href="https://www.facebook.com/facebook"></fb-page>
  `,
})
export class AppComponent implements OnInit {
  constructor(private facebookService: FacebookService) { }

  ngOnInit() {
    this.facebookService.load().subscribe();
  }

  changeLocale() {
    this.facebookService.load('ro_RO').subscribe(sdk => {
      this.facebookService.reloadRenderedElements().subscribe();
    });
  }
}

License

MIT © Grigorii Duca

Huuuge Quote

I fear not the man who has practiced 10,000 programming languages once, but I fear the man who has practiced one programming language 10,000 times. #horrorsquad