deemix-webui/public/js/modules/utils.js

47 lines
1.1 KiB
JavaScript
Raw Normal View History

2020-04-19 22:02:06 +02:00
export function isValidURL(text) {
if (text.toLowerCase().startsWith('http')) {
if (text.toLowerCase().indexOf('deezer.com') >= 0 || text.toLowerCase().indexOf('open.spotify.com') >= 0)
return true
} else if (text.toLowerCase().startsWith('spotify:')) return true
return false
}
2020-04-14 16:48:13 +02:00
2020-04-19 22:02:06 +02:00
export function convertDuration(duration) {
2020-04-09 12:24:49 +02:00
//convert from seconds only to mm:ss format
let mm, ss
2020-04-09 12:24:49 +02:00
mm = Math.floor(duration / 60)
ss = duration - mm * 60
2020-04-09 12:24:49 +02:00
//add leading zero if ss < 0
if (ss < 10) {
ss = '0' + ss
2020-04-09 12:24:49 +02:00
}
return mm + ':' + ss
2020-04-09 12:24:49 +02:00
}
2020-04-19 22:02:06 +02:00
export function convertDurationSeparated(duration) {
let hh, mm, ss
2020-04-09 12:24:49 +02:00
mm = Math.floor(duration / 60)
hh = Math.floor(mm / 60)
ss = duration - mm * 60
mm -= hh * 60
2020-04-09 12:24:49 +02:00
return [hh, mm, ss]
}
2020-04-23 21:03:12 +02:00
// On scroll event, returns currentTarget = null
// Probably on other events too
2020-04-19 22:02:06 +02:00
export function debounce(func, wait, immediate) {
var timeout
return function () {
var context = this
var args = arguments
var later = function () {
timeout = null
if (!immediate) func.apply(context, args)
}
var callNow = immediate && !timeout
clearTimeout(timeout)
timeout = setTimeout(later, wait)
if (callNow) func.apply(context, args)
}
2020-04-09 12:24:49 +02:00
}