aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@webpack-contrib/schema-utils/dist/ValidationError.js
blob: 238317bb031f9d678400b95a4ed1990dc9685bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
'use strict';

Object.defineProperty(exports, "__esModule", {
  value: true
});

var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();

var _chalk = require('chalk');

var _chalk2 = _interopRequireDefault(_chalk);

var _stripAnsi = require('strip-ansi');

var _stripAnsi2 = _interopRequireDefault(_stripAnsi);

var _textTable = require('text-table');

var _textTable2 = _interopRequireDefault(_textTable);

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }

function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }

var ValidationError = function (_Error) {
  _inherits(ValidationError, _Error);

  function ValidationError(options) {
    _classCallCheck(this, ValidationError);

    // Workaround for https://github.com/istanbuljs/istanbuljs/issues/139
    var _this = _possibleConstructorReturn(this, (ValidationError.__proto__ || Object.getPrototypeOf(ValidationError)).call(this));

    _this.constructor = ValidationError;
    _this.__proto__ = ValidationError.prototype;
    // End Workaround
    // prettier-ignore
    _this.message = _chalk2.default`${options.name}`;
    _this.meta = options;
    _this.meta.desc = _chalk2.default`{underline Options Validation Error}`;
    _this.name = 'ValidationError';

    if (options.log) {
      _this.message += `: ${_this.meta.desc}`;
    } else {
      _this.message += `\n\n  ${_this.meta.desc}\n\n${_this.format()}\n`;
    }

    Error.captureStackTrace(_this, _this.constructor);
    return _this;
  }

  _createClass(ValidationError, [{
    key: 'format',
    value: function format() {
      var errors = this.meta.errors;

      var rows = [];
      var options = {
        align: ['', 'l', 'l'],
        stringLength(str) {
          return (0, _stripAnsi2.default)(str).length;
        }
      };

      var _iteratorNormalCompletion = true;
      var _didIteratorError = false;
      var _iteratorError = undefined;

      try {
        for (var _iterator = errors[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
          var err = _step.value;

          rows.push(['', _chalk2.default`{dim options}${err.dataPath}`, _chalk2.default`{blue ${err.message}}`]);
        }
      } catch (err) {
        _didIteratorError = true;
        _iteratorError = err;
      } finally {
        try {
          if (!_iteratorNormalCompletion && _iterator.return) {
            _iterator.return();
          }
        } finally {
          if (_didIteratorError) {
            throw _iteratorError;
          }
        }
      }

      return (0, _textTable2.default)(rows, options);
    }

    // eslint-disable-next-line class-methods-use-this

  }, {
    key: 'toString',
    value: function toString() {
      return `${this.message}\n\n${this.format()}`;
    }
  }]);

  return ValidationError;
}(Error);

exports.default = ValidationError;