Giter Site home page Giter Site logo

react-geval's Introduction

react geval

An event interface for react.

install

$ npm install react-geval

example

var test = require('tape')
var broadcast = require('../broadcast')
var subscribe = require('../subscribe')
var h = require('react').createElement
var ReactDom = require('react-dom')
var struct = require('observ-struct')

var root = document.createElement('div')
document.body.appendChild(root)

test('emit events', function (t) {
    t.plan(2)

    // our element gets a prop `emit`
    function Elmt (props) {
        process.nextTick(function () {
            props.emit.foo('test')
            props.emit.bar('bar test')
        })
        return h('div', {}, [])
    }

    // define events here
    var broadcaster = broadcast(Elmt, ['foo', 'bar'])

    // listen to events here
    broadcaster.on.foo(function (ev) {
        t.equal(ev, 'test', 'should emit events')
    })
    broadcaster.on.bar(function (ev) {
        t.equal(ev, 'bar test', 'should emit events')
    })

    ReactDom.render(h(broadcaster.view), root)
})

test('listen to events', function (t) {
    t.plan(2)
    var i = 0
    var expected = ['test', 'test2']

    // state is passed to our component as props
    function SubElmt (props) {
        t.equal(props.test, expected[i++], 'should listen to events')
        return null
    }

    // listen to an observable
    var state = struct({ test: 'test' })
    var Subscriber = subscribe(SubElmt, state)

    ReactDom.render(h(Subscriber), root, function () {
        state.set({ test: 'test2' })
    })
})

test('event loop', function (t) {
    t.plan(2)
    var expected = ['', 'test']
    var i = 0

    function Elmt (props) {
        if (i > 1) return null
        process.nextTick(function () {
            props.emit.foo('test')
        })
        t.equal(props.test, expected[i++], 'should get state changes')
        return null
    }

    var state = struct({ test: '' })
    var emitter = broadcast(Elmt, ['foo'])
    var View = subscribe(emitter.view, state)

    // this decouples the view from the state logic
    emitter.on.foo(function (ev) {
        state.set({ test: ev })
    })

    ReactDom.render(h(View), root)
})

react-geval's People

Contributors

nichoth avatar

Watchers

 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.