index.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. var makeFallbackFunction = require('./lib/rules-fabric');
  2. module.exports = function postcssInitial(opts) {
  3. opts = opts || {};
  4. opts.reset = opts.reset || 'all';
  5. opts.replace = opts.replace || false;
  6. var getFallback = makeFallbackFunction(opts.reset === 'inherited');
  7. var getPropPrevTo = function (prop, decl) {
  8. var foundPrev = false;
  9. decl.parent.walkDecls(function (child) {
  10. if (child.prop === decl.prop && child.value !== decl.value) {
  11. foundPrev = true;
  12. }
  13. });
  14. return foundPrev;
  15. };
  16. return {
  17. postcssPlugin: 'postcss-initial',
  18. Declaration: function (decl) {
  19. if (!/\binitial\b/.test(decl.value)) {
  20. return;
  21. }
  22. var fallBackRules = getFallback(decl.prop, decl.value);
  23. if (fallBackRules.length === 0) return;
  24. fallBackRules.forEach(function (rule) {
  25. if ( !getPropPrevTo(decl.prop, decl) ) {
  26. decl.cloneBefore(rule);
  27. }
  28. });
  29. if (opts.replace === true) {
  30. decl.remove();
  31. }
  32. }
  33. };
  34. };
  35. module.exports.postcss = true;