New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-indexed-db

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-indexed-db

React wrapper to IndexedDB database.

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
852
increased by8.95%
Maintainers
1
Weekly downloads
 
Created
Source

react-indexed-db

react-indexed-db is a service that wraps IndexedDB database in an "easier to use" service. It exposes very simple promises API to enable the usage of IndexedDB without most of it plumbing.

Installation

```
npm install react-indexed-db
```

Usage

Import the the ReactIndexedDB class as a dependency:

import { ReactIndexedDB } from 'react-indexed-db';

ReactIndexedDB service

First instantiate the service as follows:

let db = new ReactIndexedDB('myDb', 1);

The first argument is the name of your database and the second is the database version. If you forget the version you the service will default to version 1.

Use the APIs that the ReactIndexedDB service exposes to use indexeddb. In the API the following functions:

  • openDatabase(version, createCallback): opens the database for usage and update it's objectStore/s. The first parameter is the version to upgrade the database and the second one is an optional callback that will handle the creation of objectStores for that version if needed. openDatabase returns a promise that is resolved when the database is open or updated or rejected if an error occurred.

Usage example:

db.openDatabase(1, evt => {
	let objectStore = evt.currentTarget.result.createObjectStore('people', { keyPath: 'id', autoIncrement: true });

	objectStore.createIndex('name', 'name', { unique: false });
	objectStore.createIndex('email', 'email', { unique: true });
});
  • getByKey(storeName, key): returns the object that is stored in the objectStore by its key. The first parameter is the store name to query and the second one is the object's key. getByKey returns a promise that is resolved when we have the object or rejected if an error occurred.

Usage example:

db.getByKey('people', 1).then(
	person => {
		console.log(person);
	},
	error => {
		console.log(error);
	}
);
  • getAll(storeName, keyRange, indexDetails): returns an array of all the items in the given objectStore. The first parameter is the store name to query. The second parameter is an optional IDBKeyRange object. The third parameter is an index details which must include index name and an optional order parameter. getAll returns a promise that is resolved when we have the array of items or rejected if an error occurred.

Usage example:

db.getAll('people').then(
	people => {
		console.log(people);
	},
	error => {
		console.log(error);
	}
);
  • getByIndex(storeName, indexName, key): returns an stored item using an objectStore's index. The first parameter is the store name to query, the second parameter is the index and third parameter is the item to query. getByIndex returns a promise that is resolved when the item successfully returned or rejected if an error occurred.

Usage example:

db.getByIndex('people', 'name', 'Dave').then(
	person => {
		console.log(person);
	},
	error => {
		console.log(error);
	}
);
  • add(storeName, value, key): Adds to the given objectStore the key and value pair. The first parameter is the store name to modify, the second parameter is the value and the third parameter is the key (if not auto-generated). add returns a promise that is resolved when the value was added or rejected if an error occurred.

Usage example (add without a key):

db.add('people', { name: 'name', email: 'email' }).then(
	() => {
		// Do something after the value was added
	},
	error => {
		console.log(error);
	}
);

In the previous example I'm using undefined as the key because the key is configured in the objectStore as auto-generated.

  • update(storeName, value, key?): Updates the given value in the objectStore. The first parameter is the store name to modify, the second parameter is the value to update and the third parameter is the key (if there is no key don't provide it). update returns a promise that is resolved when the value was updated or rejected if an error occurred.

Usage example (update without a key):

db.update('people', { id: 3, name: 'name', email: 'email' }).then(
	() => {
		// Do something after update
	},
	error => {
		console.log(error);
	}
);
  • delete(storeName, key): deletes the object that correspond with the key from the objectStore. The first parameter is the store name to modify and the second parameter is the key to delete. delete returns a promise that is resolved when the value was deleted or rejected if an error occurred.

Usage example:

db.delete('people', 3).then(
	() => {
		// Do something after delete
	},
	error => {
		console.log(error);
	}
);
  • openCursor(storeName, cursorCallback, keyRange): opens an objectStore cursor to enable iterating on the objectStore. The first parameter is the store name, the second parameter is a callback function to run when the cursor succeeds to be opened and the third parameter is optional IDBKeyRange object. openCursor returns a promise that is resolved when the cursor finishes running or rejected if an error occurred.

Usage example:

db.openCursor('people', (evt) => {
    var cursor = (<any>evt.target).result;
    if(cursor) {
        console.log(cursor.value);
        cursor.continue();
    } else {
        console.log('Entries all displayed.');
    }
}, IDBKeyRange.bound("A", "F"));
  • clear(storeName): clears all the data in an objectStore. The first parameter is the store name to clear. clear returns a promise that is resolved when the objectStore was cleared or rejected if an error occurred.

Usage example:

db.clear('people').then(
	() => {
		// Do something after clear
	},
	error => {
		console.log(error);
	}
);

License

Released under the terms of the MIT License.

Keywords

FAQs

Package last updated on 29 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc