Skip to content
This repository has been archived by the owner on Jul 30, 2021. It is now read-only.

a simple react hooks implement for async cache store

License

Notifications You must be signed in to change notification settings

JiangWeixian/use-async-cache

Repository files navigation

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 use-async-cache --save

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