declaration.js 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. (function() {
  2. var Browsers, Declaration, Prefixer, utils, vendor,
  3. __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
  4. __hasProp = {}.hasOwnProperty;
  5. Prefixer = require('./prefixer');
  6. Browsers = require('./browsers');
  7. vendor = require('postcss/lib/vendor');
  8. utils = require('./utils');
  9. Declaration = (function(_super) {
  10. __extends(Declaration, _super);
  11. function Declaration() {
  12. return Declaration.__super__.constructor.apply(this, arguments);
  13. }
  14. Declaration.prototype.check = function(decl) {
  15. return true;
  16. };
  17. Declaration.prototype.prefixed = function(prop, prefix) {
  18. return prefix + prop;
  19. };
  20. Declaration.prototype.normalize = function(prop) {
  21. return prop;
  22. };
  23. Declaration.prototype.otherPrefixes = function(value, prefix) {
  24. var other, _i, _len, _ref;
  25. _ref = Browsers.prefixes();
  26. for (_i = 0, _len = _ref.length; _i < _len; _i++) {
  27. other = _ref[_i];
  28. if (other === prefix) {
  29. continue;
  30. }
  31. if (value.indexOf(other) !== -1) {
  32. return true;
  33. }
  34. }
  35. return false;
  36. };
  37. Declaration.prototype.set = function(decl, prefix) {
  38. decl.prop = this.prefixed(decl.prop, prefix);
  39. return decl;
  40. };
  41. Declaration.prototype.needCascade = function(decl) {
  42. return decl._autoprefixerCascade || (decl._autoprefixerCascade = this.all.options.cascade !== false && decl.style('before').indexOf('\n') !== -1);
  43. };
  44. Declaration.prototype.maxPrefixed = function(prefixes, decl) {
  45. var max, prefix, _i, _len;
  46. if (decl._autoprefixerMax) {
  47. return decl._autoprefixerMax;
  48. }
  49. max = 0;
  50. for (_i = 0, _len = prefixes.length; _i < _len; _i++) {
  51. prefix = prefixes[_i];
  52. prefix = utils.removeNote(prefix);
  53. if (prefix.length > max) {
  54. max = prefix.length;
  55. }
  56. }
  57. return decl._autoprefixerMax = max;
  58. };
  59. Declaration.prototype.calcBefore = function(prefixes, decl, prefix) {
  60. var before, diff, i, max, _i;
  61. if (prefix == null) {
  62. prefix = '';
  63. }
  64. before = decl.style('before');
  65. max = this.maxPrefixed(prefixes, decl);
  66. diff = max - utils.removeNote(prefix).length;
  67. for (i = _i = 0; 0 <= diff ? _i < diff : _i > diff; i = 0 <= diff ? ++_i : --_i) {
  68. before += ' ';
  69. }
  70. return before;
  71. };
  72. Declaration.prototype.restoreBefore = function(decl) {
  73. var lines, min;
  74. lines = decl.style('before').split("\n");
  75. min = lines[lines.length - 1];
  76. this.all.group(decl).up(function(prefixed) {
  77. var array, last;
  78. array = prefixed.style('before').split("\n");
  79. last = array[array.length - 1];
  80. if (last.length < min.length) {
  81. return min = last;
  82. }
  83. });
  84. lines[lines.length - 1] = min;
  85. return decl.before = lines.join("\n");
  86. };
  87. Declaration.prototype.insert = function(decl, prefix, prefixes) {
  88. var cloned;
  89. cloned = this.set(this.clone(decl), prefix);
  90. if (!cloned) {
  91. return;
  92. }
  93. if (this.needCascade(decl)) {
  94. cloned.before = this.calcBefore(prefixes, decl, prefix);
  95. }
  96. return decl.parent.insertBefore(decl, cloned);
  97. };
  98. Declaration.prototype.add = function(decl, prefix, prefixes) {
  99. var already, prefixed;
  100. prefixed = this.prefixed(decl.prop, prefix);
  101. already = this.all.group(decl).up(function(i) {
  102. return i.prop === prefixed;
  103. });
  104. already || (already = this.all.group(decl).down(function(i) {
  105. return i.prop === prefixed;
  106. }));
  107. if (already || this.otherPrefixes(decl.value, prefix)) {
  108. return;
  109. }
  110. return this.insert(decl, prefix, prefixes);
  111. };
  112. Declaration.prototype.process = function(decl) {
  113. var prefixes;
  114. if (this.needCascade(decl)) {
  115. prefixes = Declaration.__super__.process.apply(this, arguments);
  116. if (prefixes != null ? prefixes.length : void 0) {
  117. this.restoreBefore(decl);
  118. return decl.before = this.calcBefore(prefixes, decl);
  119. }
  120. } else {
  121. return Declaration.__super__.process.apply(this, arguments);
  122. }
  123. };
  124. Declaration.prototype.old = function(prop, prefix) {
  125. return [this.prefixed(prop, prefix)];
  126. };
  127. return Declaration;
  128. })(Prefixer);
  129. module.exports = Declaration;
  130. }).call(this);