Giter VIP home page Giter VIP logo

Comments (8)

dumbmatter avatar dumbmatter commented on June 9, 2024

Do you have an example of a key it breaks on? Better yet, a failing test. Better yet, a PR :)

from fakeindexeddb.

e45lee avatar e45lee commented on June 9, 2024

Here's a example for which a DataError gets thrown but shouldn't:

var fakeIndexedDB = require('fake-indexeddb');
var FDBKeyRange = require('fake-indexeddb/lib/FDBKeyRange');

var request = fakeIndexedDB.open('test', 3);
request.onupgradeneeded = function () {
    var db = request.result;
    var store = db.createObjectStore("books", {keyPath: ["author","isbn"]});
    store.createIndex("by_title", "title", {unique: true});

    store.put({title: "Quarry Memories", author: "Fred", isbn: 123456});
    store.put({title: "Water Buffaloes", author: "Fred", isbn: 234567});
    store.put({title: "Bedrock Nights", author: "Barney", isbn: 345678});
};
request.onsuccess = function (event) {
    var db = event.target.result;

    var tx = db.transaction("books", "readwrite");
    tx.objectStore("books").openCursor(["Fred", 123456]).onsuccess = function (event) {
      var cursor = event.target.result;
      console.log("From cursor:", cursor.value);
      var clonedValue = JSON.parse(JSON.stringify(cursor.value));
      clonedValue.price = 5.99;
      cursor.update(clonedValue);
    };

    tx.oncomplete = function () {
        console.log('All done!');
    };
};

I can put together a pull request that'll fix this, but I'm busy for the better part of this week, so it won't be until later.

from fakeindexeddb.

dumbmatter avatar dumbmatter commented on June 9, 2024

Thanks, you're right, that does behave differently in the browser and fakeIndexedDB. I'm also busy at the moment, but eventually one of us will fix it :)

Also, in case you don't already know... the JSON.parse and JSON.stringify calls there are not necessary. Values out of IDB are already cloned, you can freely mutate them without worrying about side effects.

from fakeindexeddb.

e45lee avatar e45lee commented on June 9, 2024

No problem. Yeah, I didn't know if they were/weren't necessary as we usually don't use the IndexedDB API directly, but I thought I'd play it safe (I didn't have too much time to mess around with it this morning, as I have a talk to give tomorrow...).

Thanks!

from fakeindexeddb.

mstange avatar mstange commented on June 9, 2024

I think I'm hitting this issue as well. I'm looking up an element in an index (which has a compound keyPath) using index.openCursor(['field one', 'field two']) and not getting any results.

Are you planning to backport the patch to v1.0?

from fakeindexeddb.

dumbmatter avatar dumbmatter commented on June 9, 2024

Wasn't planning to, but since you asked I'll give it a shot :)

from fakeindexeddb.

dumbmatter avatar dumbmatter commented on June 9, 2024

Okay, this is fixed in v1.0.12!

from fakeindexeddb.

mstange avatar mstange commented on June 9, 2024

Thank you very much!

It turns out that I wasn't actually hitting this problem, I had a different bug in my own code... but everything's working now, so that's good :)

from fakeindexeddb.

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.