✨ Add allResults parameter to searchTracks method
This commit is contained in:
parent
331be05f26
commit
7301cbe76d
1 changed files with 3 additions and 2 deletions
|
@ -136,6 +136,7 @@ class Player {
|
||||||
/**
|
/**
|
||||||
* Resolve an array of tracks objects from a query string
|
* Resolve an array of tracks objects from a query string
|
||||||
* @param {string} query The query
|
* @param {string} query The query
|
||||||
|
* @param {boolean} allResults Whether all the results should be returned, or only the first one
|
||||||
* @returns {Promise<Track[]>}
|
* @returns {Promise<Track[]>}
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
|
@ -164,7 +165,7 @@ class Player {
|
||||||
*
|
*
|
||||||
* });
|
* });
|
||||||
*/
|
*/
|
||||||
searchTracks (query) {
|
searchTracks (query, allResults = false) {
|
||||||
return new Promise(async (resolve, reject) => {
|
return new Promise(async (resolve, reject) => {
|
||||||
if (ytpl.validateURL(query)) {
|
if (ytpl.validateURL(query)) {
|
||||||
const playlistID = await ytpl.getPlaylistID(query).catch(() => {})
|
const playlistID = await ytpl.getPlaylistID(query).catch(() => {})
|
||||||
|
@ -195,7 +196,7 @@ class Player {
|
||||||
if (results.items.length < 1) return resolve([])
|
if (results.items.length < 1) return resolve([])
|
||||||
if (err) return resolve([])
|
if (err) return resolve([])
|
||||||
const resultsVideo = results.items.filter((i) => i.type === 'video')
|
const resultsVideo = results.items.filter((i) => i.type === 'video')
|
||||||
resolve([new Track(resultsVideo[0], null, null)])
|
resolve(allResults ? resultsVideo.map((r) => new Track(r, null, null)) : [new Track(resultsVideo[0], null, null)])
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue