JSPM

nanomap

1.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q29761F
  • License MIT

Functionally map data into DOM component instances

Package Exports

  • nanomap

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nanomap) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

nanomap stability

npm version build status downloads js-standard-style

Functionally map data into stateful nanocomponents.

Usage

var Nanomap = require('nanocomponent/map')
var YoutubeComponent = require('youtube-component')
var TwitterComponent = require('twitter-component')
var OEmbedComponent = require('oembed-component')
var simpleMapper = new Nanomap(opts, TwitterComponent)
// OR
var complexMapper = new Nanomap(opts, {
  'video': YoutubeComponent,
  'tweet': TwitterComponent,
  ...,
  default: OEmbedComponent
})

[{
  id: 'foo123',
  opts: { color: 'blue' },
  arguments: {an: 'arg'} // Non-array types passed in as the first argument
}].map(simpleMapper) // Array of rendered DOM nodes from homogeneous components

[{
  id: 'foo123',
  type: 'tweet',
  arguments: ['tweet-url'] // component.render.apply(component, arguments)
}].map(complexMapper) // Array of rendered DOM nodes from a heterogeneous set of components

Installation

$ npm install nanomap

API

Nanomap = require('nanomap)

Import Nanomap component class.

mapper = new Nanomap([opts], Component)

mapper = Nanomap([opts], { type: Component, [default: Component]})

Create a new mapper instance that will render data into component instances.

opts include:

{
  gc: true // clean up unused instances when mapped over
}

See examples for more details.

License

MIT