/tags/jsdoc_toolkit-1.3.3/app/JsPlate.js
JavaScript | 130 lines | 107 code | 6 blank | 17 comment | 1 complexity | 678930aa44744eb9ccd1bde037ec6243 MD5 | raw file
- /**
- * @fileOverview
- * @name JsPlate
- * @author Michael Mathews micmath@gmail.com
- * @url $HeadURL: http://jsdoc-toolkit.googlecode.com/svn/tags/jsdoc_toolkit-1.3.3/app/JsPlate.js $
- * @revision $Id: JsPlate.js 213 2007-08-22 10:21:50Z micmath $
- * @license <a href="http://en.wikipedia.org/wiki/MIT_License">X11/MIT License</a>
- * (See the accompanying README file for full details.)
- */
- /**
- * @class A lightweight template engine for JavaScript.
- * @constructor
- * @author Michael Mathews <a href="mailto:micmath@gmail.com">micmath@gmail.com</a>
- * @param {string} template
- */
- JsPlate = function(template) {
- this.template = IO.readFile(template);
- this.code = "";
- this.parse();
- }
- /** Converts a template into evalable code. */
- JsPlate.prototype.parse = function() {
- this.template = this.template.replace(/\{#[\s\S]+?#\}/gi, "");
- this.code = "var output=``"+this.template;
- this.code = this.code.replace(
- /<for each="(.+?)" in="(.+?)"(?: sortby="(.+?)")?>/g,
- function (match, eachName, inName, sortby) {
- if (!sortby) sortby = "asis";
-
- return "``; var $"+eachName+"_keys = "+sortby+"("+inName+"); for(var $"+eachName+"_i = 0; $"+eachName+"_i < $"+eachName+"_keys.length; $"+eachName+"_i++) { var $"+eachName+"_last = ($"+eachName+"_i == $"+eachName+"_keys.length-1); var $"+eachName+"_key = $"+eachName+"_keys[$"+eachName+"_i]; var "+eachName+" = "+inName+"[$"+eachName+"_key]; output+=``";
- }
- );
- this.code = this.code.replace(/<if test="(.+?)">/g, "``; if ($1) { output+=``");
- this.code = this.code.replace(/<\/(if|for)>/g, "``; }; output+=``");
- this.code = this.code.replace(
- /\{\+\s*([\s\S]+?)\s*\+\}/gi,
- function (match, code) {
- code = code.replace(/"/g, "``"); // prevent qoute-escaping of inline code
- code = code.replace(/(\r?\n)/g, " ");
- return "``+"+code+"+``";
- }
- );
- this.code = this.code.replace(
- /\{!\s*([\s\S]+?)\s*!\}/gi,
- function (match, code) {
- code = code.replace(/"/g, "``"); // prevent qoute-escaping of inline code
- code = code.replace(/(\r?\n)/g, " ");
- return "``; "+code+"; output+=``";
- }
- );
- this.code = this.code+"``;";
- this.code = this.code.replace(/(\r?\n)/g, "\\n");
- this.code = this.code.replace(/"/g, "\\\"");
- this.code = this.code.replace(/``/g, "\"");
- }
- /**
- * @private
- */
- JsPlate.prototype.toCode = function() {
- return this.code;
- }
- /**
- * @private
- * @static
- * @memberOf JsPlate
- */
- JsPlate.keys = function(obj) {
- var keys = [];
- if (obj.constructor.toString().indexOf("Array") > -1) {
- for (var i = 0; i < obj.length; i++) keys.push(i);
- }
- else {
- for (var i in obj) { keys.push(i); }
- }
- return keys.sort();
- };
- /**
- * @private
- * @static
- * @memberOf JsPlate
- */
- JsPlate.values = function(obj) {
- var values = [];
- if (obj.constructor.toString().indexOf("Array") > -1) {
- for (var i = 0; i < obj.length; i++) values.push(obj[i]);
- }
- else {
- for (var i in obj) { values.push(obj[i]); }
- }
- return values.sort();
- };
- /**
- * @private
- * @static
- * @memberOf JsPlate
- */
- JsPlate.asis = function(obj) {
- var keys = [];
- if (obj.constructor.toString().indexOf("Array") > -1) {
- for (var i = 0; i < obj.length; i++) keys.push(i);
- }
- else {
- for (var i in obj) { keys.push(i); }
- }
- return keys;
- };
- /**
- * Return the output. This must be called after parse()
- * @param {object} data What shall represent the "data" in your template.
- * @return {string}
- */
- JsPlate.prototype.process = function(data) {
- var keys = JsPlate.keys;
- var values = JsPlate.values;
- var asis = JsPlate.asis;
- eval(this.code);
- return output;
- //print(this.code)
- }