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-memo

v0.3.1

Published

Higher order component to memoize derived data

Downloads

144

Readme

React Memo

npm Build Status

Heavily inspired by Reselect.

React Memo is a Higher Order Component wraps the your data derivation logic.

The main objective of this library was(is) to provide memoization logic for Material-UI's inline-styles. But it can also be used for any other class of calculations too.

To use this package you would need to be fairly familiar with React itself.

TL;DR

This is a simply a caching and cache invalidation library that works very well with react.

  1. Take data from prop and contex.
  2. Run value selectors and get needed values.
  3. Run resolver with the values if they are modified from the previous invocation. (resolver must be very cpu/memory intensive for this to have positive effect)
  4. Pass the results down as property.
  5. With each call to componentWillReceiveProps go to 1.

Installation

You can install this package with the following command:

npm install react-memo

Examples

These examples demonstrate how you can use this library:

Simple Usage

You can pass createWrapper a single property selector.

import React from 'react';
import {createSelector, createWrapper} from 'react-memo';

const TotalViewer = ({total}) => <span>{total}</span>;

// The first argument is the alias.
// The second is the array of value selectors.
// These must be pure and very fast.
// Re-evaluation is decided from changes to the returned
// value from these value selectors via ===.
// The last argument is the function that calculates the value
// of the property passed down. Which is called with the
// values returned from selectors in the same order.
// This is where the heavy calculations go.
const selector: any = createSelector('total', [
  (props) => props.pocket,
  (props) => props.bank,
], (pocket, bank) => /* Intense monetary calcuations */ pocket + bank);

const TotalViewerWrapper = createWrapper(selector)(TotalViewer);

const TotalMoneyIHave = (props) => <TotalViewerWrapper pocket={props.pocket} bank={0} />;

Complex Usage

You can pass createWrapper an array of property selectors and validators as options.

import React from 'react';
import {createSelector, createWrapper} from 'react-memo';

const TotalViewer = ({total, currencySymbol}) =>
  <span>{total}{currencySymbol}</span>;

const totlaSelector: any = createSelector('total', [
  (props) => props.pocket,
  (props) => props.bank,
], (pocket, bank, currency) => pocket + bank);

// Value selectors are also passed context.
// However inorder to use context you must provide the contextTypes.
const currencySymbolSelector: any = createSelector('currencySymbol', [
  (props, context) => context.currency,
], (currency) => currency ? currency : '$');

const contextTypes = { currency: React.PropTypes.string };

const TotalViewerWrapper = createWrapper([
  totlaSelector,
  currencySymbolSelector,
], {contextTypes})(TotalViewer);

const TotalMoneyIHave = (props) => <TotalViewerWrapper pocket={props.pocket} bank={0} />;

API Reference

This section describes the functions in detail.

createSelector

// Returns a property selector you can pass down to createWrapper
function createSelector(
  alias: string,
  selectors: Array<(props, context) => any>,
  resolver: (...values: any[]) => any
): Selector;

// Provide single selector
function createSelector(
  alias: string,
  selectors: (props, context) => any,
  resolver: (value: any) => any
): Selector;

// Provide no selectors, resolver will be called only once
// during the lifetime of the component.
function createSelector(alias: string, resolver: () => any): Selector;
  • alias: The name of the prop that is to be passed down.
  • selectors: The value selector or an array of value selectors that are used to select the arguments for the resolver. These are also used to judge whether resolver should be called.
  • resolver: The place where the heavy calculations are done.

createWrapper

createWrapper(selectors: Selector, options?: Options): Wrapper;
createWrapper(selectors: Selector[], options?: Options): Wrapper;

// Options: {propTypes, contextTypes};

// Wrapper: (Component) => WrappedComponent;
  • selectors: A single property selector or an array of them.
  • options: The object that may contain propTypes or contextTypes to use in property validation. Please note that in order to use context in value selectors you must provide the contextTypes or React won't pass down the required context.

Typings

The typescript type definitions are also available and are installed via npm.

License

This project is licensed under the MIT license.