Skip to content

A tiny library for isomorphic JavaScript components

License

Notifications You must be signed in to change notification settings

sc0ttj/component

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Component logo

Component

A simple JavaScript component thing

npm version Node version Build Status bundle size Downloads

Component is a simple, "stateful component" thing.

It lets you create re-usable, "functional components" - basically functions that have a "state".

A "state" is a snapshot of your application data at a specific time.

Features

  • Easy setup, zero dependencies:
    • no compilation or build tools needed
  • Simple syntax, quick to learn, easy to use:
    • plain, vanilla JavaScript only!
    • plain HTML & CSS, no virtual DOM or JSX
    • should work with any test suite
  • Very lightweight & modular - use only what you need, for example:
    • ~2.5 kb, using the main Component library (lots of features)
    • ~810 bytes, using only the standalone htmel module (for JSX-like HTML templating)
    • ~830 bytes, using only the standalone render module (for "debounced" DOM diffing at 60fps)
  • Works client-side, in browsers:
    • auto re-render on state change
    • good (re)rendering/animation performance at 60fps, using requestAnimationFrame
    • DOM diffing uses real DOM Nodes (not VDOM)
    • or use an HTML5 <canvas> instead of a DOM-based view
  • Works server-side, in Node:
    • render your components as strings (HTML, or stringified JSON)
    • render your components as data (JS objects, Arrays, etc)
  • Easy state management:
    • immutable states, can only be updated through setState() (optional)
    • define "actions" to easily update the state in specific ways
    • keep all states in a state history, for debugging (optional):
      • rewind or fast-forward to any point in the state history
      • save/load current or any previous state as "snapshots"
  • Easy CSS component styling:
    • Automatic "scoping"/prefixing of your component CSS (optional)
    • Re-render styles on component CSS change (optional)
  • Supports "middleware" functions:
    • easily customise a components setState and re-render behaviour
  • Supports nested components:
    • embed components in the "views" of other components
    • supports various methods and syntaxes
  • Works with these optional add-ons:
    • validator: validate states against a schema (like a simple PropTypes)
    • html/htmel: simpler, more powerful Template Literals (like a simple JSX)
    • ctx: an enhanced 2d <canvas> with extra shapes, methods, and a chainable API
    • emitter: an event emitter - share updates between components
    • storage: enables persistent states (between page refreshes, etc)
    • syncTabs: Synchronize state updates & page renders between browser tabs
    • tweenState: animate nicely from one state to the next (tweened)
    • springTo: animate nicely from one state to the next (using spring physics)
    • onScroll: enables easy scroll-based animations (using debounced scroll event)
    • useAudio: add dynamic audio to your components (uses Web Audio API)
    • onLoop: a fixed-interval loop, suitable for games, animations, time-dependant stuff
    • geo: an easy way to create Mercator or Robinson projected world maps
    • chart: an easy way to create charts, graphs and plotting things
    • react-hooks: an alternative, more React-like API add-on
    • devtools: enables easier component debugging in the browser

Quickstart

Here's some quick examples to demo how it all looks, generally:

"Counter" app

const Counter = new Component({ count: 1 });

const add = num => Counter({ count: Counter.state.count + num })

Counter.view = props => htmel
  `<div>
    <h1>Counter: ${props.count}</h1>
    <button onclick="${e => add(+1)}"> + </button>
    <button onclick="${e => add(-1)}"> - </button>
  </div>`;

Counter.render('.container')

"Todo list" app

const Todo = new Component({ txt: '', list: [ "one" ] });

const setText = e => Todo({ txt: e.target.value });
const addItem = e => Todo({ list: [ ...Todo.state.list, Todo.state.txt ] });

Todo.view = props => htmel
  `<div>
    <h1>Todo</h1>
    <input  onkeyup="${setText}" value="${props.txt}" type="text" />
    <button onclick="${addItem}"> Add Note </button>
    <ul>
      ${props.list.map(i => `<li>${i}</li>`)}
    </ul>
  </div>`;

Todo.render('.container')

A re-usable HTML component:

Here is a "factory" function that generates re-usable components - a new component is created and returned each time it's called.

function Header(state) {
  const Header = new Component({ title: "Hello world", ...state });
  Header.view = props => `<h1>${props.title}</h1>`;

  return Header;
}

// And you use it like this:
const header1 = new Header();

// Add it to our page
header1.render('.container');

// Update the state, the heading will re-render for you
header1.setState({ title: "Hello again!" });

// Or set state via the component constructor
header1({ title: "Hello a 3rd time!" });

Using the <canvas>

Your component "views" don't have to be HTML or SVG, they can use a <canvas> element, instead:

<canvas class="container"></canvas>

<script>
const Foo = new Component({ x: 0, y: 0 });

// define a "view", that draws to the components canvas
Foo.view = (props, ctx) => {
  ctx.beginPath();
  ctx.fillStyle = 'red';
  ctx.fillRect(props.x / 2, props.y / 2, 50, 50);
};

// render to a canvas, using a 2d context, which will get passed into the "view"
Foo.render('.container', '2d');

// update component state, the canvas will re-render
Foo.setState({ x: 300, y: 150 });
</script>

Also see the Ctx add-on and the onLoop add-on add-on for more <canvas> related info.

Nested components

Child components should be regular functions that return part of the view of the parent component:

const Foo = new Component({ title: "Hey!", items: [ "one", "two" ] });

const Header = txt => `<h2>${txt}</h2>`
const List   = i   => `<ul>${i.map(item => `<li>${i}</li>`).join('')}</ul>`

Foo.view = props =>
  `<div id="myapp">
    ${Header(props.title)}
    ${List(props.items)}
  </div>`

Foo.render('.container');

But you can also nest proper (stateful) components inside other components, too:

// create a re-usable button component
function Button(state) {
  const Button = new Component(state);
  Button.view = props => htmel`<button onclick="${props.fn}">${props.txt}</button>`;

  return Button;
}

// create 3 buttons from the re-usable component
const btn1 = new Button({ txt: "1", fn: e => alert("btn1") });
const btn2 = new Button({ txt: "2", fn: e => alert("btn2") });
const btn3 = new Button({ txt: "3", fn: e => alert("btn3") });

// create the parent component
const Menu = new Component({ txt: 'Click the buttons!' });

// put the styles in the parent component
Menu.style = props => `
  button { border: 2px solid #999; }
`

// create a view with our buttons included
Menu.view = props => htmel`
  <div>
    <h2>${props.txt}</h2>
    ${btn1}
    ${btn2}
    ${btn3}
  </div>
`;

Menu.render('.container');

See more short recipes in examples/recipes.js.


Installation

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script>
  // use it here
</script>

In NodeJS:

npm i @scottjarvis/component

Then add it to your project:

ES6 Modules:

import { Component } from '@scottjarvis/component'

// use it here

Using NodeJS require():

var { Component } = require('@scottjarvis/component');

// use it here

See each add-on module (validator, html, htmel, emitter, storage, tweenState, etc) for their respective installation instructions.


Usage

In browsers

Create interactive components for your web pages:

In NodeJS

Or you can do "server-side rendering" (SSR) of your components:

See examples/usage-in-node.js

Or run it in your terminal:

node examples/usage-in-node.js

Component API overview

These are the methods and properties attached to the components you create.

Methods:

  • .setState(obj): update the component state, triggers a re-render
  • .render(el): (re)render to the given element on state change (browser)
  • .toString(): render your component as a string on state change (for NodeJS)
  • .view(props): receives a state and sets the component view to (re)render (optional)
  • .style(props): receives a state and sets the <style> to (re)render (optional)
  • .actions(obj): chainable methods that simplify updating the state (optional)
  • .middleware: an array of functions that run at the end of setState() (optional)
  • ...and more

Properties:

  • .state: an object, contains your app data, read-only - cannot be modified directly
  • .schema: an object against which to validate your component state (optional)
  • .container: the HTML Element into which the components view is rendered (optional)
  • .html: alias of .container
  • .css: the <style> Element which holds the component styles (optional)
  • .uid: a unique string, generated once, on creation of a component
  • .log: an array containing a history of all component states
  • ...and more

Settings:

  • .immutable: if true, then setState() updates then "freezes" the current state. Default = true.
  • .reactive: if false, disables auto re-rendering on state change. Default = true.
  • .scopedCss: if false, disables auto-prefixing .style() CSS . Default = true.
  • .debug: if true, a record of states changes are kept in .log. Default = false.

Using "state validation"

You can validate your component state against a schema, before you set state or render anything. If the data to set doesn't match a components state schema, an error will be thrown.

This is a similar concept to propTypes in React, but a bit simpler.

