1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
|
import { api as api_type } from '../types'
// import { format, formatDistance } from 'date-fns'
import format from 'date-fns/format'
import formatDistance from 'date-fns/formatDistance'
export const formatDateTime = dateStr => format(new Date(dateStr), 'd MMM yyyy H:mm')
export const formatDate = dateStr => format(new Date(dateStr), 'd MMM yyyy')
export const formatTime = dateStr => format(new Date(dateStr), 'H:mm')
export const formatAge = dateStr => formatDistance(new Date(), new Date(dateStr)) + ' ago.'
/* Mobile check */
export const isiPhone = !!((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
export const isiPad = !!(navigator.userAgent.match(/iPad/i))
export const isAndroid = !!(navigator.userAgent.match(/Android/i))
export const isMobile = isiPhone || isiPad || isAndroid
export const isDesktop = !isMobile
const htmlClassList = document.body.parentNode.classList
htmlClassList.add(isDesktop ? 'desktop' : 'mobile')
/* Default image dimensions */
export const widths = {
th: 160,
sm: 320,
md: 640,
lg: 1280,
}
/* Formatting functions */
const acronyms = 'id url cc sa fp md5 sha256'.split(' ').map(s => '_' + s)
const acronymsUpperCase = acronyms.map(s => s.toUpperCase())
export const formatName = s => {
acronyms.forEach((acronym, i) => s = s.replace(acronym, acronymsUpperCase[i]))
return s.replace(/_/g, ' ')
}
// Use to pad frame numbers with zeroes
export const pad = (n, m) => {
let s = String(n || 0)
while (s.length < m) {
s = '0' + s
}
return s
}
export const courtesyS = (n, s) => n + ' ' + (n === 1 ? s : s + 's')
export const capitalize = s => s.split(' ').map(capitalizeWord).join(' ')
export const capitalizeWord = s => s.substr(0, 1).toUpperCase() + s.substr(1)
export const padSeconds = n => n < 10 ? '0' + n : n
export const timestamp = (n = 0, fps = 1, ms = false) => {
if (n < 0) return ''
let s = ''
n /= fps
if (ms) {
const mantissa = Math.round((n % 1) * 10)
s = '.' + mantissa
}
n = Math.round(n)
s = padSeconds(n % 60) + s
n = Math.floor(n / 60)
if (n > 60) {
return Math.floor(n / 60) + ':' + padSeconds(n % 60) + ':' + s
}
return (n % 60) + ':' + s
}
export const percent = n => (n * 100).toFixed(1) + '%'
export const px = (n, w) => Math.round(n * w) + 'px'
export const clamp = (n, a=0, b=1) => n < a ? a : n < b ? n : b
export const dist = (x1, y1, x2, y2) => Math.sqrt(Math.pow(x1 - x2, 2) + Math.pow(y1 - y2, 2))
export const mod = (n, m) => n - (m * Math.floor(n / m))
export const angle = (x1, y1, x2, y2) => Math.atan2(y2 - y1, x2 - x1)
/* URLs */
export const sha256_tree = (sha256, branch_size=2, tree_depth=2) => {
const tree_size = tree_depth * branch_size
let tree = ""
for (var i = 0; i < tree_size; i += branch_size) {
tree += '/' + sha256.substr(i, branch_size)
}
return tree
}
export const imageUrl = (sha256, frame, size = 'th') => [
'https://' + process.env.S3_HOST + '/v1/media/keyframes',
sha256_tree(sha256),
pad(frame, 6),
size,
'index.jpg'
].filter(s => !!s).join('/')
export const uploadUri = ({ sha256, ext }) => '/static/data/uploads' + sha256_tree(sha256) + '/' + sha256 + ext
export const metadataUri = (sha256, tag) => '/metadata/' + sha256 + '/' + tag + '/'
export const keyframeUri = (sha256, frame) => '/metadata/' + sha256 + '/keyframe/' + pad(frame, 6) + '/'
export const preloadImage = url => (
new Promise((resolve, reject) => {
const image = new Image()
let loaded = false
image.onload = () => {
if (loaded) return
loaded = true
image.onload = null
image.onerror = null
resolve(image)
}
image.onerror = () => {
if (loaded) return
image.onload = null
image.onerror = null
resolve(image)
}
// console.log(img.src)
// image.crossOrigin = 'anonymous'
image.src = url
if (image.complete) {
image.onload()
}
})
)
export const cropImage = (url, crop) => {
return new Promise((resolve, reject) => {
let { x, y, w, h } = crop
const image = new Image()
let loaded = false
x = parseFloat(x)
y = parseFloat(y)
w = parseFloat(w)
h = parseFloat(h)
image.onload = () => {
if (loaded) return
loaded = true
image.onload = null
const canvas = document.createElement('canvas')
const ctx = canvas.getContext('2d')
const width = image.naturalWidth
const height = image.naturalHeight
canvas.width = w * width
canvas.height = h * height
ctx.drawImage(
image,
Math.round(x * width),
Math.round(y * height),
Math.round(w * width),
Math.round(h * height),
0, 0, canvas.width, canvas.height
)
resolve(canvas)
}
image.onerror = () => {
console.log('image error')
reject()
}
// console.log(img.src)
image.crossOrigin = 'anonymous'
image.src = url
if (image.complete) {
image.onload()
}
})
}
export const urlSearchParamsToDict = search => {
const params = new URLSearchParams(search)
const dict = {}
params.forEach((value, key) => { // ???
dict[key] = value
})
return dict
}
/* AJAX */
let cachedAuth = null
let token = ''
let username = ''
export const post = (dispatch, type=api_type, tag, url, data) => {
let headers
if (data instanceof FormData) {
headers = {
Accept: 'application/json',
}
} else if (data) {
headers = {
Accept: 'application/json',
'Content-Type': 'application/json; charset=utf-8',
}
data = JSON.stringify(data)
}
dispatch({
type: type.loading,
tag,
})
return fetch(url, {
method: 'POST',
body: data,
headers,
})
.then(res => res.json())
.then(res => dispatch({
type: type.loaded,
tag,
data: res,
}))
.catch(err => dispatch({
type: type.error,
tag,
err,
}))
}
export const api = (dispatch, type=api_type, tag, url, data) => {
dispatch({
type: type.loading,
tag,
})
if (url.indexOf('http') !== 0) {
url = window.location.origin + url
}
url = new URL(url)
if (data) {
url.search = new URLSearchParams(data).toString()
}
let req = fetch(url, {
method: 'GET',
// mode: 'cors',
})
// console.log(tag)
if (tag === 'text') {
req = req.then(res => res.text())
} else {
req = req.then(res => res.json())
}
req = req.then(res => dispatch({
type: type.loaded,
tag,
data: res,
}))
.catch(err => dispatch({
type: type.error,
tag,
err,
}))
return req
}
/* sorting */
export const numericSort = {
asc: (a,b) => a[0] - b[0],
desc: (a,b) => b[0] - a[0],
}
export const stringSort = {
asc: (a,b) => a[0].localeCompare(b[0]),
desc: (a,b) => b[0].localeCompare(a[0]),
}
export const orderByFn = (s='name asc') => {
const [field='name', direction='asc'] = s.split(' ')
let mapFn, sortFn
switch (field) {
case 'id':
mapFn = a => [parseInt(a.id) || 0, a]
sortFn = numericSort[direction]
break
case 'epoch':
mapFn = a => [parseInt(a.epoch || a.epochs) || 0, a]
sortFn = numericSort[direction]
break
case 'size':
mapFn = a => [parseInt(a.size) || 0, a]
sortFn = numericSort[direction]
break
case 'start_ts':
mapFn = a => [parseFloat(a.start_ts) || 0, a]
sortFn = numericSort[direction]
break
case 'date':
mapFn = a => [+new Date(a.date || a.created_at), a]
sortFn = numericSort[direction]
break
case 'updated_at':
mapFn = a => [+new Date(a.updated_at), a]
sortFn = numericSort[direction]
break
case 'priority':
mapFn = a => [parseInt(a.priority) || parseInt(a.id) || 1000, a]
sortFn = numericSort[direction]
case 'name':
default:
mapFn = a => [a.name || "", a]
sortFn = stringSort[direction]
break
}
return { mapFn, sortFn }
}
export const getOrderedIds = (objects, sort, prepend=[]) => {
const { mapFn, sortFn } = orderByFn(sort)
return prepend.concat(objects.map(mapFn).sort(sortFn).map(a => a[1].id))
}
export const getOrderedIdsFromLookup = (lookup, sort) => {
return getOrderedIds(Object.keys(lookup).map(key => lookup[key]), sort)
}
/* parallel promises */
export const allProgress = (promises, progress_cb) => {
let d = 0
progress_cb(0, 0, promises.length)
promises.forEach((p) => {
p.then((s) => {
d += 1
progress_cb(Math.floor((d * 100) / promises.length), d, promises.length)
return s
})
})
return Promise.all(promises)
}
/* Clipboard */
export function writeToClipboard(str) {
return new Promise((resolve, reject) => {
let success = false
function listener(e) {
e.clipboardData.setData("text/plain", str)
e.preventDefault()
success = true
}
document.addEventListener("copy", listener)
document.execCommand("copy")
document.removeEventListener("copy", listener)
if (success) {
resolve()
} else {
reject()
}
})
}
|