plugin.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = plugin;
  6. function plugin(targets, nodeTypes, detect) {
  7. class Plugin {
  8. constructor(result) {
  9. this.nodes = [];
  10. this.result = result;
  11. this.targets = targets;
  12. this.nodeTypes = nodeTypes;
  13. }
  14. push(node, metadata) {
  15. node._stylehacks = Object.assign({}, metadata, {
  16. message: `Bad ${metadata.identifier}: ${metadata.hack}`,
  17. browsers: this.targets
  18. });
  19. this.nodes.push(node);
  20. }
  21. any(node) {
  22. if (~this.nodeTypes.indexOf(node.type)) {
  23. detect.apply(this, arguments);
  24. return !!node._stylehacks;
  25. }
  26. return false;
  27. }
  28. detectAndResolve(...args) {
  29. this.nodes = [];
  30. detect.apply(this, args);
  31. return this.resolve();
  32. }
  33. detectAndWarn(...args) {
  34. this.nodes = [];
  35. detect.apply(this, args);
  36. return this.warn();
  37. }
  38. resolve() {
  39. return this.nodes.forEach(node => node.remove());
  40. }
  41. warn() {
  42. return this.nodes.forEach(node => {
  43. const {
  44. message,
  45. browsers,
  46. identifier,
  47. hack
  48. } = node._stylehacks;
  49. return node.warn(this.result, message, {
  50. browsers,
  51. identifier,
  52. hack
  53. });
  54. });
  55. }
  56. }
  57. return Plugin;
  58. }
  59. module.exports = exports.default;