attrs.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*!
  2. * Jade - nodes - Attrs
  3. * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca>
  4. * MIT Licensed
  5. */
  6. /**
  7. * Module dependencies.
  8. */
  9. var Node = require('./node'),
  10. Block = require('./block');
  11. /**
  12. * Initialize a `Attrs` node.
  13. *
  14. * @api public
  15. */
  16. var Attrs = module.exports = function Attrs() {
  17. this.attrs = [];
  18. };
  19. /**
  20. * Inherit from `Node`.
  21. */
  22. Attrs.prototype.__proto__ = Node.prototype;
  23. /**
  24. * Set attribute `name` to `val`, keep in mind these become
  25. * part of a raw js object literal, so to quote a value you must
  26. * '"quote me"', otherwise or example 'user.name' is literal JavaScript.
  27. *
  28. * @param {String} name
  29. * @param {String} val
  30. * @param {Boolean} escaped
  31. * @return {Tag} for chaining
  32. * @api public
  33. */
  34. Attrs.prototype.setAttribute = function(name, val, escaped){
  35. this.attrs.push({ name: name, val: val, escaped: escaped });
  36. return this;
  37. };
  38. /**
  39. * Remove attribute `name` when present.
  40. *
  41. * @param {String} name
  42. * @api public
  43. */
  44. Attrs.prototype.removeAttribute = function(name){
  45. for (var i = 0, len = this.attrs.length; i < len; ++i) {
  46. if (this.attrs[i] && this.attrs[i].name == name) {
  47. delete this.attrs[i];
  48. }
  49. }
  50. };
  51. /**
  52. * Get attribute value by `name`.
  53. *
  54. * @param {String} name
  55. * @return {String}
  56. * @api public
  57. */
  58. Attrs.prototype.getAttribute = function(name){
  59. for (var i = 0, len = this.attrs.length; i < len; ++i) {
  60. if (this.attrs[i] && this.attrs[i].name == name) {
  61. return this.attrs[i].val;
  62. }
  63. }
  64. };