First, install a tiny (~300 bytes) additional dependency:

npm i @scottjarvis/validator

Then enable it:

const { Component } = require("@scottjarvis/component")
Component.validator = require("@scottjarvis/validator")

Define a schema object. For each property included, the value should be:

  • a typeof type name, as a string
  • or a validator function, that returns true or false

Then create your component, passing in the schema as the second parameter to Component().

function Foo() {
  const defaults = {
    count: 0,
    age: 20
    items: [ "one", "two" ],
    foo: {
      bar: "whatever"
    }
  };

  const schema = {
    count: "number",
    age: age => typeof age === "number" && age > 17,
    items: "array",
    foo: {
      bar: "string"
    }
  };

  // pass in the schema as the 2nd param
  const Foo = new Component(defaults, schema);

  return Foo;
}

If you try to set an invalid state, your component will throw an error:

const foo = new Foo();
foo.setState({ count: "a string" }) // this will throw an Error!

See @scottjarvis/validator for more usage info.

Using "middleware"

Using "middleware" functions you can extend your components setState/render behaviour, and make other stuff happen at the end of the setState() method.

Here's how to use "middleware" functions:

  1. Define some "middleware" function(s) - these will be called at the end of setState()
  2. Add your "middleware" to a component - as an array of functions

Your middleware functions receive the latest state of the host component, as props.

// Define the middleware functions
const countLogger = props => console.log("count = ", props.count)

function Foo() {

  const Foo = new Component({ count: 0 })

  Foo.view = props => `<p>${props.count}</p>`

  // Add the middleware to your component
  Foo.middleware = [countLogger]

  return Foo;
}

const foo = new Foo();
foo.setState({ count: 1 }) // will run the middleware

See examples/usage-in-node.js for the complete example.

Using the "state history"

Here is how to "time travel" to previous states, or jump forward to more recent ones.

Note: To enable the state history, foo.debug must be true.

const foo = new Foo();

// enable logging of state history
foo.debug = true

// Take a "snapshot" (we'll use it later)
var snapshot = foo.state

// ...later

foo.rw()    // go to initial state
foo.ff()    // go to latest state
foo.rw(2)   // rewind two steps to a previous state
foo.ff(2)   // fast-forward two steps to a more current state

// Set a previous state
foo.setState(foo.log[0].state)

// Set a "named" state, from a previous point in time
foo.setState(snapshot)

Using component CSS

You can insert styles into your view, and update them using props, like any other state properties.

However, with the .style() method you can separate your components styles from its view (optional):

function Foo(props) {

  const Foo = new Component(props)

  Foo.view = props => `<h1>${props.txt}</h1>`

  // style the view with standard CSS
  Foo.style = props => `
    h1 {
      background-color: ${props.bgColor || 'red'};
    }
  `

  return Foo;
}

If using style(), the CSS will be auto-prefixed with the id or CSS class of the components container, when the component is first added to the page using foo.render('.container').

This CSS "auto-scoping" will prevent a components styles affecting other parts on the page. It also keeps your component CSS clean - no need to prefix anything with a unique ID or class yourself.

  • If your container has no class or id attributes, then a unique string, foo.uid, will be used instead.
  • You can disable automatic CSS "scoping"/prefixing by using foo.scopedCss = false.
  • When rendering your component in NodeJS, or using foo.toString(), your CSS will not be auto prefixed.

How it works

  • for each component rendered to the page (not including the nested/child components) a <style> tag is added the the page and updated each time the component is re-rendered.
  • in order to style nested/child components, you should put the styles in the parent components style() method.

To see style() in use, see examples/usage-in-browser.html.

Using JSON-LD (linked data)

Adding linked data to your components is easy - just define it as part of your view:

  Foo.view = props => `
    <div>
      <script type="application/ld+json">{ ... }</script>
      ...
    </div>`
  • add a JSON-LD script before your component HTML
  • use the props passed in to define/update whatever you need
  • your JSON-LD will be updated along with your view, whenever your component re-renders

Using "nested components"

Components that are nested inside other components are called child components.

All child components have the following in common:

  • you include the child component in the "view" of the parent component
  • child components do not trigger a re-render of the page
  • you should define the styles of the nested components in the parent component
  • to re-render a child component that has changed, you must re-render the parent component
  • nested components work with or without the html/htmel add-on(s)

There are two kinds of child component - stateless and stateful - and while they behave the same in most ways, they have slightly difference syntax and features.

1. Using "stateless" child components:

Stateless components are just regular functions that take props as input, and return a view - usually HTML as a string.

// a stateless child component
const h2 = text => `<h2>${text}</h2>`;

// ...used inside the view of another component
Foo.view = props => `
  <div>
    ${h2(props.text)}
    <p> ... </p>
  </div>
`;

2. Using "stateful" child components:

Stateful components are any components with a state, usually created like so:

// ...import some pre-defined button components, then..

// create 2 buttons - the child components
const btn1 = new Button({ txt: "1" });
const btn2 = new Button({ txt: "2" });

// create the parent component
const Menu = new Component({});

// put the styles in the parent component
Menu.style = props => `
  button { border: 2px solid #999; }
`

// create a view with our buttons included
Menu.view = props => htmel`
  <div>
    ${btn1}
    ${btn2}
  </div>
`;

NOTE: When nested inside another component, even stateful child components do not run their own setState() & render() methods - they simply return their (newly updated) view.

This has a number of implications:

  • better performance (fewer page re-renders)
  • enforces same behaviour as stateless child components
    • only parent components trigger page re-renders
  • calling setState() of a stateful child component:
    • will update its state and run its "middleware"
    • but will not re-render anything!

For more code examples, see the nested component recipes in examples/recipes.js.

Server side rendering

If running a NodeJS server, you can render the components as HTML strings or JSON.

Just define a view - a function which receives the state as props and returns the view as a string, object, etc.

// create an HTML view, using template literals
var htmlView = props => `
    <div id=${props.id}>
      ${Heading("Total so far = " + props.count)}
      ${List(props.items)}
      ${Button("Click here", `App.clickBtn(${props.incrementBy})`)}
    </div>`

// or return the state itself (pure headless component)
var dataOnlyView = props => props

// Choose a view to render
App.view = htmlView

// render the component
App.render()

// ..other rendering options...

// print it to the terminal
console.log(App.render())

If rendering a component that has a .view() and .style() in NodeJS (or if calling .toString() directly), the output will be a string like this one:

"<style>
#foo h1 {
  color: red;
}
.btn {
  padding: 6px;
}
</style>
<div id=\"foo\">
  <h1>Total so far = 101</h1>
  <button class=\"btn\" onclick=\"App.clickBtn(1);\">Click here</button>
</div>"

^ Any styles are wrapped in a <style> tag, and your view is rendered after that.

Note: When using .toString(), your component CSS is not auto-prefixed or "scoped" with a containers class or id - you can only do this client-side (i.e, in a browser), using .render('.container').

Using "actions"

Define "actions" to update your state in specific ways.

These are like regular methods, except they're always chainable, they hook into the emitter add-on automatically, and they're tagged by name in your components state history.

function Foo() {
  const Foo = new Component({ count: 0, items: [] });

  // define the actions
  Foo.actions({
    plus:       props => Foo({ count: Foo.state.count + props }),
    minus:      props => Foo({ count: Foo.state.count - props }),
    addItems:   props => Foo({ items: [ ...Foo.state.items, ...props ] }),
  });

  return Foo;
}

const foo = new Foo();

// use "actions" to update specific parts of your state
foo.plus(105);
foo.minus(5);

// A components "actions" can be chained
foo.minus(1)
   .minus(1)
   .plus(3)
   .addItems([ { name: "one" }, { name: "two" } ]);

Using the add-on emitter module, components can listen for and react to these actions. This is an easy way to share states between components, and for components to "talk to each other".

Using the emitter module

Any time a components state is changed via an "action", it can emit an event that other components can listen for - the "listener" will receive the state of the component that emitted the event.

To achieve this, just include the emitter like so:

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/emitter.min.js"></script>
<script>
  Component.emitter = emitter

  // use it here
</script>

In NodeJS:

var { Component, emitter } = require("@scottjarvis/component");
Component.emitter = emitter;

The emitter listens for "actions" using the following "listening" methods - on(), off() and once().

Each method receives the latest state of the component that emitted the "action" being listened to.

Here's how to use the emitter:

Let's listen to the foo components actions, using another component, logger:

// Define some listening component
const logger = new Component({})

// Define "listeners"
logger
  .on('plus',     props => console.log('plus',     props.count))
  .on('addItems', props => console.log('addItems', props.items))
  .once('minus',  props => console.log('minus',    props.count))

// ...now we're ready to run the program..

const foo = new Foo();

// these "actions" will trigger the logger
foo.plus(105)
foo.minus(5)

// stop listening to the "plus" action, keep listening to others..
logger.off('plus')

foo.minus(1)
  .minus(1)
  .plus(3)
  .addItems([{ name: "two" }, { name: "three" }])

Also see examples/usage-emitter.js

Using your own Event Listeners

To add your own Event Listeners, you should add them to the container of your components:

// render a component into the page to get its HTML
foo.render('.container');

// now we have the `.html` property on our component, we can use it
foo.html.addEventListener("click", e => {
    // get the element clicked
    const el = e.target.className;
    // work out what to do next
    if (el === "foo") {
      // ...
    } else if (el === "bar") {
      // ...
    }
});

Using the storage module

The storage module makes components remember their state between page refreshes, using localStorage.

Note that storage can be polyfilled for NodeJS, so works in Node too - by saving to JSON files.

  • In NodeJS, the state persists between script invocations, rather than page refreshes.

To use the storage add-on, include it in your project like so:

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/storage.min.js"></script>
<script>
  Component.storage = storage

  // use it here
</script>

In NodeJS:

var { Component, storage } = require('@scottjarvis/component');
Component.storage = storage

// use it here

To enable persistent state storage, only need to define a store name (where to save your data), like myComponent.store = "something".

In a browser, this is how you add persistent storage to our Counter app:

const Counter = new Component({ count: 1 });

const add = num => Counter({ count: Counter.state.count + num })

Counter.view = props => htmel`
  <div>
    <h1>Counter: ${props.count}</h1>
    <button onclick="${e => add(+1)}"> + </button>
    <button onclick="${e => add(-1)}"> - </button>
  </div>`;

// simply define a "store name" (where to save your data) before you render
Counter.store = 'Counter';

// now we can render it into the page - it'll load in the last state
// from its localStorage "store" as the initial state
Counter.render('.container')

In NodeJS, this is how you add persistent storage to our Counter app:

  • install the NodeJS localStorage polyfill: npm i node-localstorage -D
  • run your scripts with the -r node-localstorage/register option to enable it
  • the "local storage" used will be a local folder/file, called ./scratch/<store name>

Example command, running a component with a persistent state in NodeJS:

node -r node-localstorage/register examples/usage-persistant-state.js

See examples/usage-persistant-state.js for more info.

Using the syncTabs module

Give your components a persistent state that is synchronized across multiple browser tabs - an update in one tab will update the others.

The syncTabs add-on uses storage (above) and only works in browsers.

How to use it:

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/storage.min.js"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/syncTabs.min.js"></script>
<script>
  Component.storage = storage
  Component.syncTabs = syncTabs

  // now it's enabled
</script>

Using the tweenState module

With tweenState it's super easy to do animations that use requestAnimationFrame and DOM diffing.

Using tweenState() is much like using setState(), except:

  • you only pass in the state values you want to tween
  • you can pass in tween settings as a 2nd param (delay, duration, easing, callbacks)

How it works:

By default, tweenState() calls setState() on every frame of the tweened animation. You can override this behaviour by defining a shouldSetState() callback in your tween config, which is called on every frame - setState() will only be called on that frame if shouldSetState() returns true.

To use tweenState, import it along with Component, like so:

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/tweenState.min.js"></script>
<script>
  Component.tweenState = tweenState

  // use it here
</script>

In NodeJS:

Note that tweenState includes polyfills for NodeJS, so works in Node too.

var { Component, tweenState } = require('@scottjarvis/component');
Component.tweenState = tweenState

// use it here

Example usage of tweenState:

// Define our app state
var state = {
  ignore: "me",
  count: 199,
  foo: 1,
  dontTween: "this property",
  bar: {
    zzz: 100
  }
}

// Define a stateful main component
var App = new Component(state)

// Tween (animate) from one state to the next:
// Give the state to tween to, with some tween options as the (optional) 2nd param

App.tweenState(
  // 1st param - object - the new state values to tween to...
  // pass in only the properties that you want to tween!
  { count: 200, foo: 10, bar: { zzz: 999 } },
  // 2nd param - object - the tween settings
  {
    delay: 0,
    duration: 500,
    ease: "linear",
    paused: false,
    // called on first frame:
    onStart: tweenProps => tweenProps,
    // called on every frame:
    onUpdate: tweenProps => tweenProps,
    // called on last frame:
    onComplete: tweenProps => tweenProps,
    // called on every frame, choose to set state or not (must return true or false)
    shouldSetState: tweenProps => tweenProps.frame % 2 > 0, // for example, this will set state only on odd frame numbers
    // called only on the frames where the state was updated:
    onSetState: tweenProps => tweenProps
  }
)

The tween config (2nd param) takes the following properties:

  • delay in milliseconds (default: 0)
  • duration in milliseconds (default: 0)
  • ease - the name of a timing function (default: linear, see src/easings.js for the full list)
  • paused - true or false (default: false)
  • shouldSetState() - called on every frame, receives tweenProps, should return true or false
  • onSetState() - called only on frames where the state is updated, receives tweenProps
  • onStart() called on the first frame, receives tweenProps
  • onUpdate() called on every frame, receives tweenProps on each frame
  • onComplete() called after last frame, receives final tweenProps

The tweenProps object returned to callbacks provides the tweening values of the current frame, and includes:

  • progress - a number from 0 to 1 (so 0.5 is half-way through the tween)
  • frame - the current frame number
  • frameTotal - the total number of frames
  • values - an array of the tweened values
  • tweenedState - the state of your component on the current frame
  • and more...

Also see examples/usage-tweenState.js

Using the springTo module

With springTo it's easy to do spring-physics based animations, for lively, bouncy, dynamic animations which are really hard to achieve with tweening alone.

Using springTo() is much like using setState(), except:

  • you only pass in the state values you want to animate
  • you can pass in spring settings as a 2nd param (mass, stiffness, callbacks, etc)

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/springTo.min.js"></script>
<script>
  Component.springTo = springTo

  // use it here
</script>

In NodeJS:

Note that springTo includes polyfills for NodeJS, so works in Node too.

var { Component, springTo } = require('@scottjarvis/component');
Component.springTo = springTo

// use it here

Example usage of springTo:

// 1. define a component and render it to the page
const Foo = new Component({ x: 100, y: 100 });

Foo.view = props => `<div style="top:${props.y - 25}px;left:${props.x - 25}px"></div>`;

Foo.style = props => `div {
  background-color: #d11;
  border: 2px solid #222;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  position: absolute;
}`;

Foo.render('.container');

// 2. listen to clicks on the page and spring the component to click location
document.addEventListener('click', function(e) {

  // get mouse position on click
  const rect = e.target.getBoundingClientRect();
  const mouseX = e.clientX - rect.left;
  const mouseY = e.clientY - rect.top;

  // use "springTo" to animate the component
  const mySpring = Foo.springTo(
    // 1st param - the state values to animate to (pass in only the values you want to animate!)
    { x: mouseX, y: mouseY },
    // 2nd param - the spring settings
    {
      paused: false,
      mass: 4.0,       // higher is slower/more drag         Default = 1.0
      stiffness: 0.5,  // higher is more "bouncy"            Default = 0.1
      damping: 0.9,    // higher is more "friction"          Default = 0.8
      precision: 0.01, // higher values finish anim sooner   Default = 0.01
      //
      // called on each frame
      shouldSetState: props => true,
      // called on frames where shouldSetState returns true 
      onSetState: props => {},
      // called on first frame
      onStart: props => {},
      // called on each frame
      onUpdate: props => {},
      // this callback is called at the end:
      onComplete: props => {},
    }
  );

  // available control methods
  mySpring.pause();
  mySpring.play();
  mySpring.stop();
});

The spring config (2nd param) takes the following properties:

  • paused: if true, the animation must be started manually, with .play(), once created
  • mass: higher is slower/more drag. Default = 1.0
  • stiffness: higher is more "bouncy". Default = 0.1
  • damping: higher is more "friction". Default = 0.8
  • precision: higher values finish anim sooner. Default = 0.01
  • onStart(props): called on first frame, receives current animation values as props
  • onUpdate(props): called on every frame, receives current animation values as props
  • onComplete(props): called on the last frame, receives current animation values as props
  • shouldSetState(props): called on every frame, if it returns true, setState(props) is run
  • onSetState(props): called only on frames where the state is updated, receives anim data as props

The props object returned to the callbacks contains:

  • any properties that you passed in, with their current value(s)
  • frame - the current frame number
  • acceleration - the acceleration of the spring at current frame
  • velocity - the velocity of the spring at current frame

