@muds/react
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

@muds/react

NPM @muds/react License: MIT

Overview

@muds/react is the React integrataion utils for muds, the modular microframework for interactive data-oriented systems. It provides useful utils for integrating your React components with muds libraries.

Usage

npm install --save @muds/react @muds/event

Use useEventReducer(event, reducer, initialState) hook to act on events within a React component. It is comparable to useReducer hook, but for muds events.

import React from 'react';
import { Event } from '@muds/event';
import { useEventReducer } from '@muds/react';

function Counter({ event, initialCount = 0 }) {
  const count = useEventReducer(event, reducer, initialCount);
  return (<span>{count}<button onClick={() => event.emit('inc')}>+1</button></span>);
}

function reducer(count: number, action: Action): number {
  switch (action) {
    case 'inc': return count + 1;
    default: return count;
  }
}

const event = Event.create();
const vdom = <Counter event={event} initialCount={100} />;
event.emit('inc'); // increments the count outside of the component

License

This repository and the code inside it is licensed under the MIT License. Read LICENSE for more information.

Package Sidebar

Install

npm i @muds/react

Weekly Downloads

2

Version

0.1.1

License

MIT

Unpacked Size

7.1 kB

Total Files

14

Last publish

Collaborators

  • andykswong