]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/misc/utils.ts
Rewrite infinite scroll
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / misc / utils.ts
CommitLineData
f3aaa9a9
C
1// Thanks: https://stackoverflow.com/questions/901115/how-can-i-get-query-string-values-in-javascript
2
61bbc727 3import { DatePipe } from '@angular/common'
c5911fd3 4import { environment } from '../../../environments/environment'
15a7387d
C
5import { AuthService } from '../../core/auth'
6
f3aaa9a9
C
7function getParameterByName (name: string, url: string) {
8 if (!url) url = window.location.href
9 name = name.replace(/[\[\]]/g, '\\$&')
10
11 const regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)')
12 const results = regex.exec(url)
13
14 if (!results) return null
15 if (!results[2]) return ''
16
17 return decodeURIComponent(results[2].replace(/\+/g, ' '))
18}
19
cd83ea1b
C
20function viewportHeight () {
21 return Math.max(document.documentElement.clientHeight, window.innerHeight || 0)
22}
23
15a7387d
C
24function populateAsyncUserVideoChannels (authService: AuthService, channel: any[]) {
25 return new Promise(res => {
26 authService.userInformationLoaded
27 .subscribe(
28 () => {
29 const user = authService.getUser()
30 if (!user) return
31
32 const videoChannels = user.videoChannels
33 if (Array.isArray(videoChannels) === false) return
34
60650c77 35 videoChannels.forEach(c => channel.push({ id: c.id, label: c.displayName }))
15a7387d
C
36
37 return res()
38 }
39 )
40 })
41}
42
c5911fd3
C
43function getAbsoluteAPIUrl () {
44 let absoluteAPIUrl = environment.apiUrl
45 if (!absoluteAPIUrl) {
46 // The API is on the same domain
47 absoluteAPIUrl = window.location.origin
48 }
49
50 return absoluteAPIUrl
51}
52
61bbc727
C
53const datePipe = new DatePipe('en')
54function dateToHuman (date: string) {
55 return datePipe.transform(date, 'medium')
56}
57
0cd4344f
C
58function immutableAssign <A, B> (target: A, source: B) {
59 return Object.assign({}, target, source)
60}
61
3290f37c 62function isInSmallView () {
61bbc727
C
63 return window.innerWidth < 600
64}
65
3290f37c
C
66function isInMobileView () {
67 return window.innerWidth < 500
68}
69
f3aaa9a9 70export {
cd83ea1b 71 viewportHeight,
15a7387d 72 getParameterByName,
c5911fd3 73 populateAsyncUserVideoChannels,
61bbc727
C
74 getAbsoluteAPIUrl,
75 dateToHuman,
3290f37c 76 isInSmallView,
0cd4344f
C
77 isInMobileView,
78 immutableAssign
f3aaa9a9 79}