Fix exploration for multiple videos
This commit is contained in:
parent
bd2300303b
commit
bf2730f991
|
@ -28,21 +28,22 @@ export const exploreVideos = async (videoId, onUpdate) =>
|
|||
while (queue.length > 0)
|
||||
{
|
||||
const currentId = queue.shift();
|
||||
const config = await api.getPlayerConfig(currentId);
|
||||
const meta = api.getVideoMeta(config);
|
||||
|
||||
videosNodes[currentId] = meta;
|
||||
nextVideos[currentId] = new Set();
|
||||
|
||||
// Add links between this video and the linked ones
|
||||
api.getEndScreenVideos(config)
|
||||
.forEach(nextId => nextVideos[meta.videoId].add(nextId));
|
||||
api.getCardVideos(config)
|
||||
.forEach(nextId => nextVideos[meta.videoId].add(nextId));
|
||||
|
||||
for (let nextId of nextVideos[meta.videoId])
|
||||
if (!(currentId in videosNodes))
|
||||
{
|
||||
if (!(nextId in videosNodes))
|
||||
const config = await api.getPlayerConfig(currentId);
|
||||
const meta = api.getVideoMeta(config);
|
||||
|
||||
videosNodes[currentId] = meta;
|
||||
nextVideos[currentId] = new Set();
|
||||
|
||||
// Add links between this video and the linked ones
|
||||
api.getEndScreenVideos(config)
|
||||
.forEach(nextId => nextVideos[meta.videoId].add(nextId));
|
||||
api.getCardVideos(config)
|
||||
.forEach(nextId => nextVideos[meta.videoId].add(nextId));
|
||||
|
||||
for (let nextId of nextVideos[meta.videoId])
|
||||
{
|
||||
queue.push(nextId);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue