Coder Social home page Coder Social logo

Comments (12)

jakearchibald avatar jakearchibald commented on August 17, 2024 5

Agreed! I'll make this a priority when it isn't behind a flag in the preview release of a browser.

from idb.

jakearchibald avatar jakearchibald commented on August 17, 2024 2

I've got a rough plan for this for 4.0.

import { openDb, iterateRecords } from 'idb';

// …

for await (const cursor of iterateRecords(storeOrIndex, optionalRange, optionalDirection)) {
  // Any of the cursor advancing methods can be called here.
  // If none are called, cursor.continue() will be called automatically.
}

from idb.

jakearchibald avatar jakearchibald commented on August 17, 2024

Scratch that, it should be:

import { openDb, iterateRecords } from 'idb';

// …

for await (const cursor of iterateRecords(storeOrIndex.openCursor())) {
  // Any of the cursor advancing methods can be called here.
  // If none are called, cursor.continue() will be called automatically.
}

Where iterateRecords takes a cursor or a promise for a cursor.

from idb.

mariusGundersen avatar mariusGundersen commented on August 17, 2024

Why is the iterateRecord method needed? I'm sure there is a reason, but it's not obvious

from idb.

jakearchibald avatar jakearchibald commented on August 17, 2024

I'm looking to make it an optional import, so you don't pay the cost of it if you don't use it.

from idb.

matthewp avatar matthewp commented on August 17, 2024

Is this at all blocked by the problem described here? I was looking to make my own iterator in my own project but didn't because I felt like that issue might prevent it from working...

from idb.

jakearchibald avatar jakearchibald commented on August 17, 2024

That problem is gone in modern browsers.

I'm looking to add async iteration as an optional part of the next version of the library. I just need to figure out the right API.

from idb.

jakearchibald avatar jakearchibald commented on August 17, 2024

I've started landing the code for this in the 4.0.0 branch https://github.com/jakearchibald/idb/blob/4.0.0/lib/async-iterators.ts.

Here's how it works:

// Iterate over a store
const store = db.transaction('store-name').store;

for await (const cursor of store) {
  console.log(cursor.key, cursor.value);
}

// Iterate over an index
const index = store.index('index-name');

for await (const cursor of index) {
  console.log(cursor.key, cursor.value);
}

// Iterate over a cursor
let cursor = await index.openCursor();
if (cursor) cursor = await cursor.advance(50);
if (cursor) for await (const cursor of cursor) {
  console.log(cursor.key, cursor.value);
}

// You can update/delete/skip entries:
for await (const cursor of store) {
  // Update the value.
  cursor.update(cursor.value + 1);
  // Skip over an item.
  cursor.advance(2);
}

from idb.

quasicomputational avatar quasicomputational commented on August 17, 2024

That looks pretty nifty. I do have one comment, though: when iterating over a cursor, often you're happy to execute the loop zero times if the cursor returns no results. But, as openCursor will return null when the provided query doesn't match, this necessitates that if (cursor) check. Maybe it'd be nice to have a different flavour (openCursorIterable?) that will always return an async iterator, finishing immediately in the no-values-found case, allowing this code:

for await (const cursor of index.openCursorIterable(query)) {
  doStuff(cursor.value);
}

from idb.

jakearchibald avatar jakearchibald commented on August 17, 2024

Yeah, that's a good idea

from idb.

jakearchibald avatar jakearchibald commented on August 17, 2024

Added .iterate to stores and indexes. Takes the same args are openCursor. 1337312#diff-c6b8a053edbb56620d53f014adc13bf1

from idb.

jakearchibald avatar jakearchibald commented on August 17, 2024

Added in v4

from idb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.