Also see examples/usage-spring-animation.html

Using the onScroll module

With the optional onScroll add-on, it's easy to do scroll-based animations. Works in browsers only (not NodeJS).

You can define a function to run on scroll, on a per-component basis, and set (an invisible) marker line (offset from top) through which a components view must pass to trigger/drive the animations.

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/onScroll.min.js"></script>
<script>
  Component.onScroll = onScroll

  // use it here
</script>

In ES6:

import { Component, onScroll } from '@scottjarvis/component';

Component.onScroll = onScroll

// use it here

Here's how to actually use it to drive an animation:

const Foo = new Component({ percent: 0 });

Foo.view = props => `
  <p id="scroll-progress-monitor">
    progress: ${props.percent}%
  </p>
`;

// set the marker line through which elements must pass to trigger the animation:
// - 50  means 50%, which is halfway down the screen,
// - 33  means 33% down from top,
// - 100 means at bottom of screen
Foo.onScroll.offset = 33;

// now we can add the scroll event to the component
Foo.onScroll(scrollProps => {
  Foo.setState({
    percent: Math.floor(scrollProps.progress * 100)
  });
});

// now render it to the page
Foo.render('.container');

The scrollProps param received by your given function contains the following properties:

  • progress: progress of the component past the marker line, starts at 0.0, ends at 1.0
  • frame: the frame count (resets once progress reach 0.0 or 1.0)
  • totalFrames: total frame count (from requestAnimationFrame)
  • direction: the direction of the scroll (either up or down)

Also see examples/usage-onScroll.html

Using the useAudio module

Provides an audio add-on, powered by the Web Audio API, for highly performant, timing-sensitive sounds. Useful for games, audio applications and visualizations. Works in browser only (not in NodeJS).

useAudio can work with Component, or it can be used "standalone".

To use useAudio with Component:

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/useAudio.min.js"></script>
<script>
  Component.useAudio = useAudio

  // use it here
</script>

In ES6:

import { Component, useAudio } from '@scottjarvis/component';

Component.useAudio = useAudio

// use it here

Example usage of useAudio with Component:

If used as a Component add-on, each component gets a myComponent.useAudio({ ... }) method attached to it when it's created, and is then responsible for its own sounds only.

const Foo = new Component({});

Foo.useAudio({
  sound1: 'foo.mp3',
  mySound: 'bar.mp3',
});

document.addEventListener('audioLoaded', function audioLoaded(e) {
  // you can now use the sounds
  const { mySound, sound1 } = Foo.audio;

  Foo.view = props => htmel
    `<div>
      <button onclick="${mySound.play}">Click me</button>
    </div>`;

  Foo.render('.container');
});

Example usage of useAudio standalone:

<script src="https://unpkg.com/@scottjarvis/component/dist/useAudio.min.js"></script>
<script>
  const audio = useAudio({
    sound1: 'foo.mp3',
    mySound: 'bar.mp3',
  });

  document.addEventListener('audioLoaded', function audioLoaded(e) {
    // you can now use the sounds
    const { mySound, sound1 } = audio;
    mySound.play();
  });
</script>

Using your sounds

The useAudio({ ... }) method generates sound objects with the following methods:

  • mySound.play() - play a sound
  • mySound.pause() - pause a playing sound
  • mySound.playFrom(time) - play from the given time (in seconds)
  • mySound.rapidFire(num, delay) - play num times, with delay seconds between
  • mySound.fadeIn(duration) - fade in over duration (in seconds)
  • mySound.fadeOut(duration) - fade out over duration (in seconds)
  • mySound.stop(atTime) - stop at given time (leave empty for immediate stop)
  • mySound.mute() - set a sounds volume to zero
  • mySound.unmute() - restore a sounds volume to its previous value
  • mySound.connectTo(otherSound) - connect sounds together to play them (etc) at the same time
  • mySound.settings({ ... }) - adjust all the sounds properties, even during playback

Defining advanced sound objects

Sounds can have many properties, which you can define when you create them, or adjust later, using mySound.settings({ ... }).

Lets define a sound with all possible properties enabled:

Foo.useAudio({
  heroVoice: {
    src: 'sounds/speech.mp3',
    volume: 0.20,       // min 0, max 1
    loop: false,        // true or false
    playbackRate: 1,    // 1 is normal speed, 2 is double speed, etc
    filters: {
      delay: 0,         // give a duration, in seconds, like 0.2
      panning: -1,      // -1 is left, 0 is center, 1 is right
      // add any combination of "biquad" filters
      // (see https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode)
      lowshelf:  { freq:  400, gain: 0.2 },
      highshelf: { freq: 1200, gain: 0.2 },
      lowpass:   { freq:  400, q: 0.1 },
      highpass:  { freq: 1200, q: 0.1 },
      allpass:   { freq: 1200, q: 0.1 },
      bandpass:  { freq:  800, q: 0.5 },
      peaking:   { freq:  800, gain: 0.2, q: 0.5 },
      notch:     { freq:  800, q: 0.5 },
      // or add an array of filters into a customisable "equalizer"
      equalizer: [
        { freq:  200,  q: 0.25, },           // lowpass filter
        { freq:  800,  q: 0.25, gain: 0.9 }, // peaking filter(s) (can have many)
        { freq:  1200, q: 0.25,  },          // highpass filter
      ],
      // add a "reverb" or "echo" effect
      reverb: {
        duration: 1,
        decay: 1,
        reverse: true,
      },
      // how much to randomise various properties each time a sound is played
      randomization: {
        volume: 0.8,
        playbackRate: 0.6,
        startOffset: 0.0001,
        delay: 0.01,
      },
      // this enables the analyser node, useful for audio visualizations
      analyser: {
        fftSize: 2048,
        minDecibels: -100,
        maxDecibels: -30,
        smoothingTimeConstant: 0.8,
      },
      // can be used to prevent clipping and distortions
      compression: {
        threshold: -50.0,
        knee: 40.0,
        ratio: 12.0,
        attack: 0.0,
        release: 0.25,
      },
    },
    // callbacks
    onPlay: props => console.log(props),   // props is the current state of the sound,
    onPause: props => console.log(props),  // and includes all settings for the filters
    onResume: props => console.log(props), // that you have enabled
    onStop: props => console.log(props),
    onChange: props => console.log(props),
  },
});

You can change any of these settings later, even during playback.

For best results, it's recommended to define up front (when creating your sounds) any properties that you intend to change during playback.

However, this is not required, as useAudio will rebuild a sounds AudioNodes graph (connections) during playback, if required - you can see this in action in examples/usage-audio.html where reverb is added and then removed, while the sound plays.

Updating your sounds settings

You can change any/all properties of the sounds state, even during playback, with the .settings() method:

mySound.settings({
  reverb: { decay: 2 },
  volume: 1,
});

You can also update all sounds attached to a component at once, using the following:

// Foo is our component from above, edit all its sounds at once
Foo.audio.settings({
  reverb: { decay: 2 },
});

Calling .settings(), both on a single sound or on a library of sounds, will trigger the onChange() callback.

The settings method can also take a callback as a second parameter, which is run after the settings have been changed:

mySound.settings(
  // pass in the properties to change
  { reverb: { decay: 2 }, volume: 1 },
  // pass in the callback to run
  function(props) {
    console.log('State updated, and now contains: ', props);
  }
);

See examples/usage-audio.html for examples and more information.

Using the onLoop module

The onLoop add-on gives you a fixed-interval loop in which you run your given function, with the specified settings - like target FPS.

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/onLoop.min.js"></script>
<script>
  // add the game loop add-on to Component
  Component.onLoop = onLoop
</script>

In ES6:

import { Component, onLoop } from '@scottjarvis/component';

Component.onLoop = onLoop

Example usage of onLoop

Here's a short example, showing how to move a box around on a <canvas> element:

<canvas class="container"></canvas>

<script>
Component.onLoop = onLoop

// define a new component
const Game = new Component({
  // now define our (boxes) properties
  x: 0,
  y: 0,
});

// define the game "view" - draw a box, positioned at props.x and props.y
Game.view = (props, ctx) => {
  ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
  ctx.beginPath();
  ctx.fillStyle = 'red';
  ctx.fillRect(props.x / 2, props.y / 2, 50, 50);
  ctx.closePath();
};

// define the function we want to run as our main loop
Game.onLoop((props, dt) => {
  let { x, y } = props;
  x += 0.1 * dt
  y += 0.1 * dt
  // finally, set the new game state, triggers a debounced re-render of the "view"
  Game.setState({ x, y });
});


