feat: download all button in Favorites page, this solves #37
This commit is contained in:
@@ -1,11 +1,21 @@
|
||||
import { socket } from '@/utils/socket'
|
||||
|
||||
export function sendAddToQueue(url, bitrate = null) {
|
||||
if (!url) return
|
||||
if (!url) throw new Error('No URL given to sendAddToQueue function!')
|
||||
|
||||
socket.emit('addToQueue', { url, bitrate }, () => {})
|
||||
}
|
||||
|
||||
export function aggregateDownloadLinks(releases) {
|
||||
let links = []
|
||||
|
||||
releases.forEach(release => {
|
||||
links.push(release.link)
|
||||
})
|
||||
|
||||
return links.join(';')
|
||||
}
|
||||
|
||||
export default {
|
||||
sendAddToQueue
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user