Use `while` loop for IDB cursor iteration

Previously, I messily combined promises and callbacks because I thought we
were affected by the microtask issue:
https://github.com/gasi/idb#iteratecursor--iteratekeycursor

ESLint’s `more/no-then` encouraged me to revisit this and it works as expected.
pull/1/head
Daniel Gasienica 7 years ago
parent a76a6098c4
commit 5d927b73e6

@ -16,24 +16,24 @@ exports.run = async (transaction) => {
await db.transaction.complete;
};
exports._initializeMessageSchemaVersion = messagesStore =>
new Promise((resolve, reject) => {
messagesStore.openCursor().then(async function cursorIterate(cursor) {
const hasMoreResults = Boolean(cursor);
if (!hasMoreResults) {
return resolve();
}
const message = cursor.value;
console.log('Initialize schema version for message:', message.id);
const messageWithInitializedSchemaVersion = Message.initializeSchemaVersion(message);
try {
await messagesStore.put(messageWithInitializedSchemaVersion, message.id);
} catch (error) {
console.log('Failed to put message with initialized schema version:', message.id);
}
cursor.continue().then(cursorIterate);
}).catch(reject);
});
// NOTE: We disable `no-await-in-loop` because we want this migration to happen
// in sequence and not in parallel:
// https://eslint.org/docs/rules/no-await-in-loop#when-not-to-use-it
exports._initializeMessageSchemaVersion = async (messagesStore) => {
let cursor = await messagesStore.openCursor();
while (cursor) {
const message = cursor.value;
console.log('Initialize schema version for message:', message.id);
const messageWithSchemaVersion = Message.initializeSchemaVersion(message);
try {
// eslint-disable-next-line no-await-in-loop
await messagesStore.put(messageWithSchemaVersion, message.id);
} catch (error) {
console.log('Failed to put message with initialized schema version:', message.id);
}
// eslint-disable-next-line no-await-in-loop
cursor = await cursor.continue();
}
};

Loading…
Cancel
Save