// add to page, and setup a "2d" canvas context
Game.render('.container', '2d');

// control the main loop
Game.start();
Game.pause();
Game.resume();
Game.stop();
</script>

That's (pretty much) all there is to it!

See examples/usage-onLoop.html for a more detailed example, and a bit more information.

Using html and htmel modules

To make it easier to build a good HTML "view" for your components, there are two optional add-on functions which provide a nicer way to write HTML in JavaScript "Template literals".

These return your components view as either a String or HTML Object, but are otherwise mostly inter-changeable:

  • html (~650 bytes) - returns your template as a String.
  • htmel (~800 bytes) - returns your template as an HTML Object (browser) or String (NodeJS).

Note that both html and htmel can be used standalone (without Component) for general HTML templating.

// Example of using `html` or `htmel` standalone, without any `Component` stuff:

const foo = "Hello world"

const str = html`<h1>${foo}</h1>` // `html`  returns a string
const el = htmel`<h1>${foo}</h1>` // `htmel` returns a DOM Node

// ..or in functions that return pre-defined HTML snippets from templates:

const para = text => htmel`<p>${text}</p>`

const list = array => htmel`<ul>${array.map(text => `<li>${text}</li>`)}</ul>`

// now generate the DOM elements
const p  = para("Put me in a paragraph.")
const ul = list([ "one", "two", "three" ])

To use html or htmel (or both), import them [optionally along with Component], like so:

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/html.min.js"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/htmel.min.js"></script>
<script>
  // use them here
</script>

In NodeJS:

var { Component, html, htmel } = require('@scottjarvis/component');

// use them here

Features of both html and htmel:

// embed JS object properties as valid HTML attributes  (ignores nested/child objects)
html`<p ${someObj}>some text</p>`
// embed JS object properties as CSS (ignores nested/child objects)
html`<p style="${someObj}">some text</p>`
// embed JS objects as JSON in HTML data attributes
html`<p data-json='${someObj}'>some text</p>`
// embed real DOM objects
const elem = document.querySelector(".foo");
const elems = document.querySelectorAll(".bar");
html`<div>${elem}${elems}</div>`
// embeds arrays properly, no need to use .join('')
html`<ul>${list.map(i => `<li>${i}</li>`)}</ul>`
// hides Falsey values, instead of printing "false", etc
html`<span>some ${foo && `<b>cool</b>`} text</span>`
// nested templates
var TableRows = props => props.map(row =>
  html`<tr>
    ${row.map((item, i) => `<td>${row[i]}</td>`)}
  </tr>`);

var Table = props => html`
  <table>
    <tbody>
      ${TableRows(props.data)}
    </tbody>
  </table>`;

Features of htmel:

In a browser, you can use htmel instead of html to return DOM Nodes (instead of strings):

// returns a text node
htmel`I’m simply text.`
// returns an HTML node
htmel`<p>I’m text in an element.</p>`
// supports HTML fragments
htmel`<td>foo</td>`

If using htmel in a browser, you can also embed functions as event attributes - they'll be attached to the relevant HTML Elements as proper Event listeners:

// embed functions - they'll be attached as Event listener methods
htmel`<p onclick="${e => console.log(e.target)}">some text</p>`

Example usage of htmel with Component:

// Let's define a component with a view, using `htmel`
function Foo(state, schema) {

  const defaults = {
    css: {
      "border": "2px solid red",
      list: {
        "padding": "8px",
      }
    },
    attrs: {
      "class": "foo bar",
      "z-index": 2,
    },
    text: "My Title:",
    list: [
      "one",
      "two",
    ],
    status: false,
    someFunc: function(event) { console.log(event); }
  };

  const Foo = new Component({ ...defaults, ...state }, schema);

  // now let's use `htmel` to construct an HTML view..

  Foo.view = props => htmel`
    <div style="${props.css}" ${props.attrs}>
      <h2>${props.title}</p>
      <p>${props.text}</p>
      <ul style="${props.css.list}">
        ${props.list.map(val => `<li>${val}</li>`)}
      </ul>
      ${props.status && `<p>${props.status}</p>`}
      <button onclick="${props.someFunc}">Click me</button>
    </div>
  `;

  return Foo;
}

Using the Ctx module

If using a <canvas> to render components, you can optionally extend it using Ctx, which adds interactivity, new drawing methods & shapes, save as image and video, a chainable API and much more.

It is only 5.6kb minified and gzipped.

Features:

  • interactive canvas:
    • create interactive "canvas objects" using very simple API
    • update "canvas objects" on hover, click, drag and release
    • easily style your "canvas objects"
    • define your own, custom "canvas objects" to interact with
    • flexible syntax and extendable API
  • a simple camera:
    • pan, scale, rotate
  • extra drawing methods built-in:
    • arrows and arced arrows
    • cardinals splines (smooth curves, with segments and optional points)
    • circles & ellipses
    • gradient-filled rectangles (linear) and circles (radial)
    • grids
    • polygons from any array of points
    • polyshapes, like hexagons, etc
    • rounded corner rectangles
    • rings (doughnuts)
    • stars
    • triangles
    • more..
  • chainable API:
    • all methods are chainable unless they return something (see regular canvas API)
  • maths helper functions:
    • convert between radians/degrees, get distances, angles, lerp, etc
  • save to image and video:
    • embed SVG as code, Element or file with ctx.drawImg(), which handles caching for you
    • save canvas as an image with ctx.canvas.image.saveAs('filename.png')
    • record canvas to video with ctx.canvas.video.record()
    • save the video with ctx.canvas.video.saveAs('filename.webm')

Note:

  • only extends the 2dContext of Component canvases - it won't affect other <canvas>s.
  • only works in browser, unless <canvas> 2d context is polyfilled in your NodeJS app.

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/ctx.min.js"></script>
<script>
Component.Ctx = Ctx;

// use it here
</script>

In ES6:

import { Component, Ctx } from '@scottjarvis/component';

Component.Ctx = Ctx

Example usage of Ctx

Here's a short example, showing a few of the additional drawing methods/shapes, and using the chainable API:

// enable the enhanced canvas 2dContext API
Component.Ctx = Ctx;

// define a new component
const Foo = new Component({ x: 0, y: 0 });

// define a "view", that draws to the components canvas - the `ctx` param 
// is enhanced with a chainable API, and additional shapes (drawing methods)
Foo.view = (props, ctx) => {
  ctx
    .clear()
    .size(800, 600)

    .beginPath()
    .fillStyle('yellow')
    .fillRoundedRect(10, 70, 50, 75, 10)

    .beginPath()
    .strokeStyle('pink')
    .lineWidth(4)
    .strokeTriangle(220, 60, 50, 45)

    .beginPath()
    .fillStyle('green')
    .fillRing(80, 100, 40, 50, 100)

    .beginPath()
    .strokeStyle('yellow')
    .strokeStar(200, 200, 50, 5, 0)
}

// render into a canvas element on the page
Foo.render('.some-canvas', '2d')

See examples/usage-Ctx.html for examples and more information.

Example of an interactive canvas

Just use ctx.create.rect() instead of ctx.rect() (etc) and an interactive "canvas object" will be returned.

// define an interactive "canvas object"
const myRect = ctx.create.rect(x, y, w, h);

Your interactive canvas objects will have the following methods:

  • myShape.update(...) - set the objects params to new values
  • myShape.adjust(...) - update the current values by given amounts
  • myShape.draw(...) - render the object to the canvas, optionally pass in a styles object

Your interactive canvas objects will have the following properties:

  • myShape.hover
  • myShape.click
  • myShape.drag
  • myShape.release

You can check these properties to handle the interactivity.

Or use the event handlers instead:

  • myShape.on('hover', someFunc) - run some function on hover
  • myShape.on('click', someFunc) - run some function on click
  • myShape.on('drag', someFunc) - run some function on drag
  • myShape.on('release', someFunc) - run some function on release

Here's a usage example:

// enable the enhanced canvas 2dContext API
Component.Ctx = Ctx;

// define a new component
const Foo = new Component({ x: 0, y: 0, frame: 0 });

// define an interactive "canvas object"
const myStar = ctx.create.star(x, y, radius, numOfSides, degrees);

// define a "view"
Foo.view = (props, ctx) => {
  // update "canvas object" properties
  myStar.update(x, y, radius, numOfSides, degrees);

  // draw "canvas object" with the given styles
  myStar.draw({
    strokeStyle: myStar.hover ? 'red' : 'orange',
    fillStyle: myStar.click ? 'yellow' : 'lightgreen',
  });
};

// ...increment Foo.state.frame in a loop to keep re-rendering the view

