GithubHelp home page GithubHelp logo

mobx-preact's Introduction

mobx-preact

This is a fork of mobx-react for Preact

This package provides the bindings for MobX.

Exports the connect (or observer) decorator and some development utilities.

Installation

npm install mobx-preact --save

Dependencies

npm install mobx --save

API documentation

connect(stores)(componentClass)

Function (and decorator) that converts a component into a reactive component.

stores is an array of strings/names of stores you passed to Provider. These will be passed automatically to all components connected.

The more components you connect, the better Mobx can optimize rendering. So connect as many components as you want!

See the mobx documentation for more details.

import { h, Component } from 'preact';
import { Provider, connect } from 'mobx-preact';
import { observable } from 'mobx';

const timeStore = observable({
    text: 'Current time here...'
})

class App extends Component {
    render() {
        return (
        <Provider time={timeStore}>
            <TestComponent/>
        </Provider>
        );
    }
}

@connect(['store'])
class TestComponent extends Component {
    componentDidMount() {
        const {time} = this.props;
        
        setInterval(() => {
            time.text = Date.now();
        }, 1000);
    }

    render({ time }) {
        return <p>Unix timestamp: {time.text}</p>;
    }
}

export default App;
// If we don't need the stores but still want the component
// reactive, then we can omit the stores array

@connect
class TestComponent extends Component {
    //....
}

Alternatively if you prefer not to use decorators:

class TestComponent extends Component {
    //...
}

export default connect(['time'])(App);

You cannot use decorators on stateless components, so wrap them like this:

// With store injection
const TodoView = connect(['store'])(props => {
    return <p>Current time: {props.time.text}</p>
})

// Without injection but still reactive
const TodoView = connect(props => {
    return <p>Some prop we passed on: {props.something}</p>
})

It is possible to set a custom shouldComponentUpdate, but in general this should be avoided as MobX will by default provide a highly optimized shouldComponentUpdate implementation based on PureRenderMixin.

For Mobx documentation, see the mobx project.

mobx-preact's People

Contributors

hayeah avatar nightwolfz avatar

Watchers

 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.