Copyright (c) 2009 Nick Fitzgerald - http://fitzgeraldnick.com/ - MIT licensed
Note: All releases are minified, to get the latest development version grab a clone from http://github.com/fitzgen/tempest/tree/master
$(document).append(
$.tempest("<p>Hello, {{ name }}!</p>", {
name: "World"
})
);
I was not satisfied with the other templating plugins available, so I wrote my own. This templating system is very simple and enforces the seperation of form and function, or HTML and JS. This provides a great abstraction layer so that you can write a template ad then promptly remove the mental overhead of rendering js objects to HTML.
Other templating languages just build and execute function blocks with strings. Any type of js logic you could want is included and evaluated. For some people, this may be the freedom that they want.
On the other hand, Tempest will only fill in values and iterate over arrays for you. This forces you to remove any programming logic from the templates and separate form from function. This type of templating philosophy can also be seen in the Django templating language.
The other big thing, for me, is that iteration is handled seamlessly. Just pass an array of objects to tempest instead of a single object and it will return a jquery element array.
To get involved, ask questions, or recieve help with Tempest, you can email the Tempest mailing list: tempest@librelist.com
Note: The API is for the most current release only, there may be slight differences in older releases.
Setter:
$.tempest("post", "<li><a href='{{ url }}'>{{ title }}</a></li>");
// returns string: "<li><a href='{{ url }}'>{{ title }}</a></li>"
Getter:
$.tempest("post");
// returns string: "<li><a href='{{ url }}'>{{ title }}</a></li>"
For example, assuming this is in the html when $(document).ready() fires:
<textarea title="new-post" class="tempest-template" style="display:none">
<li class='new'><a href='{{ url }}'>{{ title }}</a></li>
</textarea>
Then you could access that template just as you would access any other template that you manually created:
$.tempest("new-post");
// returns string: "<li class='new'><a href='{{ url }}'>{{ title }}</a></li>"
Note: $.tempest will remove the textarea from the DOM after storing the contents in the template cache.
Get all templates Tempest has stored by passing no arguments:
$.tempest();
// returns array of pairs: [
// ["post",
// "<li><a href='{{ url }}'>{{ title }}</a></li>"],
// ["new-post",
// "<li class='new'><a href='{{ url }}'>{{ title }}</a></li>"]
// ]
Render an object to an existing template:
$.tempest("post", {
title: "My Blog",
url: "http://fitzgeraldnick.com/weblog/",
});
// returns jQuery: [ <li><a href='http://fitzgeraldnick.com/weblog/'>My Blog</a></li> ]
Render an array of objects to an existing template
var arr = [{ title: "My Blog", url: "http://fitzgeraldnick.com/weblog/" },
{ title: "Google", url: "http://google.com/" },
{ title: "Hacker News", url: "http://news.ycombinator.com/" }];
$.tempest("post", arr);
// returns jQuery: [ <li>, <li>, <li> ]
Render an object (or array of objects) to a one-time-use template:
var one-time-template = "<span>{{ title }}: {{ content }}</span>";
$.tempest(one-time-template, {
"title": "Example",
"content": "Hello World!",
});
// returns jQuery: [ <span>Example: Hello World!</span> ]
Tempest implements very simple boolean logic. Just if's, no else's:
var template = "{% if is_active %}<p>This record is active.</p>{% endif %}";
$.tempest(template, {
is_active: true
});
// returns jQuery: [ <p>This record is active.</p> ]
All tags are stored in $.tempest.tags. Tags have a couple things to work with:
The "args" property is set before render:
{% tag_type arg1 arg2 foo bar %}
The "args" property would be set to
["arg1", "arg2", "foo", "bar"]
in this example. The tag's render method could look them up in the context object, or could do whatever it wanted to do with it.
A "subNodes" property which is an array of all the nodes between the start tag and it's corresponding {% end... %} tag. NOTE: This property is only set for a block if it has the "expectsEndTag" property set to true.
Every block tag should have a "render" method that takes one argument: a context object. It MUST return a string.
Here is an example tag that filters out profanity from the variables passed to it before printing them:
$.tempest.tags.filter = {
expectsEndTag: false,
render: function (context) {
var rendered = [];
for (var i = 0; i < this.args.length; i++) {
rendered.push(
context[this.args[i]].replace(/shit/gi, "#!$%")
);
}
return rendered.join(" ");
}
};
var template = "<p>No profanity here: {% filter bad_word %}</p>";
$.tempest(template, { bad_word: "shit" });
// returns jQuery: [ <p>No profanity here: #!$%</p> ]
For another reference, see the implementation of the if tag here: http://github.com/fitzgen/tempest/blob/master/jquery.tempest.js#L69
Access an object's attributes with the dot notation:
var one-time-template = "<p>My name is <em>{{ me.full_name }}</em></p>";
$.tempest(one-time-template, {
"me": {
"full_name": "Nick Fitzgerald"
}
});
// returns jQuery: [ <p>My name is <em>Nick Fitzgerald</em></p> ]