Coder Social home page Coder Social logo

localforage-setitems's Introduction

localForage-setItems

npm
Adds setItems method to localForage.

Requirements

  • localForage v1.4.0+
    • for earlier versions of localforage, please use the v1.1.x releases

Installation

npm i localforage-setitems

Importing

TypeScript

Include localforage with an import statement appropriate for your configuration and import localforage-setitems right after it.

Normally, localforage-setitems will extend the prototype of locaforage to include the setItems() method, but unfortunately the typings can't be updated. As a result you should use the exported extendPrototype() method, which returns the provided localforage instance but with inherited typings that also include the setItems() method.

import localForage from 'localforage';
// OR based on your configuration:
// import * as localForage from 'localforage';

import { extendPrototype } from 'localforage-setitems';

extendPrototype(localforage);

// Keep using localForage as usual.

Known issues with module bundlers

In some ES6 module bundlers .setItems() might not automatically be made available to the localforage object on import. In this case, import the provided extendPrototype() method and extend localforage manually, as shown in the Typescript section.

jsperf links

API

You can pass an array with the key-value pairs:

var items = [
  { key: 'asdf', value: 'asdf value!' },
  { key: 'asap', value: 'asap value!' },
  { key: 'async', value: 'async value!' }
];
localforage.setItems(items);

Or you can pass a object with the keys as properties:

var items = {
  asdf: 'asdf value!',
  asap: 'asap value!',
  async: 'async value!'
};
localforage.setItems(items);

localforage-setitems's People

Contributors

duzun avatar thgreasi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

localforage-setitems's Issues

UnknownError

I'm using setItems like so:

store.setItems(itemsToStore, null, null, function (err) {
if (err) {
console.log('Error!!! function: lsSetItems {.....message: ', store, itemsToStore, err);
} else {
completedSuccess(true);
}
});

i'm passing in an object whos keys are uuids, i'm doing this for multiple tables/stores with out fail however on one store I get an error...

it returns an "object IDBTransaction"

IDBTransaction.error {
name "UnknownError"
mode "readwrite"
READ_ONLY "readonly"
READ_WRITE "readwrite"
VERSION_CHANGE "versionchange"

the data it a little bit large.. maybe 5 MB among 7 keys? Before I was setting each one, one at a time so I don't think I I'm ran out of space on localstorage any ideas on how to trouble shoot this further?

IE: 11.447
LocalForage: 1.3.0
SetItems: 1.3.1

Thanks,
Jeff

Can't get it to work

I'm using ES6 imports on a VueJs SFC SPA.
I tried the Typescript syntax but couldn't get it to work at all. It doesn't throw errors but the setItems method isn't added. (I get the same problem with getItems btw)

Error:

[Vue warn]: Error in mounted hook: "TypeError: src_boot_lf__WEBPACK_IMPORTED_MODULE_6__.lf.setItems is not a function"

Also I think the Typescript example has a case typo in it; should be localforage not localForage when importing.

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.