Last active
May 11, 2021 21:35
-
-
Save snewell92/57aa0e064be3f3098a3cf147d1a5659d to your computer and use it in GitHub Desktop.
Angular Responsive Service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* TYPESCRIPT */ | |
import { Injectable } from '@angular/core'; | |
@Injectable() | |
export class ResponsiveService { | |
constructor() { | |
window.onresize = this.callSubscribers | |
} | |
private callbacks: Function[] = []; | |
// taken from bootstrap's grid system | |
private breakpoints = { | |
xs: '(max-width:575px)', | |
s: '(min-width:576px) and (max-width:767px)', | |
m: '(min-width:768px) and (max-width:991px)', | |
l: '(min-width:992px) and (max-width:1199px)', | |
xl: '(min-width:1200px)' | |
}; | |
private xsOrs = this.breakpoints.xs + ',' + this.breakpoints.s; | |
public isXS = () => this.ruleIsMet(this.breakpoints.xs); | |
public isS = () => this.ruleIsMet(this.breakpoints.s); | |
public isM = () => this.ruleIsMet(this.breakpoints.m); | |
public isl = () => this.ruleIsMet(this.breakpoints.l); | |
public isxl = () => this.ruleIsMet(this.breakpoints.xl); | |
public isSmallScreen = () => this.ruleIsMet(this.xsOrs); | |
public registerChangeCallback = (f: Function) => { | |
this.callbacks.push(f); | |
} | |
private ruleIsMet = (rule: string) => window.matchMedia(rule).matches; | |
private callSubscribers = () => { | |
let len = this.callbacks.length; | |
if(len == 0) { | |
return; | |
} | |
let i = 0; | |
for(;i < len; i++) { | |
this.callbacks[i](); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment