npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rn-object-store

v0.0.5

Published

A lightweight wrapper around React Native's AsyncStorage, which makes working with objects in AsyncStorage a breeze.

Downloads

3

Readme

rn-object-store

A lightweight wrapper around React Native's AsyncStorage, which makes working with objects in AsyncStorage a breeze. Particularly handy when you want to get or set a value in a nested object that is saved locally.

Installation

npm install --save rn-object-store

API Reference

The api surface for rn-object-store is really small. There are only three methods available: get, set, remove.

Save a key and associated value.

.set([String path], [value])

Get a value for the given path.

.get([String path])

Delete the value associated with a given path and remove the key.

.remove([String path])

Note path is string that represents the path to the value you want to interact on. For example, say you've got an object with the key movies in AsyncStorage, that has a nested object with the key shawshank_redemption, with a property named released. To get that value, you simply would pass that to the get method like so:

store.get('movies/shawshank_redemption/released')
/*
can also separate by using the dot operator: 'movies.shawshank_redemption.released'
if that feels more comfortable than using a forward slash
*/
.then((value) => console.log(value))
// would log out --> 1994

Usage

// using ES6 modules to import rn-object-store

import React from 'react-native';
import store from 'rn-object-store';

class Movie extends React.Component {
	...

	componentDidMount() {
		const key = this.props.route.id;

		store.get(`movies/${key}`).then((movie) => {
			this.setState({ movie });
		});

	componentWillUnmount() {
		// the movie obj has been edited and now needs to be updated
		const key   = this.props.route.id;
		const movie = this.state.movie;
		store.set(`movies/${key}`, movie).then((key) => {
			console.log('key updated is: ' + key);
		});
	}
}

In the example above, what if the movies object is undefined? We can only set an object if the base object, in this case movies is an object. There is two ways of handling this case, the first would be to catch the error in componentDidMount of the Movie component:

componentWillUnmount() {
	const key   = this.props.route.id;
	const movie = this.state.movie;
	store.set(`movies/${key}`, movie).then((key) => {
		console.log('key updated is: ' + key);
	})

	// if the value you are trying to set is undefined
	// the error value will be inside a catch

	.catch((err) => {
		store.set('movies', {})
		.then(() => store.set(`movies/${key}`, movie))
	});

	// however this approach requires us to call store.set() twice
}

A better approach would be to check if the movies object is defined when the root component's constructor is called.

class App extends React.Component {
	constructor() {
		super();

		store.get('movies')
		.catch(store.set('movies', {}))
	}
}

Todo

  • Let remove() accept an array of paths to delete
  • Add unit tests

License

MIT Licensed Copyright (c) Cameron Bourke 2016