Optionally interact with the canvas inside your own "mousemove", "mousedown", "mouseup" event handlers:

// update a toolip with object info on hover and click
const tooltip = document.querySelector('.tooltip');

ctx.canvas.addEventListener('mousemove', event => {
  // clear tooltip
  tooltip.innerHTML = ``;
  // if we are hovering on an object in the canvas
  if (ctx.hoverObj) {
    tooltip.innerHTML = `
      <br>  Mouse  x,y: ${event.offsetX}, ${event.offsetY}
      <br>   Object id: ${ctx.hoverObj.id}
      <br>Object props: ${ctx.hoverObj.props}
      <br>Object drag: ${ctx.hoverObj.drag}
    `;
  }

}, false);

ctx.canvas.addEventListener('mousedown', event => {
  if (ctx.hoverObj) tooltip.innerHTML += `<br>Clicked`;
}, false);

There's loads more features too - see examples/usage-Ctx-interactive.html for more information.

Additional methods provided by Ctx

General:

ctx.clear()                   // clear entire canvas
ctx.fullscreen()              // toggle fullscreen mode
ctx.isClean()                 // returns true if canvas not "tainted", else false
ctx.size(w, h, aspectRatio)   // set canvas size (in pixels), respects the device pixel ratio

Arrows:

ctx.arrow(x1, y1, x2, y2, style, size, whichEnd, headDeg)
ctx.arcArrow(x1, y1, radius, startDeg, endDeg, antiClockwise, style, size, whichEnd, headDeg)
  • about startDeg, endDeg and headDeg:
    • these should be given in degrees, not radians
  • about style (arrow head style):
    • 0 gives plain triangle heads
    • 1 gives nice curved arrows heads
  • about size:
    • the length in pixels of the arrow head
  • about whichEnd (which end to put the arrow head):
    • 0 is none
    • 1 is start
    • 2 is end
    • 3 is both

Camera:

ctx.camera(xCenter, yCenter, scale, rotation)
  • xCenter and yCenter are the x,y points you want the centre of the camera to "look at"
  • scale 1 = 100%, 2 = 200%, etc
  • rotation is in degrees

Chroma key (green screen effect)

ctx.chromaKey(tolerance, color)  

Make all pixels matching colour (default green) within the tolerance levels, transparent.

  • tolerance is optional, defaults to 150
  • color is an optional array containing RGB values, defaults to [0,255,0] (green)

Circles:

ctx.circle(x, y, radius, degrees, antiClockwise)
ctx.fillCircle(x, y, radius, degrees, antiClockwise)
ctx.strokeCircle(x, y, radius, degrees, antiClockwise)

Cardinal splines (curved/rounded lines):

ctx.curve(points, tension, numOfSeg, closed)  // e.g. ctx.curve([x1,y1, x2,y2, ...], 0.5, 5, true)

Ellipses:

ctx.ellipse(x, y, w, h)
ctx.fillEllipse(x, y, w, h)
ctx.strokeEllipse(x, y, w, h)

Gradient filled circle (radial):

ctx.gradientCircle(x, y, innerRadius, outerRadius, xOffset, yOffset, fillGradient)

The fillGradient param should be an array of color stops, like this:

[
  [ 0.0, "blue"  ],
  [ 0.5, "#f00"  ],
  [ 1.0, "green" ],
]

Gradient filled rectangles (linear):

ctx.gradientRect(x, y, w, h, fillGradient, horizontal) // `horizontal` is boolean

Grids:

ctx.drawGrid(cellSize, lineWidth, strokeColor) // fills canvas area
ctx.drawGridBox(x, y, w, h, cellSize, lineWidth, strokeColor) // grid in a box
ctx.checkerboard(x, y, w, h, cellSize, colorA, colorB)

Images:

drawImg(input, x, y, w, h) 
drawImg(input, sx, sy, sw, sh, dx, dy, dWidth, dHeight)
  • input can be a path, URL, Element, a string of SVG HTML

Lines:

ctx.line(px, py, x, y, dashPattern)
  • dashPattern is an optional array of lengths, [ dash, gap, dash, gap, .. ]

Maths helpers:

ctx.angleFromPoints(x1, x2, y1, y2) // returns an angle in degrees
ctx,angleToTarget(x1, y1, x2, y2)   // returns a counter-clockwise rotation from y-axis
ctx.clamp(x, min, max)              // returns a number, clamped between min and max
ctx.distance(x2, x1, y2, y1)        // returns a distance in pixels between two points
ctx.lerp(start, end, value)         // returns a number, linearly interpolated
ctx.inverseLerp(start, end, value)  // returns a number, reverse of above
ctx.random(min, max, useDecimal)    // returns a random number, useDecimal is boolean
ctx.randomFrom(array)               // returns a random item from the array
ctx.seededRandom(seed)              // returns a seeded random number generator function
ctx.toDeg(radians)                  // returns a radians value in degrees
ctx.toRad(degrees)                  // returns a degrees value in radians

Polygons:

ctx.polygon(points, dashPattern)      // e.g,  polygon([[x,y], [x,y], ..], [dash, gap, ..])
ctx.fillPolygon(points, dashPattern)
ctx.strokePolygon(points, dashPattern)

Polyshapes (hexagons, octogons, stars, etc)

ctx.polyshape(x, y, radius, numOfSides, degrees)
ctx.fillPolyshape(x, y, radius, numOfSides, degrees)
ctx.strokePolyshape(x, y, radius, numOfSides, degrees)

Rings (doughnuts):

ctx.ring(x, y, innerRadius, outerRadius)
ctx.fillRing(x, y, innerRadius, outerRadius)
ctx.strokeRing(x, y, innerRadius, outerRadius)

Rounded rectangles:

ctx.roundedRect(x, y, w, h, borderRadius)
ctx.fillRoundedRect(x, y, w, h, borderRadius)
ctx.strokeRoundedRect(x, y, w, h, borderRadius)

Spirals

ctx.spiral(x, y, rad, steps, rotation, lineWidth, stroke)
  • rotation is in degrees

Square:

ctx.square(x, y, w)

Stars:

ctx.star(x, y, radius, numOfSides, degrees)
ctx.fillStar(x, y, radius, numOfSides, degrees)
ctx.strokeStar(x, y, radius, numOfSides, degrees)

Triangles:

ctx.triangle(x, y, radius, degrees)
ctx.fillTriangle(x, y, radius, degrees)
ctx.strokeTriangle(x, y, radius, degrees)

Transforms:

ctx.rotateAt(x, y, degrees)

Styling:

// Set any style properties, all in one go
ctx.setStyle(obj) // obj can be { lineWidth: 4, fillStyle: 'yellow', ...etc }

Save canvas as image:

ctx.image.saveAs('filename') // save current canvas as PNG image 
ctx.image.toElement(img => console.log(img.src)) // the <img> src is base64 encoded data

Save canvas as video:

ctx.video.record() // optional params are: fps, mimeType, audioBitsPerSecond, videoBitsPerSecond
ctx.video.pause();
ctx.video.resume();
ctx.video.stop();
// now we can save the video to a file, or create a <video> element
ctx.video.saveAs('filename')
ctx.video.toElement(video => console.log(video.src)) // <video> src is Blob data

Ctx will try to create videos using these MIME-types, in this order, if none was given as 2nd param to ctx.video.record():

  • video/webm
  • video/webm;codecs=vp9
  • video/vp8
  • video/webm;codecs=vp8
  • video/webm;codecs=daala
  • video/webm;codecs=h264
  • video/mp4
  • video/mpeg

See examples/usage-Ctx.html for examples and more information.

Using the Geo module

The Geo add-on let's you make a simple world map, or draw to a canvas using latitude and longitude, rather than x, y pixel points.

It supports both Mercator and Robinson projected maps, and is only 1.6kb minified & gzipped.

It can work standalone, without Component being installed.

In browsers:

<script src="https://unpkg.com/@scottjarvis/component/dist/geo.min.js"></script>
<script>
// use it here
</script>

In ES6:

import { Geo } from '@scottjarvis/component';

// use it here

In NodeJS:

const { Geo } = require('@scottjarvis/component');

// use it here

To use Geo with Component, see examples/usage-Geo.html.

Usage:

Create a Robinson projected map:

const map = new Geo({
    projection: 'robinson',
    width: 400,
    height: 420,
    offsetX: 0,
    offsetY: 0,
});

..or create a Mercator projected map:

const map = new Geo({
    projection: 'mercator',
    width: 400,
    height: 420,
    // map bounds, in lat longs (optional - defaults to whole world)
    top: 85,
    bottom: -85,
    left: -180,
    right: 180,
});

