babel-plugin-flow-onlyupdateforkeys
v1.0.1
Published
A babel plugin to generate args of recompose.onlyUpdateForKeys from flow type.
Maintainers
Readme
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-onlyupdateforkeysUsage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["flow-onlyupdateforkeys"]
}Via CLI
$ babel --plugins flow-onlyupdateforkeys script.jsVia 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"
]
}