stylePostLoader.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. "use strict";
  2. var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
  3. if (k2 === undefined) k2 = k;
  4. Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
  5. }) : (function(o, m, k, k2) {
  6. if (k2 === undefined) k2 = k;
  7. o[k2] = m[k];
  8. }));
  9. var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
  10. Object.defineProperty(o, "default", { enumerable: true, value: v });
  11. }) : function(o, v) {
  12. o["default"] = v;
  13. });
  14. var __importStar = (this && this.__importStar) || function (mod) {
  15. if (mod && mod.__esModule) return mod;
  16. var result = {};
  17. if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
  18. __setModuleDefault(result, mod);
  19. return result;
  20. };
  21. Object.defineProperty(exports, "__esModule", { value: true });
  22. const qs = __importStar(require("querystring"));
  23. const compiler_1 = require("./compiler");
  24. const { compileStyle } = compiler_1.compiler;
  25. // This is a post loader that handles scoped CSS transforms.
  26. // Injected right before css-loader by the global pitcher (../pitch.js)
  27. // for any <style scoped> selection requests initiated from within vue files.
  28. const StylePostLoader = function (source, inMap) {
  29. const query = qs.parse(this.resourceQuery.slice(1));
  30. const { code, map, errors } = compileStyle({
  31. source: source,
  32. filename: this.resourcePath,
  33. id: `data-v-${query.id}`,
  34. map: inMap,
  35. scoped: !!query.scoped,
  36. trim: true,
  37. isProd: this.mode === 'production' || process.env.NODE_ENV === 'production',
  38. });
  39. if (errors.length) {
  40. this.callback(errors[0]);
  41. }
  42. else {
  43. this.callback(null, code, map);
  44. }
  45. };
  46. exports.default = StylePostLoader;