Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angular-breakpoints

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-breakpoints

Angular 2 service to programmatically listen to breakpoints

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
10
decreased by-9.09%
Maintainers
1
Weekly downloads
 
Created
Source

angular-breakpoints

angular-breakpoints is a little angular service to listen programmatically to breakpoints.

It works with RxJS.

Install

npm

npm install angular-breakpoints --save

jspm

jspm install angular-breakpoints=npm:angular-breakpoints 

How to use

First you need to import the breakpointsProvider function and expose it in the providers array (or in bootstrap).

import { breakpointsProvider, BreakpointsService, BreakpointEvent } from 'angular-breakpoints';

@Component({
    // ...
    providers: [breakpointsProvider()]  
    // ...
})
export class YourComponent {

    constructor (private breakpointsService: BreakpointsService) {
        
        this.breakpointsService.changes.subscribe((event: BreakpointEvent) => {
            
            console.log(event);
        });   
    }
}

The changes property is an instance of RxJS Observable. It will gives you the initial value when you subscribe to it.

BreakpointEvent interface

  • name: name of the breakpoint
  • breakpoint: value of the breakpoint (min and max)
  • currentSize: the current size of the window (width and height)

Customize breakpoints

The defaults breakpoints are the Twitter Bootstrap breakpoints.


const defaultBreakpoints: BreakpointConfig = {
    xs: { max: 768 },
    sm: { min: 768, max: 992 },
    md: { min: 992, max: 1200 },
    lg: { min: 1200 }
};

You can customize the breakpoints by passing a BreakpointConfig interface in the breakpointsProvider. To match a breakpoint, the size must be greater or equal than the minimum and less than the maximum (not less or equal).

const breakpointConfig: BreakpointConfig = {
    xss: { max: 400 },
    xs: { min: 400, max: 768 },
    sm: { min: 768, max: 992 },
    md: { min: 992, max: 1200 },
    lgs: { min: 1200, max: 1500 },
    lg: { min: 1500 }
}

// ...

providers: [breakpointsProvider(breakpointConfig)]

// ...

Unsubscribe to resize event

The service subscribes to the resize event when created. If you want to temporarily unsubscribe to the resize event, just call the unsubscribe method. If you want to resubscribe, call the subscribe method.

Keywords

FAQs

Package last updated on 19 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc