]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/misc/utils.ts
Optimize list my playlists SQL query
[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
c511c3f0
RK
7type ElementEvent = Omit<Event, 'target'> & {
8 target: HTMLElement
9}
10
f3aaa9a9
C
11function getParameterByName (name: string, url: string) {
12 if (!url) url = window.location.href
13 name = name.replace(/[\[\]]/g, '\\$&')
14
15 const regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)')
16 const results = regex.exec(url)
17
18 if (!results) return null
19 if (!results[2]) return ''
20
21 return decodeURIComponent(results[2].replace(/\+/g, ' '))
22}
23
830b4faf 24function populateAsyncUserVideoChannels (authService: AuthService, channel: { id: number, label: string, support?: string }[]) {
15a7387d
C
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
74af5145 35 videoChannels.forEach(c => channel.push({ id: c.id, label: c.displayName, support: c.support }))
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
11b8762f
C
58function durationToString (duration: number) {
59 const hours = Math.floor(duration / 3600)
60 const minutes = Math.floor((duration % 3600) / 60)
61 const seconds = duration % 60
62
63 const minutesPadding = minutes >= 10 ? '' : '0'
64 const secondsPadding = seconds >= 10 ? '' : '0'
65 const displayedHours = hours > 0 ? hours.toString() + ':' : ''
66
67 return displayedHours + minutesPadding + minutes.toString() + ':' + secondsPadding + seconds.toString()
68}
69
0cd4344f
C
70function immutableAssign <A, B> (target: A, source: B) {
71 return Object.assign({}, target, source)
72}
73
cd4d7a2c
C
74function objectToUrlEncoded (obj: any) {
75 const str: string[] = []
76 for (const key of Object.keys(obj)) {
77 str.push(encodeURIComponent(key) + '=' + encodeURIComponent(obj[key]))
78 }
79
80 return str.join('&')
81}
82
6de36768
C
83// Thanks: https://gist.github.com/ghinda/8442a57f22099bdb2e34
84function objectToFormData (obj: any, form?: FormData, namespace?: string) {
c4710631 85 const fd = form || new FormData()
6de36768
C
86 let formKey
87
c4710631 88 for (const key of Object.keys(obj)) {
6de36768
C
89 if (namespace) formKey = `${namespace}[${key}]`
90 else formKey = key
91
92 if (obj[key] === undefined) continue
93
2efd32f6
C
94 if (Array.isArray(obj[key]) && obj[key].length === 0) {
95 fd.append(key, null)
96 continue
97 }
98
360329cc 99 if (obj[key] !== null && typeof obj[ key ] === 'object' && !(obj[ key ] instanceof File)) {
40e87e9e 100 objectToFormData(obj[ key ], fd, formKey)
6de36768
C
101 } else {
102 fd.append(formKey, obj[ key ])
103 }
104 }
105
106 return fd
107}
108
1506307f 109function objectLineFeedToHtml (obj: any, keyToNormalize: string) {
5de8a55a 110 return immutableAssign(obj, {
1506307f 111 [keyToNormalize]: lineFeedToHtml(obj[keyToNormalize])
5de8a55a
C
112 })
113}
114
1506307f
C
115function lineFeedToHtml (text: string) {
116 if (!text) return text
117
118 return text.replace(/\r?\n|\r/g, '<br />')
119}
120
40e87e9e
C
121function removeElementFromArray <T> (arr: T[], elem: T) {
122 const index = arr.indexOf(elem)
123 if (index !== -1) arr.splice(index, 1)
124}
125
ad774752
C
126function sortBy (obj: any[], key1: string, key2?: string) {
127 return obj.sort((a, b) => {
128 const elem1 = key2 ? a[key1][key2] : a[key1]
129 const elem2 = key2 ? b[key1][key2] : b[key1]
130
131 if (elem1 < elem2) return -1
132 if (elem1 === elem2) return 0
133 return 1
134 })
135}
136
7373507f
C
137function scrollToTop () {
138 window.scroll(0, 0)
139}
140
0c503f5c
C
141// Thanks: https://github.com/uupaa/dynamic-import-polyfill
142function importModule (path: string) {
143 return new Promise((resolve, reject) => {
144 const vector = '$importModule$' + Math.random().toString(32).slice(2)
145 const script = document.createElement('script')
146
147 const destructor = () => {
148 delete window[ vector ]
149 script.onerror = null
150 script.onload = null
151 script.remove()
152 URL.revokeObjectURL(script.src)
153 script.src = ''
154 }
155
156 script.defer = true
157 script.type = 'module'
158
159 script.onerror = () => {
160 reject(new Error(`Failed to import: ${path}`))
161 destructor()
162 }
163 script.onload = () => {
164 resolve(window[ vector ])
165 destructor()
166 }
167 const absURL = (environment.apiUrl || window.location.origin) + path
168 const loader = `import * as m from "${absURL}"; window.${vector} = m;` // export Module
169 const blob = new Blob([ loader ], { type: 'text/javascript' })
170 script.src = URL.createObjectURL(blob)
171
172 document.head.appendChild(script)
173 })
174}
175
223b24e6
RK
176function isInViewport (el: HTMLElement) {
177 const bounding = el.getBoundingClientRect()
178 return (
179 bounding.top >= 0 &&
180 bounding.left >= 0 &&
181 bounding.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
182 bounding.right <= (window.innerWidth || document.documentElement.clientWidth)
183 )
184}
185
186function isXPercentInViewport (el: HTMLElement, percentVisible: number) {
187 const rect = el.getBoundingClientRect()
188 const windowHeight = (window.innerHeight || document.documentElement.clientHeight)
189
190 return !(
191 Math.floor(100 - (((rect.top >= 0 ? 0 : rect.top) / +-(rect.height / 1)) * 100)) < percentVisible ||
192 Math.floor(100 - ((rect.bottom - windowHeight) / rect.height) * 100) < percentVisible
193 )
194}
195
f3aaa9a9 196export {
c511c3f0 197 ElementEvent,
ad774752 198 sortBy,
11b8762f 199 durationToString,
1506307f 200 lineFeedToHtml,
cd4d7a2c 201 objectToUrlEncoded,
15a7387d 202 getParameterByName,
c5911fd3 203 populateAsyncUserVideoChannels,
61bbc727
C
204 getAbsoluteAPIUrl,
205 dateToHuman,
6de36768 206 immutableAssign,
5de8a55a 207 objectToFormData,
1506307f 208 objectLineFeedToHtml,
7373507f 209 removeElementFromArray,
0c503f5c 210 importModule,
223b24e6
RK
211 scrollToTop,
212 isInViewport,
213 isXPercentInViewport
f3aaa9a9 214}