Git Product home page Git Product logo

mobx-observer.macro's Introduction

Babel Macro

mobx-observer.macro

This is a Babel macro that requires the babel-plugin-macros to run inside your build pipeline. For more information on how to set up Babel macros, visit its homepage: https://github.com/kentcdodds/babel-plugin-macros

A Babel macro to banish HOCs. This macro will transform the observer HOC for MobX into a "custom hook", allowing you to benefit from having an observer component without using an HOC or a decorator. This currently only supports function components.

See this Codesandbox for the macro in action: https://codesandbox.io/s/mobx-observermacro-4b8zg

Usage

Say your file looks like this:

import React from "react";
import Store from "./store";
import { observer } from "mobx-react-lite";

export const MyObserver = observer((props) => {
  return <div>{store.message}</div>;
});

You can now write it like this:

import React from "react";
import Store from "./store";
import useObserver from "mobx-observer.macro";

export function MyObserver(props) {
  useObserver();
  return <div>{store.message}</div>;
}

And it will turn the source code into what it looks like in the first example!

mobx-observer.macro's People

Contributors

ferdaber avatar

Stargazers

 avatar  avatar

Watchers

 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.