Giter Club home page Giter Club logo

babel-plugin-flow-onlyupdateforkeys's Introduction

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

babel-plugin-flow-onlyupdateforkeys's People

Contributors

koichik avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.