block.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*!
  2. * Jade - nodes - Block
  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. /**
  11. * Initialize a new `Block` with an optional `node`.
  12. *
  13. * @param {Node} node
  14. * @api public
  15. */
  16. var Block = module.exports = function Block(node){
  17. this.nodes = [];
  18. if (node) this.push(node);
  19. };
  20. /**
  21. * Inherit from `Node`.
  22. */
  23. Block.prototype.__proto__ = Node.prototype;
  24. /**
  25. * Block flag.
  26. */
  27. Block.prototype.isBlock = true;
  28. /**
  29. * Replace the nodes in `other` with the nodes
  30. * in `this` block.
  31. *
  32. * @param {Block} other
  33. * @api private
  34. */
  35. Block.prototype.replace = function(other){
  36. other.nodes = this.nodes;
  37. };
  38. /**
  39. * Pust the given `node`.
  40. *
  41. * @param {Node} node
  42. * @return {Number}
  43. * @api public
  44. */
  45. Block.prototype.push = function(node){
  46. return this.nodes.push(node);
  47. };
  48. /**
  49. * Check if this block is empty.
  50. *
  51. * @return {Boolean}
  52. * @api public
  53. */
  54. Block.prototype.isEmpty = function(){
  55. return 0 == this.nodes.length;
  56. };
  57. /**
  58. * Unshift the given `node`.
  59. *
  60. * @param {Node} node
  61. * @return {Number}
  62. * @api public
  63. */
  64. Block.prototype.unshift = function(node){
  65. return this.nodes.unshift(node);
  66. };
  67. /**
  68. * Return the "last" block, or the first `yield` node.
  69. *
  70. * @return {Block}
  71. * @api private
  72. */
  73. Block.prototype.includeBlock = function(){
  74. var ret = this
  75. , node;
  76. for (var i = 0, len = this.nodes.length; i < len; ++i) {
  77. node = this.nodes[i];
  78. if (node.yield) return node;
  79. else if (node.textOnly) continue;
  80. else if (node.includeBlock) ret = node.includeBlock();
  81. else if (node.block && !node.block.isEmpty()) ret = node.block.includeBlock();
  82. if (ret.yield) return ret;
  83. }
  84. return ret;
  85. };
  86. /**
  87. * Return a clone of this block.
  88. *
  89. * @return {Block}
  90. * @api private
  91. */
  92. Block.prototype.clone = function(){
  93. var clone = new Block;
  94. for (var i = 0, len = this.nodes.length; i < len; ++i) {
  95. clone.push(this.nodes[i].clone());
  96. }
  97. return clone;
  98. };