Socket
Book a DemoInstallSign in
Socket

ampersand-react-mixin

Package Overview
Dependencies
Maintainers
7
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ampersand-react-mixin

Mixin for react classes to easily listen for changes and re-render from ampersand models/collections

latest
Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
24
200%
Maintainers
7
Weekly downloads
 
Created
Source

ampersand-react-mixin

Mixin for react classes to easily listen for changes and re-render from ampersand models/collections.

How it works

This auto-listens to any ampersand model or collection that is passed to it as a prop. And re-renders the component on changes. It also unregisters the listener when the component is unmounted.

You can also optionally create a method in your component called: getObservedItems.

This will get called to determine which things should be watched.

Or you can explicitly call watch on the component and pass an ampersand model, state, or collection object.

If it's a collection, it listens to 'add remove reset sort' events. If it's a State object, it listens to 'change' events.

install

npm install ampersand-react-mixin

example

var React = require('react');
var ampersandMixin = require('ampersand-react-mixin');

module.exports = React.createClass({
    mixins: [ampersandMixin],
    render: function () {
        return (
            <div></div>
        )
    }
})

license

MIT

Keywords

ampersand

FAQs

Package last updated on 13 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts