OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 /** |
| 6 * @fileoverview This is a simple template engine inspired by JsTemplates |
| 7 * optimized for i18n. |
| 8 * |
| 9 * It currently supports two handlers: |
| 10 * |
| 11 * * i18n-content which sets the textContent of the element |
| 12 * |
| 13 * <span i18n-content="myContent"></span> |
| 14 * i18nTemplate.process(element, {'myContent': 'Content'}); |
| 15 * |
| 16 * * i18n-values is a list of attribute-value or property-value pairs. |
| 17 * Properties are prefixed with a '.' and can contain nested properties. |
| 18 * |
| 19 * <span i18n-values="title:myTitle;.style.fontSize:fontSize"></span> |
| 20 * i18nTemplate.process(element, { |
| 21 * 'myTitle': 'Title', |
| 22 * 'fontSize': '13px' |
| 23 * }); |
| 24 */ |
| 25 |
| 26 var i18nTemplate = (function() { |
| 27 /** |
| 28 * This provides the handlers for the templating engine. The key is used as |
| 29 * the attribute name and the value is the function that gets called for every |
| 30 * single node that has this attribute. |
| 31 * @type {Object} |
| 32 */ |
| 33 var handlers = { |
| 34 /** |
| 35 * This handler sets the textContent of the element. |
| 36 */ |
| 37 'i18n-content': function(element, attributeValue, obj) { |
| 38 element.textContent = obj[attributeValue]; |
| 39 }, |
| 40 |
| 41 /** |
| 42 * This is used to set HTML attributes and DOM properties,. The syntax is: |
| 43 * attributename:key; |
| 44 * .domProperty:key; |
| 45 * .nested.dom.property:key |
| 46 */ |
| 47 'i18n-values': function(element, attributeValue, obj) { |
| 48 var parts = attributeValue.replace(/\s/g, '').split(/;/); |
| 49 for (var j = 0; j < parts.length; j++) { |
| 50 var a = parts[j].match(/^([^:]+):(.+)$/); |
| 51 if (a) { |
| 52 var propName = a[1]; |
| 53 var propExpr = a[2]; |
| 54 |
| 55 // Ignore missing properties |
| 56 if (propExpr in obj) { |
| 57 var value = obj[propExpr]; |
| 58 if (propName.charAt(0) == '.') { |
| 59 var path = propName.slice(1).split('.'); |
| 60 var object = element; |
| 61 while (object && path.length > 1) { |
| 62 object = object[path.shift()]; |
| 63 } |
| 64 if (object) { |
| 65 object[path] = value; |
| 66 // In case we set innerHTML (ignoring others) we need to |
| 67 // recursively check the content |
| 68 if (path == 'innerHTML') { |
| 69 process(element, obj); |
| 70 } |
| 71 } |
| 72 } else { |
| 73 element.setAttribute(propName, value); |
| 74 } |
| 75 } else { |
| 76 console.warn('i18n-values: Missing value for "' + propExpr + '"'); |
| 77 } |
| 78 } |
| 79 } |
| 80 } |
| 81 }; |
| 82 |
| 83 var attributeNames = []; |
| 84 for (var key in handlers) { |
| 85 attributeNames.push(key); |
| 86 } |
| 87 var selector = '[' + attributeNames.join('],[') + ']'; |
| 88 |
| 89 /** |
| 90 * Processes a DOM tree with the {@code obj} map. |
| 91 */ |
| 92 function process(node, obj) { |
| 93 var elements = node.querySelectorAll(selector); |
| 94 for (var element, i = 0; element = elements[i]; i++) { |
| 95 for (var j = 0; j < attributeNames.length; j++) { |
| 96 var name = attributeNames[j]; |
| 97 var att = element.getAttribute(name); |
| 98 if (att != null) { |
| 99 handlers[name](element, att, obj); |
| 100 } |
| 101 } |
| 102 } |
| 103 } |
| 104 |
| 105 return { |
| 106 process: process |
| 107 }; |
| 108 })(); |
OLD | NEW |