]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/misc/screen.service.ts
video add to playlist component -> onpush strategy
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / misc / screen.service.ts
CommitLineData
fc11a44e 1import { Injectable } from '@angular/core'
bbe0f064
C
2
3@Injectable()
4export class ScreenService {
5 private windowInnerWidth: number
fc11a44e
C
6 private lastFunctionCallTime: number
7 private cacheForMs = 500
bbe0f064 8
fc11a44e
C
9 constructor () {
10 this.refreshWindowInnerWidth()
bbe0f064
C
11 }
12
13 isInSmallView () {
8ff3f883 14 return this.getWindowInnerWidth() < 800
bbe0f064
C
15 }
16
17 isInMobileView () {
fc11a44e
C
18 return this.getWindowInnerWidth() < 500
19 }
20
8dfceec4
C
21 isInTouchScreen () {
22 return 'ontouchstart' in window || navigator.msMaxTouchPoints
23 }
24
fc11a44e
C
25 // Cache window inner width, because it's an expensive call
26 private getWindowInnerWidth () {
27 if (this.cacheWindowInnerWidthExpired()) this.refreshWindowInnerWidth()
28
29 return this.windowInnerWidth
30 }
31
32 private refreshWindowInnerWidth () {
33 this.lastFunctionCallTime = new Date().getTime()
34
35 this.windowInnerWidth = window.innerWidth
36 }
37
38 private cacheWindowInnerWidthExpired () {
3a0fb65c
C
39 if (!this.lastFunctionCallTime) return true
40
fc11a44e 41 return new Date().getTime() > (this.lastFunctionCallTime + this.cacheForMs)
bbe0f064
C
42 }
43}