Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

validator.js 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.OptionValidator = void 0;
  6. var _findSuggestion = require("./find-suggestion");
  7. class OptionValidator {
  8. constructor(descriptor) {
  9. this.descriptor = descriptor;
  10. }
  11. validateTopLevelOptions(options, TopLevelOptionShape) {
  12. const validOptionNames = Object.keys(TopLevelOptionShape);
  13. for (const option of Object.keys(options)) {
  14. if (!validOptionNames.includes(option)) {
  15. throw new Error(this.formatMessage(`'${option}' is not a valid top-level option.
  16. - Did you mean '${(0, _findSuggestion.findSuggestion)(option, validOptionNames)}'?`));
  17. }
  18. }
  19. }
  20. validateBooleanOption(name, value, defaultValue) {
  21. if (value === undefined) {
  22. return defaultValue;
  23. } else {
  24. this.invariant(typeof value === "boolean", `'${name}' option must be a boolean.`);
  25. }
  26. return value;
  27. }
  28. validateStringOption(name, value, defaultValue) {
  29. if (value === undefined) {
  30. return defaultValue;
  31. } else {
  32. this.invariant(typeof value === "string", `'${name}' option must be a string.`);
  33. }
  34. return value;
  35. }
  36. invariant(condition, message) {
  37. if (!condition) {
  38. throw new Error(this.formatMessage(message));
  39. }
  40. }
  41. formatMessage(message) {
  42. return `${this.descriptor}: ${message}`;
  43. }
  44. }
  45. exports.OptionValidator = OptionValidator;