Giter Site home page Giter Site logo

react-mvp's Introduction

react-mvp

Lightweight Model-View-Presenter framework for React.

Diagram that depicts the Model View Presenter (MVP) GUI design pattern.

Bootstrapped with create-react-app-minimal.

Getting started

Installing

npm install react-mvp

Usage

Declare your view, as a "dumb" component, with all input and output taking place through props (values and event handlers).

import React from 'react'

class TodoApp extends Component {
  render = () => {
    const { todoList, newItem, onAddNewItem, onChangeNewItem } = this.props

    return <div>
      <div>
        <label>Enter new item</label>
        <input type="text" onChange={onChangeNewItem} value={newItem} />
        <button onClick={onAddNewItem}>Add</button>
      </div>

      <ul>
        {todoList.map(item =>
          <li>{item}</li>
        )}
      </ul>
    </div>
  }
}

Then declare your model, with any needed defaults.

class TodoAppModel {
  todoList = []

  newItem = ''
}

Then declare your presenter, as a class that inherits from Presenter in react-mvp.

import { Presenter } from 'react-mvp'

class TodoAppPresenter extends Presenter {
  constructor(model, setModel) {
    super(model, setModel);
  }

  onChangeNewItem = event =>
    this.setModel({
      newItem: event.target.value
    })

  onAddNewItem = () =>
    this.setModel({
      newItem: '',
      todoList: this.model.todoList.concat([ this.model.newItem ])
    })
}

Finally, hook them all up together, using connect, and render the result. (This example assumes a web-browser.)

import { connect } from 'react-mvp'

const App = connect(TodoAppModel, TodoAppPresenter, TodoApp)

import React from 'react'
import ReactDOM from 'react-dom'

ReactDOM.render(<App />, document.getElementById('root'))

Contributing

You're welcome to fork and/or contribute pull-requests and issues to the project.

Cloning and installing

git clone https://github.com/jonathanconway/react-mvp
cd react-mvp
npm install

Running tests

npm test

react-mvp's People

Contributors

jonathanconway 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.