npm.io
0.0.1 • Published 6 years ago

use-async-cache

Licence
Version
0.0.1
Deps
0
Size
208 kB
Vulns
0
Weekly
0

use-async-cache

Version License: MIT Twitter: jiangweixian

a simple react hooks implement for async cache store;

a list of [element1, ..., elementn] use async-date from same api[element1, ..., elementn] will share same async-cache,api will request once。

see more props

Install

npm install

Usage

api will only request once

import React from 'react';
import { useAsyncCache } from 'use-async-cache';

import { cache } from '@/api/cache';

export const Element = () => {
  const { cached } = useAsyncCache({
    id: '1',
    api: cache.fetch,
  });
  return <span>{cached && cached.data}</span>;
};
import React from 'react';

import { Element } from './components/Element';

export default () => {
  return Array(10)
    .fill(0)
    .map(() => <Element />);
};

api.cache.fetch will only request once for 10 element

Author

JW

Show your support

Give a ️ if this project helped you!


This README was generated with by readme-md-generator