0.6.0 • Published 5 years ago

simplatejs v0.6.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

SimplateJS

SimplateJS is a logicless templating system for JavaScript. It weighs in at under 1KB and can be used when the big guys are way to much overhead or you just need something... well, simple. There are no external dependencies. Some of this funcitonality can be duplicated using tagged template literals.

Changelog

  • 0.6.0 :
    • Now works when installed via npm.
  • 0.5.0 :
    • Initial try at adding to npm... which failed miserably.
  • 0.4.0 :
    • Unrecognized values are now left in templates instead of removed
    • "get" by Id now verifys that the 'document' object exists before trying to select
    • "set" method now returns the template
  • 0.3.0 :
    • Added support for "get" by ID
    • Added automated QUnit test
    • Added new has method
  • 0.2.0 :
    • Added support for AMD/CommonJS
    • Added QUnit tests
  • 0.1.0 : Initial commit

Examples

For complete documentation, you can check out the wiki.

Link to SimplateJS in your HTML:

<script src="/path/to/simplate.min.js"></script>

SimplateJS has three methods: get , set and has.

Create a new template using the set method:

simplate.set( 'table.tr', '<tr><td>{{firstname}}</td><td>{{lastname}}</td></tr>' );

If you are creating the template for the first time and want to immediately access it:

var tabletr = simplate.set( 'table.tr', '<tr><td>{{firstname}}</td><td>{{lastname}}</td></tr>' );
// tabletr = '<tr><td>{{firstname}}</td><td>{{lastname}}</td></tr>'
// this works the same as the "basic" get method

Check to see if a template exists using the has method:

simplate.has( 'table.tr');
// true

There are four ways to use the get method. Manipulate the template manually (basic):

var results = simplate.get('table.tr');
console.log( results );
//<tr><td>{{firstname}}</td><td>{{lastname}}</td></tr>

Parse a single data object:

var results = simplate.get( 'table.tr', {'firstname' : 'John', 'lastname' : 'Doe' } );
console.log( results );
// <tr><td>John</td><td>Doe</td></tr>

Parse multiple data objects by passing an array of objects:

// Sample data from API
var data = [
 {'firstname' : 'John', 'lastname' : 'Doe' },
 {'firstname' : 'Jane', 'lastname' : 'Doe' },
 {'firstname' : 'Jim', 'lastname' : 'Doe' }
];
var results = simplate.get( 'table.tr', data );
console.log( results );
// <tr><td>John</td><td>Doe</td></tr>
// <tr><td>Jane</td><td>Doe</td></tr>
// <tr><td>Jim</td><td>Doe</td></tr>

Read the template from an HTML ID.

<script type="text/template" id="tableRow">
  <tr><td>{{firstname}}</td><td>{{lastname}}</td></tr>
</script>
var results = simplate.get( '#tableRow', { 'firstname' : 'John', 'lastname' : 'Doe' } );
console.log( results );
// <tr><td>John</td><td>Doe</td></tr>

NOTE: As of v0.4.0 unrecognized values are left in the template. This allows the templating functionality to be used recursively like so:

// Assume data object from previous example
simplate.set( 'table', '<table><thead>{{thead}}</thead><tbody>{{tbody}}</tbody></table>' );
var thead = simplate.set( 'table.thead', '<tr><th>First Name</th><th>Last Name</th></tr>' );
var results = simplate.get( 'table.tr', data ); // previous example <tr><td>John</td><td>Doe</td></tr> etc
results = simplate.get( 'table', { 'tbody' : results, 'thead': thead } );
console.log( results );
// <table>
// <thead><tr><th>First Name</th><th>Last Name</th></tr></thead>
// <tbody>
// <tr><td>John</td><td>Doe</td></tr>
// ...
// <tbody>
// <table>

TODO's

  • Add tests Added QUnit tests
  • Add CommonJS , AMD support Added support via UMD
  • Publish on NPM/Bower
  • Update documentation for use in Node/CommonJS

More Info

Original article I wrote about this: http://garystorey.com/2015/02/24/super-simple-javascript-templating/

License

Released under MIT license