blob: af75569d9bd66fb61b82cd070d4c30300cfbf1ce (
plain) (
tree)
|
|
import { Injectable } from '@angular/core'
@Injectable()
export class ScreenService {
private windowInnerWidth: number
private lastFunctionCallTime: number
private cacheForMs = 500
constructor () {
this.refreshWindowInnerWidth()
}
isInSmallView () {
return this.getWindowInnerWidth() < 800
}
isInMobileView () {
return this.getWindowInnerWidth() < 500
}
isInTouchScreen () {
return 'ontouchstart' in window || navigator.msMaxTouchPoints
}
// Cache window inner width, because it's an expensive call
private getWindowInnerWidth () {
if (this.cacheWindowInnerWidthExpired()) this.refreshWindowInnerWidth()
return this.windowInnerWidth
}
private refreshWindowInnerWidth () {
this.lastFunctionCallTime = new Date().getTime()
this.windowInnerWidth = window.innerWidth
}
private cacheWindowInnerWidthExpired () {
if (!this.lastFunctionCallTime) return true
return new Date().getTime() > (this.lastFunctionCallTime + this.cacheForMs)
}
}
|