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

react-native-data-storage-hooks

v1.0.2

Published

A simple react native async storage hooks library based on the @react-native-async-storage/async-storage library

Downloads

7

Readme

React-native-data-storage-hooks

License: MIT npm

React-native-data-storage-hooks is a library based on AsyncStorage designed for React Native with Type Script.

It provides hooks which enable setting single and multiple data of any type convertable to JSON to the async storage.

It also provides a method to get all the data from async storage at once, which can be used when your app starts.

Getting started

Before the installation make sure that you have the @react-native-async-storage/async-storage library installed in your project.

  npm install react-native-data-storage-hooks --save
  cd ios
  pod install

Usage

useSetSingleValue

useSetSingleValue hook decleres the key name for the single value that needs to be set to Async Storage and provides a method to set it. It takes two arguments, the first one is a key that will be set to Async Storage and the second one is a value. Value won't be saved to Async Storage until the setValue method is used.

import { useSetSingleValue } from 'react-native-data-storage-hooks'

function App() {
  const [email, setEmail] = useSetSingleValue('email', '');

  useEffect(() => {
    setEmail('[email protected]');
  }, []);

  useEffect(() => {
    console.log(email); // '[email protected]'
  }, [email]);

useSetMultipleValues

useSetMultipleValues hook can set many values at once to the Async Storage. As an argument pass an array of arrays, where the first element is a key (type string is required) and the second element is a value that should be set with this key.

import { useSetMultipleValues } from 'react-native-data-storage-hooks'

function App() {
  const [values, setValues] = useSetMultipleValues([]);

  useEffect(() => {
    setMultipleValues([['name', 'Adam'], ['age', 44]]);
  }, []);

  useEffect(() => {
    console.log(multipleValues);
  }, [multipleValues]);

useGetFromStorage

useGetFromStorage hook returns a value of a single element set to Async Storage. As an argument pass the key of the element in Async Storage.

import { useGetFromStorage } from 'react-native-data-storage-hooks'

function App() {
  const value = useGetFromStorage('name');

  useEffect(() => {
    console.log(value);
  }, [value]);

useGetWholeStorage

useGetWholeStorage hook returns all values in the Async Storage and the method to refresh the Async Storage values if needed.

import { useGetWholeStorage } from 'react-native-data-storage-hooks'

function App() {
  const [storageValues, refresh] = useGetWholeStorage();

  useEffect(() => {
    console.log(storageValues);
  }, [storageValues]);

useDeleteFromStorage

useDeleteFromStorage hook returns two methods:

  • deleteItem - it takes the key as an argument and removes that value from Async Storage,
  • clearAll - cleares the whole storage,
import { useDeleteFromStorage } from 'react-native-data-storage-hooks'

function App() {
  const { deleteItem, clearAll } = useDeleteFromStorage();

  //deleteItem test:
  useEffect(() => {
    deleteItem('name');
  }, []);
  
  useEffect(() => {
    console.log('All', storageValues);
  }, [storageValues]); 

  // clearAll test:
  useEffect(() => {
    clearAll();
  }, []);

  useEffect(() => {
    console.log('All', storageValues);
  }, [storageValues]);

Before installation

React-native-data-storage-hooks is designed for React Native CLI with Type Script. Please make sure that your MetroJS bundler compiles .ts and .tsx files. To check that go to your metro.config.js file in root project folder and add the required source extensions to the resolver:

module.exports = {
  transformer: {
    getTransformOptions: async () => ({
      transform: {
        experimentalImportSupport: false,
        inlineRequires: false,
      },
    }),
  },
  resolver: {
    sourceExts: ['jsx', 'js', 'ts', 'tsx'], //add here
  },
};

Keywords

react-native, async-storage