babel-plugin-flow-onlyupdateforkeys

1.0.1 • Public • Published

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"
  ]
}

Package Sidebar

Install

npm i babel-plugin-flow-onlyupdateforkeys

Weekly Downloads

3

Version

1.0.1

License

MIT

Last publish

Collaborators

  • koichik