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

ems-web-app-breakpoint-detection

v0.0.5

Published

This angular.io module includes a service and component to detect when an application's viewport crosses a breakpoint (e.g., from phone portrait to phone landscape)

Downloads

178

Readme

EMS Web Application Components: Breakpoint Change Detection

The Breakpoint Change Detection Angular.io module is authored for use within web applications developed by Educational Media Solutions.

Find the web application template source code on GitHub to review implementation in context.

Find a working example of this component here.

This package includes a component and service that can be used to define and listen for breakpoint events (i.e., when a user resizes their window/view portal across one or more thresholds).

Note: The service observable fires only on breakpoint change, not on every viewport resize event.

This isn't my favorite component. Anything display related should be handled via CSS. However, there are some form-factor/viewport-size specific functional changes required by clients from time to time, and this detection mechanism can be helpful in those cases.

This library was generated with Angular CLI version 13.2.0.

Usage: Module Import

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { BreakpointModule, BreakpointService } from "ems-web-app-breakpoint-detection";

@NgModule({
  declarations: [
    AppComponent 
  ],
  imports: [
    BrowserModule,
    BreakpointModule 
  ],
  providers: [ BreakpointService ],
  bootstrap: [ AppComponent ]
})
export class AppModule { }

Usage: Template Implementation

<breakpoint [breakpoints]="{ xs: 0, sm: 544, md: 768, lg: 992, xl: 1200 }"></breakpoint>

The breakpoints input is shown in its default configuration here. You can use whatever conventions you like for defining key/value pairs on the input.

E.g.,

<breakpoint [breakpoints]="{ mySmallestBp: 0, myMediumBp: 800, myLargestBp: 1600 }"></breakpoint>

Numeric values correspond to pixels. The default inputs correspond fairly well to phone portrait, phone landscape, tablet portrait, tablet landscape and desktop pixel widths. (Though some of the larger, wider phones get caught as "md" in portrait mode).

** Component Implementation **

Usage: Component Implementation

import { Component, OnInit } from '@angular/core';
import { BreakpointService, Breakpoint } from "ems-web-app-breakpoint-detection";

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.less']
})
export class AppComponent implements OnInit  {
  constructor(private breakpointService: BreakpointService) { }
  
  ngOnInit() {
    this.breakpointService.currentBreakpoint.subscribe((bp?: Breakpoint) => {
      console.log(bp?.type); // e.g., "sm"
      console.log(bp?.value); // e.g., 544
    })
  }
}

Convenience Enums

For readability, we use convenience enums that correspond to the internal defaults.

Enum Definition

enum BreakpointType {
  PhonePortrait = "xs",
  PhoneLandscape = "sm",
  TabletPortrait = "md",
  TabletLandscape = "lg",
  Desktop = "xl"
}

enum BreakpointValue {
  PhonePortrait = 0,
  PhoneLandscape = 544,
  TabletPortrait = 768,
  TabletLandscape = 992,
  Desktop = 1200
}


import { Component, OnInit } from '@angular/core';
import { BreakpointService, Breakpoint, BreakpointType, BreakpointValue } from "ems-web-app-breakpoint-detection";

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.less']
})
export class AppComponent implements OnInit  {
  constructor(private breakpoint: BreakpointService) { }
  
  ngOnInit() {
    this.breakpoint.currentBreakpoint.subscribe((bp?: Breakpoing) => {
      console.log(bp?.value < BreakpointValue.TabletPortrait); // e.g., true
      console.log(bp?.type === BreakpointType.PhoneLandscape); //e.g., true
    })
  }
}

Code scaffolding

Run ng generate component component-name --project breakpoint to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project breakpoint.

Note: Don't forget to add --project breakpoint or else it will be added to the default project in your angular.json file.

Build

Run ng build breakpoint to build the project. The build artifacts will be stored in the dist/ directory.

Publishing

After building your library with ng build breakpoint, go to the dist folder cd dist/breakpoint and run npm publish.

Running unit tests

Run ng test breakpoint to execute the unit tests via Karma.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.