Whichever map projection you use, you get these methods:

// get x,y pixel values from lat longs
const [x, y] = map.latLongToPx(lat, long)

// get lat longs from pixels (mercator only for now..)
const [lat, long] = map.pxToLatLong(x, y)

// calculate distances (in km)
const distance = map.getDistanceInKm(lat1, long1, lat2, long2)

// calculate distances (in pixels)
const distance = map.getDistanceInPx(lat1, long1, lat2, long2)

// convert distances
const km = map.milesToKm(num)
const miles = map.kmToMiles(num)

places = [ 
  { lat: 31.9873, long: 3.343252 }, 
  { lat: 24.2584, long: 1.334548 }, 
  // etc..
];

// list all places in the given array, nearest to furthest, from the given lat long
const list = map.getNearestTo({ lat: -51.34298, long: 2.379234 }, places)

// helpers
map.rKm     // earth radius in km
map.rMiles  // earth radius in miles

Here's an example map:

Robinson map

For a full usage example, see examples/usage-Geo.html.

Using the Chart module

The Chart add-on let's you draw charts & graphs to the canvas, using a chainable API similar to d3.

It's only 3.6kb, minified & gzipped.

It supports these chart types:

  • scatter charts
  • bubble charts
  • line charts
  • area charts (layered & stacked)
  • bar charts (horizontal & vertical)
  • grouped bar charts (horizontal & vertical)
  • stacked bar charts (horizontal & vertical)
  • candlestick charts
  • pie & doughnut charts
  • polar area charts
  • arc/gauge charts
  • gantt/timeline charts
  • waterfall charts
  • radial bar charts
  • lollipop charts
  • heatmaps
  • function plotting
  • mixed charts

It can work standalone, without Component being installed.

In browsers:

<script src="https://unpkg.com/@scottjarvis/component/dist/chart.min.js"></script>
<script>
// use it here
</script>

In ES6:

import { Chart } from '@scottjarvis/component';

// use it here

In NodeJS:

const { Chart } = require('@scottjarvis/component');

// use it here

Usage:

Here's how it works, generally:

  • define a canvas size
  • define the margins around your "chart area"
  • pass in some data to use
  • define X and Y axes:
    • min and max values of axis
    • labels and tick values
    • styling, positioning, etc
  • use the drawEach() method to draw your chart:
    • it loops over your data, giving access to each data point
    • each data point is "decorated" with various drawing methods:
      • data.bar({ opts }) - draw bars
      • data.line({ opts }) - draw lines and filled areas, smoothed or not
      • data.circle({ opts }) - draw circles and circle segments around the chart
      • data.pie({ opts }) - draw a segment of a full, single circle
      • data.arc({ opts }) - draw a segment of a single arc (partial circle)
      • data.candle({ opts }) - draw a candle stick (box and line, red or green)

You need only pass in the options/attributes you want to join to your data and ignore the others - each drawing method will try to work out the rest, based on your margins and axes settings. However, there as some positioning and styling options available for each drawing method.

Here's a minimal example, of a simple "candlestick" chart:

  // enable the add-on:
  Component.Ctx = Chart;

  // ..create a component as usual, 
  // ..now define it's view, where we draw our chart:

  Foo.view = (props, ctx) => {
    ctx.clear()

    .size(props.width, props.height) 

    .margin(40,80,170,80)  // top, bottom, left, right

    // Pass in your data, an array of objects for bar/pie/candle charts, or 
    // an object of arrays (more useful for grouped bar charts & line charts):
    .useData({
      'Dollars':
      [
        { year: 2000, open: 3, close: 5, low: 2, high: 6 },
        { year: 2001, open: 5, close: 6, low: 2, high: 6 },
        { year: 2002, open: 6, close: 3, low: 2, high: 4 },
        { year: 2003, open: 3, close: 4, low: 1, high: 8 },
        // ...
      ],
    })

    .xAxis({
      range: [1999,2007],
      scale: 1,
      label: "Years",
      tickLength: -3,
    })

    .yAxis({
      range: [0,500],
      scale: 5,
      label: "Dollars",
      tickLength: -3,
    })

    .drawEach(currency => {
      currency.forEach(data => {
        data.candle({
          open: data.open,
          close: data.close,
          high: data.high,
          low: data.low,
        })
      });
    });

  };

To make charts responsive, just re-render your charts when the size of their container element changes, making sure to pass in the new desired dimensions to ctx.size(). You might also want to adjust margins at this point.

Some very basic examples/demos:

Chart demos

To see examples of all supported chart types, see examples/.

Using the "React hooks" module

For more "React-like" patterns, you can import a standalone render method (~800 bytes) that's supposed to be used with some optional React-like "hooks" (~1.5kb), but without Component itself.

Features of render:

  • adds your HTML or component to the page
  • updates the page using DOM diffing, inside a debounced requestAnimationFrame
  • works nicely with the optional html add-on
  • works nicely with the optional hooks add-on
  • a React-like API in 2.3kb (inc all the hooks)
  • that's it

Usage:

import { render } from "@scottjarvis/component"

render(`<p>Hey</p>`, ".container")

Example without any "hooks" addons:

const liteComponent = props => {
  this.state = { ...this.state, ...props }
  return html`<div>...</div>`
}

// ..add to page using render
render(liteComponent({ ...someData }), '.container')

Example using "hooks":

  • Supported hooks: useState, useReducer, useEffect, useMemo, useCallback, useRef, useDeferred, useThrottle
import { render, html, hooks } from "@scottjarvis/component"

// import "useHooks", and the hooks you want to use
const { useHooks, useState } = hooks

const countUp = props => {
  [ count, setCount ] = useState(0)
  setCount(count + props)
  return html`<div>${count}</div>`
}

// this is required to "connect" the hooks to your component
countUp = useHooks(countUp);

// re-render to page, counting up each time
render(countUp(1), '.container')
render(countUp(1), '.container')
render(countUp(1), '.container')

Note, this "React-like" pattern uses the excellent getify/TNG-Hooks under the hood, but is less heavily tested than using new Component(), and htmel seems to have issues attaching event handlers :/ but it otherwise works well.

Using the devtools module

The optional devtools add-on provides a nice UI for inspecting and even editing your components directly in the page.

The devtools only works in the browser.

In browsers:

<script src="https://unpkg.com/@scottjarvis/component"></script>
<script src="https://unpkg.com/@scottjarvis/component/dist/devtools.min.js"></script>
<script>
  Component.devtools = devtools
  devtools.init();
</script>
<script>
// ..now define or import your components
</script>

It's a bit like React devtools but simpler:

  • Main Toolbar:
    • Choose component: click "Select component" button, then choose a component on the page
    • Choose layout: can switch between bottom (horizontal) view, and side (vertical) view
  • Overview tab:check a components current state and HTML
  • Details tab: view other info about the selected component
  • History tab: cycle through a components state history
  • Editor tab: edit a components view and styling

Contains modified versions of:

Devtools screenshots:

Vertical view:

Devtools - vertical view

Horizontal view:

Devtools - horizontal view

Making changes to Component

Look in src/, make any changes you like.

Rebuild to dist/ using the command npm run build

Changelog

1.3.3

  • fixed: more performant component styling:
    • only create <style> tags if:
      1. component styles are defined (using .style())
      2. component has a container element (was added to a page)
    • don't create <style> tags for child components:
      • put the styles in the parent components .style() instead
  • springTo add-on updated:
    • removed useless code
    • more consistent with tweenState:
      • added shouldSetState() callback
      • now no need to set the state yourself in onUpdate()
  • new: support using <canvas> for component views:
  • new optional add-ons:
    • onLoop
      • a fixed-interval loop, for time-dependant stuff (physics, games, etc)
      • uses requestAnimationFrame, or setTimeout as a fallback
      • only 1kb minified & gzipped
    • Ctx
      • extends the <canvas> 2d context with lots of extra features
      • works in browser only, unless canvas is polyfilled in NodeJS
      • only 4.4kb minified & gzipped
  • updated README

1.3.2

  • new optional add-ons:
    • useAudio
      • easily add dynamic audio capabilities to your components
      • uses Web Audio API, only works in browser
    • onScroll
      • easily power/drive animations based on scroll values
      • uses scroll event, only works in browser

1.3.1

  • build a "tree-shakable" ES Module too:
    • added new file src/index.esm.js
    • updated the rollup configs
    • npm run build now also creates dist/index.esm.js
    • added a "module" field in package.json, that points to dist/index.esm.js

