Skip to content

Repository files navigation

main-loop

A rendering loop for diffable UIs

main-loop is an optimization module for a virtual DOM system. Normally you would re-create the virtual tree every time your state changes. This is not optimum, with main-loop you will only update your virtual tree at most once per request animation frame.

main-loop basically gives you batching of your virtual DOM changes, which means if you change your model multiple times it will be rendered once asynchronously on the next request animation frame.

Example

varmainLoop=require("main-loop")varh=require("virtual-dom/h")varinitState={fruits: ["apple","banana"],name: "Steve"}functionrender(state){returnh("div",[h("div",[h("span","hello "),h("span.name",state.name)]),h("ul",state.fruits.map(renderFruit))])functionrenderFruit(fruitName){returnh("li",[h("span",fruitName)])}}// set up a loopvarloop=mainLoop(initState,render,{create: require("virtual-dom/create-element"),diff: require("virtual-dom/diff"),patch: require("virtual-dom/patch")})document.body.appendChild(loop.target)// update the loop with the new application stateloop.update({fruits: ["apple","banana","cherry"],name: "Steve"})loop.update({fruits: ["apple","banana","cherry"],name: "Stevie"})

var loop = mainLoop(initState, render, opts)

Create a loop object with some initial state, a render function, and some options. Your function render (state) {} receives the current state as its argument and must return a virtual-dom object.

You must supply: opts.diff, opts.patch, and opts.create. These can be obtained directly from require("virtual-dom").

Optionally supply an opts.target and opts.initialTree.

loop.target

The main-loop root DOM element. Insert this element to the page.

loop.update(newState)

Update the page state, automatically re-rendering the page as necessary.

loop.state

Read the current main-loop state. To modify the loop state, use loop.update().

Installation

npm install main-loop

Contributors

  • Raynos

MIT Licenced

About

A rendering loop for diffable UIs

Resources

Stars

174 stars

Watchers

7 watching

Forks

Releases

Packages

Used by

Contributors

Languages