meatwallace:looper

Dynamically render an array of Blaze templates from a reactive data source


License
Unlicense
Install
meteor add meatwallace:looper@=0.2.4

Documentation

Looper

Table of Contents

  1. Description
  2. Installation
  3. Usage
  4. Roadmap
  5. Changelog
  6. Contributing
  7. License

Description

Dynamically render an array of Blaze templates from a reactive data source. Supports nested looping and mapping reactive variables to child templates.

Demo

Setup

meteor add meatwallace:looper

Usage

Create an array containing valid data objects

structure = [{
  type: 'templateName',
  data: {
    dataToPass: 'toTheTemplate'
    moreData: 'toSend'
  }
},
{
  type: 'looper', // nested loop
  data: {
    variables: [{ // array of ReactiveVar's to make
      name: 'reactiveVar', // name of ReactiveVar
      value: 'A reactive variable' // default value
    }],
    components: [{
      type: 'templateName',
      data: {
        dependencies: [{ // array of variables we want from our parent template
          name: 'templateVar' // name of variable on this template
          value: 'reactiveVar' // name of ReactiveVar we want
        }]
      }
    }, {
      type: 'templateName',
      data: {
        templateVar: 'A non reactive variable'
      }
    }
  }
}]

Call our template with our data (from a helper)

<template name="example">
  {{>looper structure}}
</template>

Roadmap

  • Rewrite with ES6
  • Implement primary loop to take initial data object
  • Tests w/ CI

Changelog

CHANGELOG.md

Contributing

Open a PR!

License

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org/