how to use while loop in generator function

466 Views Asked by At

i'm new to generator function and trying execute while loop inside it.

export function* findRandomData(list, name) {
  let searchList = true;
  const formattedName = name
    .replace(new RegExp('_', 'g'), ' ')
    .toLowerCase();

  const indexesToSearch = [];
  for (let i = 0; i < list.length; i++) {
    indexesToSearch.push(i);
  }

  let viableId;
  // Search through results
  while (searchList) {
    // If there are no results left then finish
    if (indexesToSearch.length === 0) {
      searchList = false;
      throw new Error('Could not find id');
    }

    // Find a random number that has not been selected already, then remove
    const randomPosition = Math.floor(Math.random() * indexesToSearch.length);
    indexesToSearch.splice(randomPosition, 1);

    let title = list[randomPosition].title;
    viableId = list[randomPosition].id;

    const eligible = yield call(
      isEligibleVideo,
      title,
      formattedName,
      viableId
    );

    if (eligible) {
      searchList = false;
    }
  }

  return viableId;
}

but it return null even though the while loop have not completed for search.

const data = yield call(findRandomData, resp['res'], name);

Error Error: Could not find id at findRandomData

what is it that i'm doing wrong

1

There are 1 best solutions below

0
On

Try to give a value to viableId variable when you declare it, for example : let viableId = ""; // if your variable will receive a string value

Or give it a number value (generally people uses 0) if you're working with numbers.