1.3.0

  • new optional add-ons:
    • html JSX-like HTML templating, returns templates as a String
    • htmel JSX-like HTML templating, returns templates as HTMLObject (browser) or String (Node)
    • storage - persistent state between page refreshes (browser) or script invocations (Node)
    • devtools - easier debugging of your components (browser only)
  • updates to src/component.js:
    • fixed: in NodeJS, debounced logging now falls back to using setTimeout, if needed
    • added: support for all new add-ons
    • added: allow view to be HTML Object, not only String
    • added: App.actionsList property - the list of defined actions functions
    • added: App() will return the container (an HTML Element)
      • App({...}) still returns App (for chainable actions, etc)
    • added: App.html property - alias of App.container (returns an HTML Element)
  • update docs:
    • re-write README and examples to show re-usable components
    • add the new add-ons to README and examples
  • updated build configs

1.2.0

  • doing Foo = new Component(someState) now returns a function, not an object
  • the function returned calls setState in its constructor
    • this means you can now set state using a new syntax - via the constructor: Foo({ count: 1 })
    • this in turns allows for nicer nested stateful components:
      • nested stateful components can now use the same syntax as stateless (plain function) components
  • update in tweenState: allow shouldSetState to be boolean (not only func that returns boolean)
  • updated examples, README, package.json, dist/, etc

1.1.12

  • new feature: state validation
    • simply pass a schema as the 2nd param when creating a new component
    • then call setState() as usual - Component will throw an error if the state isn't valid
    • requires @scottjarvis/validator to be installed (~330 bytes minified & gzipped)
    • see @scottjarvis/validator for more usage info
  • updated README

1.1.11

  • updated rollup deps and rebuilt in dist/
  • nothing else

1.1.10

1.1.9

  • new feature: "middleware"
    • define an array of functions as myComponent.middleware = [ someFunc, otherFunc ]
    • each function will be run at the end of setState()
  • updated README, package.json, etc

1.1.8

  • fixes in package.json

1.1.7

  • new feature: added an event emitter
    • if emitter is installed, component "actions" will emit an event
    • other components can listen to it with myComponent.on('actionName', (props) => { ... })
      • props will contain the latest state of the component that emitted the event
  • added src/emitter.js, implemented as an optional, extra module
  • updated build process to also build dist/emitter.min.js
  • added examples and updated README
    • added examples/usage-emitter.js

1.1.6

  • added src/tweenState.js and related support files (src/raf.js, src/easings.js)
  • new build process:
    • added rollup to bundle the source files into dist/ (see rollup.config.js)
    • added src/index.js to allow easier importing of multiple modules, if desired
  • updated package.json: index.js is the file imported in Node by default
  • now requires Node 10 or later (was Node 8)
  • updated README
    • updated install instructions
    • added tweenState usage info

1.1.5

  • fixed: scoped CSS sometimes not applied on page load:
    • here is the new implementation:
      • prefix component CSS with the containers existing id or class, if any
      • fall back to previous behaviour only if container has no id or class:
        • add unique class to container
        • prefix component CSS with that same unique class
  • better performance:
    • when debug is true, don't console log state history on state change
    • to see the state history, access App.log yourself instead
  • see examples/usage-in-browser.html

1.1.4

  • new: automatic "scoping" of component CSS
  • prevents component styles affecting other parts of page
  • simplifies writing CSS for your components:
    • removes the need to define unique namespaces (IDs, classes) in your component CSS
  • you can disable automatic CSS scoping like so: App.scopedCss = false
  • see examples/usage-in-browser.html
  • README and example updates

1.1.3

  • better performance:
    • only access/update the DOM from inside a requestAnimationFrame
    • only record state history if .debug is true
    • set .debug to false by default
  • improved README:
    • added info about component settings (reactive, debug)

1.1.2

  • fix: can re-render component to new container
  • fix: can render multiple components to page
  • fix: can call setstate() before defining .view()
  • fix: can call render() before defining .view() (pointless for now)
  • fix: don't attempt any styling if .style() not defined

1.1.1

  • README fixes

1.1.0

  • improved performance:
    • added DOM diffing, using BAD-DOM
    • only re-render .view() if needed
    • only re-render <style> if needed
  • smaller filesize:
    • smaller method names:
      • .forward() => .ff()
      • .rewind() => .rw()
      • .history => .log
    • removed:
      • .undo() and .redo() (use .rw(1), and .ff(1))
  • better indentation for server-side rendering
  • minify CSS added to components <style> tag
  • updated examples
  • updated README

1.0.0

  • initial release

Future improvements

  • Better SSR

    • an toEnvelope() add-on method, to render components as JSON envelopes:
      • render as JSON
      • include view, actions & style as stringified HTML, CSS and JS
    • pass in config to toString(), to choose what to render:
      • the component itself (c)
      • actions
      • methods
      • styles
      • views
  • Better game support:

    • a tick() addon (time-based animation):
      • a gameloop with ticker that emits "ticks" at set intervals (always 30 times/second, for example)
      • rendering de-coupled from gameloop (fps can vary)
    • render to canvas
      • define views as function which receives props and draws to a canvas
  • Universal rendering (add-ons):

  • Support for custom elements/Web Components

Related projects:

DOM diffing (no virtual-DOM)

  • BAD-DOM - a tiny (800 bytes) lazy DOM diffing function (used by this project)
  • set-dom - tiny (<1kb) dom diffing library
  • morphdom - a nice, fast DOM differ (fast, but about 15kb)

JSX-like syntax in Template Literals (alternatives to html/htmel)

  • developit/htm - JSX-like syntax in ES6 templates, generates vdom from Template Literals
  • htl- by Mike Bostock, events, attr/styles as object, other syntactic sugar, 2kb
  • zspecza/common-tags: html function - makes it easier to write properly indented HTML in your templates

Template strings to real DOM nodes

  • html-dom-parser - works in Node and browser
  • htl- by Mike Bostock, events, attr/styles as object, other syntactic sugar, 2kb
  • developit/htm - JSX-like syntax in ES6 templates, generates vdom from Template Literals
  • fast-html-parser - generate a simplified DOM tree from string, with basic element querying
  • domify-template-strings - get real DOM nodes from HTML template strings, browser only, no SSR
  • genel - create real DOM nodes from template string, browser only (no SSR), 639 bytes

Template strings to VDOM and VDOM diffing

  • snabby - use HTML template strings to generate vdom, use with snabbdom
  • snabbdom - the vdom diffing library used by Vue.js
  • petit-dom - tiny vdom diffing and patching library
  • hyperx - tagged templates to vdom (used by nanohtml

CSS in JS

  • zserge.com/posts/css-in-js - 200 bytes scoped CSS
  • twirl - a tag for template literals, turns CSS into objects
  • /(^|,)[\.#a-z][a-zA-Z0-9_\-:]*/gm - match first part of CSS selector in a CSS string, useful for scoping (see https://regexr.com/524pu)
  • document.styleSheets[0].cssRules[0].style.cssText.split(/\;[\s.]/).slice(0,-1) - convert cssText to array, each item like "margin:0 auto;"
  • str.replace(/([A-Z])/g, "-$1").toLowerCase() - camelCase to hyphen-case converter
  • var cssClassMatchRegex = new RegExp(/\.(-?[_a-zA-Z]+[_a-zA-Z0-9-]*)(?![^\{]*\})/g) - regex to match all classes in a string (useful for "scoping")
  • Math.random().toString(36).split(".")[1] - unique ID generator (create a unique id for each new component)
  • cssString.replace(/\n/g, '').replace(/\s\s+/g, ' ') - minify string of CSS

Animation (tweening)

  • anime - excellent, versatile lightweight animation library
  • popmotion - another great animation library
  • react-tween-state - tween from one state to another (where I got tweenState idea from)
  • phena - a petit tweening engine based on requestAnimationFrame (adapted version inside src/tweenState.js)
  • easing functions - excellent set of easing functions (used by this project in src/easings.js)
  • react-tweenful - tweening and animation for React
  • react-state-stream - instead of one state, set all the states that will ever be, aka a lazy state stream

Animation ("spring-based")

  • see a nice list here: #33

Generate spring-based CSS animations

Routers

  • router - a 2kb isomorphic router & web server, supports express middleware, runs in browsers, lambdas, NodeJS.

Other tiny component libraries

  • yo-yo - tiny UI library, DOM diffing (uses morphdom), Event handling, ES6 tagged template literals
  • choojs - A 4kb framework for creating sturdy frontend applications, uses yo-yo
  • hyperapp - The tiny framework for building web interfaces, React-like, uses h(), VDOM, etc
  • preact - a 3.1kb alternative to React.js
  • nanohtml - 8kb, uses vdom, can attach event listers, can do SSR

Further reading