1.0.1 • Published 7 years ago

babel-plugin-flow-onlyupdateforkeys v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

babel-plugin-flow-onlyupdateforkeys

A babel plugin to generate args of recompose.onlyUpdateForKeys from flow type. It is intended to be an alternative to recompose.onlyUpdateForPropTypes for flow type.

Example

In

// @flow
import React from 'react';
import { compose, onlyUpdateForKeys } from 'recompose';

export default compose(
  onlyUpdateForKeys(), // without args
)(function Foo(props: { foo: string, bar: number }) {
  const { foo, bar } = props;

  return (
    <div>{foo}-{bar}</div>
  );
});

Out

// @flow
import React from 'react';
import { compose, onlyUpdateForKeys } from 'recompose';

export default compose(
  onlyUpdateForKeys(['foo', 'bar']), // with args
)(function Foo(props: { foo: string, bar: number }) {
  const { foo, bar } = props;

  return (
    <div>{foo}-{bar}</div>
  );
});

Installation

$ npm install --save-dev babel-plugin-flow-onlyupdateforkeys

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["flow-onlyupdateforkeys"]
}

Via CLI

$ babel --plugins flow-onlyupdateforkeys script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["flow-onlyupdateforkeys"]
});

Using with flow-runtime

Note that when using this plugin with flow-runtime, you must ensure that babel-plugin-flow-onlyupdateforkeys is included before babel-plugin-flow-runtime.

.babelrc

{
  "plugins": [
    "flow-onlyupdateforkeys",
    "flow-runtime"
  ]
}