@elliemae/ds-props-helpers 2.3.0-next.3 → 3.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (174) hide show
  1. package/dist/cjs/defaultProps/index.js +28 -0
  2. package/dist/cjs/defaultProps/index.js.map +7 -0
  3. package/dist/cjs/defaultProps/useMemoMergePropsWithDefault.js +48 -0
  4. package/dist/cjs/defaultProps/useMemoMergePropsWithDefault.js.map +7 -0
  5. package/dist/cjs/getProps/index.js +37 -0
  6. package/dist/cjs/getProps/index.js.map +7 -0
  7. package/dist/cjs/globalProps/constants.js +398 -0
  8. package/dist/cjs/globalProps/constants.js.map +7 -0
  9. package/dist/cjs/globalProps/globalAttributesPropTypes.js +398 -0
  10. package/dist/cjs/globalProps/globalAttributesPropTypes.js.map +7 -0
  11. package/dist/cjs/globalProps/index.js +29 -0
  12. package/dist/cjs/globalProps/index.js.map +7 -0
  13. package/dist/cjs/globalProps/useGetGlobalAttributes.js +56 -0
  14. package/dist/cjs/globalProps/useGetGlobalAttributes.js.map +7 -0
  15. package/dist/cjs/index.js +32 -0
  16. package/dist/cjs/index.js.map +7 -0
  17. package/dist/cjs/propTypes/PropTypes.js +136 -0
  18. package/dist/cjs/propTypes/PropTypes.js.map +7 -0
  19. package/dist/cjs/propTypes/customPropTypes.js +38 -0
  20. package/dist/cjs/propTypes/customPropTypes.js.map +7 -0
  21. package/dist/cjs/propTypes/describe.js +81 -0
  22. package/dist/cjs/propTypes/describe.js.map +7 -0
  23. package/dist/cjs/propTypes/describeConversions.js +96 -0
  24. package/dist/cjs/propTypes/describeConversions.js.map +7 -0
  25. package/dist/cjs/propTypes/describeGuards.js +49 -0
  26. package/dist/cjs/propTypes/describeGuards.js.map +7 -0
  27. package/dist/cjs/propTypes/index.js +37 -0
  28. package/dist/cjs/propTypes/index.js.map +7 -0
  29. package/dist/cjs/propTypes/toTypescript.js +139 -0
  30. package/dist/cjs/propTypes/toTypescript.js.map +7 -0
  31. package/dist/cjs/propTypes/types.js +27 -0
  32. package/dist/cjs/propTypes/types.js.map +7 -0
  33. package/dist/cjs/tests/globalProps/TestComponent.js +42 -0
  34. package/dist/cjs/tests/globalProps/TestComponent.js.map +7 -0
  35. package/dist/cjs/tests/validation/test.schema.js +67 -0
  36. package/dist/cjs/tests/validation/test.schema.js.map +7 -0
  37. package/dist/cjs/validation/errorTemplates.js +48 -0
  38. package/dist/cjs/validation/errorTemplates.js.map +7 -0
  39. package/dist/cjs/validation/index.js +30 -0
  40. package/dist/cjs/validation/index.js.map +7 -0
  41. package/dist/cjs/validation/typescriptGuards.js +65 -0
  42. package/dist/cjs/validation/typescriptGuards.js.map +7 -0
  43. package/dist/cjs/validation/typescriptParsers.js +76 -0
  44. package/dist/cjs/validation/typescriptParsers.js.map +7 -0
  45. package/dist/cjs/validation/typescriptValidator.js +171 -0
  46. package/dist/cjs/validation/typescriptValidator.js.map +7 -0
  47. package/dist/cjs/validation/validator.js +55 -0
  48. package/dist/cjs/validation/validator.js.map +7 -0
  49. package/dist/esm/defaultProps/index.js +3 -0
  50. package/dist/esm/defaultProps/index.js.map +7 -0
  51. package/dist/esm/defaultProps/useMemoMergePropsWithDefault.js +19 -0
  52. package/dist/esm/defaultProps/useMemoMergePropsWithDefault.js.map +7 -0
  53. package/dist/esm/getProps/index.js +8 -0
  54. package/dist/esm/getProps/index.js.map +7 -0
  55. package/dist/esm/globalProps/constants.js +369 -0
  56. package/dist/esm/globalProps/constants.js.map +7 -0
  57. package/{esm → dist/esm}/globalProps/globalAttributesPropTypes.js +58 -67
  58. package/dist/esm/globalProps/globalAttributesPropTypes.js.map +7 -0
  59. package/dist/esm/globalProps/index.js +4 -0
  60. package/dist/esm/globalProps/index.js.map +7 -0
  61. package/dist/esm/globalProps/useGetGlobalAttributes.js +27 -0
  62. package/dist/esm/globalProps/useGetGlobalAttributes.js.map +7 -0
  63. package/dist/esm/index.js +7 -0
  64. package/dist/esm/index.js.map +7 -0
  65. package/dist/esm/propTypes/PropTypes.js +107 -0
  66. package/dist/esm/propTypes/PropTypes.js.map +7 -0
  67. package/dist/esm/propTypes/customPropTypes.js +9 -0
  68. package/dist/esm/propTypes/customPropTypes.js.map +7 -0
  69. package/dist/esm/propTypes/describe.js +52 -0
  70. package/dist/esm/propTypes/describe.js.map +7 -0
  71. package/dist/esm/propTypes/describeConversions.js +76 -0
  72. package/dist/esm/propTypes/describeConversions.js.map +7 -0
  73. package/dist/esm/propTypes/describeGuards.js +20 -0
  74. package/dist/esm/propTypes/describeGuards.js.map +7 -0
  75. package/dist/esm/propTypes/index.js +8 -0
  76. package/dist/esm/propTypes/index.js.map +7 -0
  77. package/dist/esm/propTypes/toTypescript.js +110 -0
  78. package/dist/esm/propTypes/toTypescript.js.map +7 -0
  79. package/dist/esm/propTypes/types.js +2 -0
  80. package/dist/esm/propTypes/types.js.map +7 -0
  81. package/dist/esm/tests/globalProps/TestComponent.js +13 -0
  82. package/dist/esm/tests/globalProps/TestComponent.js.map +7 -0
  83. package/dist/esm/tests/validation/test.schema.js +38 -0
  84. package/dist/esm/tests/validation/test.schema.js.map +7 -0
  85. package/dist/esm/validation/errorTemplates.js +19 -0
  86. package/dist/esm/validation/errorTemplates.js.map +7 -0
  87. package/dist/esm/validation/index.js +5 -0
  88. package/dist/esm/validation/index.js.map +7 -0
  89. package/dist/esm/validation/typescriptGuards.js +36 -0
  90. package/dist/esm/validation/typescriptGuards.js.map +7 -0
  91. package/dist/esm/validation/typescriptParsers.js +47 -0
  92. package/dist/esm/validation/typescriptParsers.js.map +7 -0
  93. package/dist/esm/validation/typescriptValidator.js +153 -0
  94. package/dist/esm/validation/typescriptValidator.js.map +7 -0
  95. package/dist/esm/validation/validator.js +26 -0
  96. package/dist/esm/validation/validator.js.map +7 -0
  97. package/{types → dist/types}/defaultProps/index.d.ts +0 -0
  98. package/{types → dist/types}/defaultProps/useMemoMergePropsWithDefault.d.ts +0 -0
  99. package/{types → dist/types}/getProps/index.d.ts +0 -0
  100. package/{types → dist/types}/globalProps/constants.d.ts +0 -0
  101. package/{types → dist/types}/globalProps/globalAttributesPropTypes.d.ts +0 -0
  102. package/{types → dist/types}/globalProps/index.d.ts +0 -0
  103. package/{types → dist/types}/globalProps/useGetGlobalAttributes.d.ts +0 -0
  104. package/{types → dist/types}/index.d.ts +0 -0
  105. package/{types → dist/types}/propTypes/PropTypes.d.ts +0 -0
  106. package/{types → dist/types}/propTypes/customPropTypes.d.ts +0 -0
  107. package/{types → dist/types}/propTypes/describe.d.ts +0 -0
  108. package/{types → dist/types}/propTypes/describeConversions.d.ts +0 -0
  109. package/{types → dist/types}/propTypes/describeGuards.d.ts +0 -0
  110. package/{types → dist/types}/propTypes/index.d.ts +0 -0
  111. package/{types → dist/types}/propTypes/toTypescript.d.ts +0 -0
  112. package/{types → dist/types}/propTypes/types.d.ts +1 -1
  113. package/{types → dist/types}/tests/globalProps/TestComponent.d.ts +0 -0
  114. package/{types → dist/types}/tests/globalProps/globalAttributes.test.d.ts +0 -0
  115. package/{types → dist/types}/tests/validation/any.validation.test.d.ts +0 -0
  116. package/{types → dist/types}/tests/validation/array.validation.test.d.ts +0 -0
  117. package/{types → dist/types}/tests/validation/boolean.validation.test.d.ts +0 -0
  118. package/{types → dist/types}/tests/validation/function.validation.test.d.ts +0 -0
  119. package/{types → dist/types}/tests/validation/number.validation.test.d.ts +0 -0
  120. package/{types → dist/types}/tests/validation/object.validation.test.d.ts +0 -0
  121. package/{types → dist/types}/tests/validation/schema.validation.test.d.ts +0 -0
  122. package/{types → dist/types}/tests/validation/string.validation.test.d.ts +0 -0
  123. package/{types → dist/types}/tests/validation/test.schema.d.ts +0 -0
  124. package/{types → dist/types}/tests/validation/union.validation.test.d.ts +0 -0
  125. package/{types → dist/types}/validation/errorTemplates.d.ts +0 -0
  126. package/{types → dist/types}/validation/index.d.ts +0 -0
  127. package/{types → dist/types}/validation/typescriptGuards.d.ts +0 -0
  128. package/{types → dist/types}/validation/typescriptParsers.d.ts +0 -0
  129. package/{types → dist/types}/validation/typescriptValidator.d.ts +0 -0
  130. package/{types → dist/types}/validation/validator.d.ts +0 -0
  131. package/package.json +71 -62
  132. package/cjs/defaultProps/index.js +0 -9
  133. package/cjs/defaultProps/useMemoMergePropsWithDefault.js +0 -48
  134. package/cjs/getProps/index.js +0 -20
  135. package/cjs/globalProps/constants.js +0 -15
  136. package/cjs/globalProps/globalAttributesPropTypes.js +0 -382
  137. package/cjs/globalProps/index.js +0 -11
  138. package/cjs/globalProps/useGetGlobalAttributes.js +0 -36
  139. package/cjs/index.js +0 -28
  140. package/cjs/propTypes/PropTypes.js +0 -130
  141. package/cjs/propTypes/customPropTypes.js +0 -21
  142. package/cjs/propTypes/describe.js +0 -64
  143. package/cjs/propTypes/describeConversions.js +0 -104
  144. package/cjs/propTypes/describeGuards.js +0 -21
  145. package/cjs/propTypes/index.js +0 -11
  146. package/cjs/propTypes/toTypescript.js +0 -160
  147. package/cjs/propTypes/types.js +0 -2
  148. package/cjs/validation/errorTemplates.js +0 -16
  149. package/cjs/validation/index.js +0 -15
  150. package/cjs/validation/typescriptGuards.js +0 -36
  151. package/cjs/validation/typescriptParsers.js +0 -45
  152. package/cjs/validation/typescriptValidator.js +0 -208
  153. package/cjs/validation/validator.js +0 -36
  154. package/esm/defaultProps/index.js +0 -1
  155. package/esm/defaultProps/useMemoMergePropsWithDefault.js +0 -39
  156. package/esm/getProps/index.js +0 -15
  157. package/esm/globalProps/constants.js +0 -11
  158. package/esm/globalProps/index.js +0 -2
  159. package/esm/globalProps/useGetGlobalAttributes.js +0 -32
  160. package/esm/index.js +0 -9
  161. package/esm/propTypes/PropTypes.js +0 -124
  162. package/esm/propTypes/customPropTypes.js +0 -17
  163. package/esm/propTypes/describe.js +0 -62
  164. package/esm/propTypes/describeConversions.js +0 -96
  165. package/esm/propTypes/describeGuards.js +0 -10
  166. package/esm/propTypes/index.js +0 -2
  167. package/esm/propTypes/toTypescript.js +0 -154
  168. package/esm/propTypes/types.js +0 -1
  169. package/esm/validation/errorTemplates.js +0 -11
  170. package/esm/validation/index.js +0 -3
  171. package/esm/validation/typescriptGuards.js +0 -23
  172. package/esm/validation/typescriptParsers.js +0 -41
  173. package/esm/validation/typescriptValidator.js +0 -203
  174. package/esm/validation/validator.js +0 -32
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ export * from "./validator";
3
+ export * from "./errorTemplates";
4
+ export * from "./typescriptValidator";
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/validation/index.ts"],
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export * from './validator';\nexport * from './errorTemplates';\nexport * from './typescriptValidator';\n"],
5
+ "mappings": "AAAA;ACAA;AACA;AACA;",
6
+ "names": []
7
+ }
@@ -0,0 +1,36 @@
1
+ import * as React from "react";
2
+ const isPrimitiveType = (format) => ["string", "number", "boolean"].includes(format);
3
+ const isUndefined = (format) => format === '"undefined"';
4
+ const isNull = (format) => format === '"null"';
5
+ const isUnion = (format) => {
6
+ let depth = 0;
7
+ let satisfies = false;
8
+ format.split("").forEach((char) => {
9
+ if (["{", "("].includes(char))
10
+ depth += 1;
11
+ else if (["}", ")"].includes(char))
12
+ depth -= 1;
13
+ else if (char === "|" && depth === 0)
14
+ satisfies = true;
15
+ });
16
+ return satisfies;
17
+ };
18
+ const isString = (format) => !isUnion(format) && format[0] === '"' && format.slice(-1) === '"';
19
+ const isArray = (format) => !isUnion(format) && format.slice(-2) === "[]";
20
+ const isObject = (format) => format === "object" || !isUnion(format) && format[0] === "{" && format.slice(-1) === "}";
21
+ const isFunction = (format) => !isUnion(format) && format === "((...args: any[]) => any)";
22
+ const isJSXorNode = (format) => !isUnion(format) && ["React.ReactNode", "JSX.Element"].includes(format);
23
+ const isSomethingWithParenthesis = (format) => !isUnion(format) && format[0] === "(" && format.slice(-1) === ")";
24
+ export {
25
+ isArray,
26
+ isFunction,
27
+ isJSXorNode,
28
+ isNull,
29
+ isObject,
30
+ isPrimitiveType,
31
+ isSomethingWithParenthesis,
32
+ isString,
33
+ isUndefined,
34
+ isUnion
35
+ };
36
+ //# sourceMappingURL=typescriptGuards.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/validation/typescriptGuards.ts"],
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "type GuardFn = (format: string) => boolean;\n\nexport const isPrimitiveType: GuardFn = (format) => ['string', 'number', 'boolean'].includes(format);\nexport const isUndefined: GuardFn = (format) => format === '\"undefined\"';\nexport const isNull: GuardFn = (format) => format === '\"null\"';\nexport const isUnion: GuardFn = (format) => {\n let depth = 0;\n let satisfies = false;\n format.split('').forEach((char) => {\n if (['{', '('].includes(char)) depth += 1;\n else if (['}', ')'].includes(char)) depth -= 1;\n else if (char === '|' && depth === 0) satisfies = true;\n });\n return satisfies;\n};\n\nexport const isString: GuardFn = (format) => !isUnion(format) && format[0] === '\"' && format.slice(-1) === '\"';\n\nexport const isArray: GuardFn = (format) => !isUnion(format) && format.slice(-2) === '[]';\n\nexport const isObject: GuardFn = (format) =>\n format === 'object' || (!isUnion(format) && format[0] === '{' && format.slice(-1) === '}');\n\nexport const isFunction: GuardFn = (format) => !isUnion(format) && format === '((...args: any[]) => any)';\n\nexport const isJSXorNode: GuardFn = (format) => !isUnion(format) && ['React.ReactNode', 'JSX.Element'].includes(format);\n\nexport const isSomethingWithParenthesis: GuardFn = (format) =>\n !isUnion(format) && format[0] === '(' && format.slice(-1) === ')';\n"],
5
+ "mappings": "AAAA;ACEO,MAAM,kBAA2B,CAAC,WAAW,CAAC,UAAU,UAAU,WAAW,SAAS;AACtF,MAAM,cAAuB,CAAC,WAAW,WAAW;AACpD,MAAM,SAAkB,CAAC,WAAW,WAAW;AAC/C,MAAM,UAAmB,CAAC,WAAW;AAC1C,MAAI,QAAQ;AACZ,MAAI,YAAY;AAChB,SAAO,MAAM,IAAI,QAAQ,CAAC,SAAS;AACjC,QAAI,CAAC,KAAK,KAAK,SAAS;AAAO,eAAS;AAAA,aAC/B,CAAC,KAAK,KAAK,SAAS;AAAO,eAAS;AAAA,aACpC,SAAS,OAAO,UAAU;AAAG,kBAAY;AAAA;AAEpD,SAAO;AAAA;AAGF,MAAM,WAAoB,CAAC,WAAW,CAAC,QAAQ,WAAW,OAAO,OAAO,OAAO,OAAO,MAAM,QAAQ;AAEpG,MAAM,UAAmB,CAAC,WAAW,CAAC,QAAQ,WAAW,OAAO,MAAM,QAAQ;AAE9E,MAAM,WAAoB,CAAC,WAChC,WAAW,YAAa,CAAC,QAAQ,WAAW,OAAO,OAAO,OAAO,OAAO,MAAM,QAAQ;AAEjF,MAAM,aAAsB,CAAC,WAAW,CAAC,QAAQ,WAAW,WAAW;AAEvE,MAAM,cAAuB,CAAC,WAAW,CAAC,QAAQ,WAAW,CAAC,mBAAmB,eAAe,SAAS;AAEzG,MAAM,6BAAsC,CAAC,WAClD,CAAC,QAAQ,WAAW,OAAO,OAAO,OAAO,OAAO,MAAM,QAAQ;",
6
+ "names": []
7
+ }
@@ -0,0 +1,47 @@
1
+ import * as React from "react";
2
+ const typescriptObjectParser = (format) => {
3
+ const keyValuePairs = [];
4
+ let lastKey = "";
5
+ let lastValue = "";
6
+ let shouldAppendToKey = true;
7
+ const pushPair = () => {
8
+ if (lastKey)
9
+ keyValuePairs.push([lastKey, lastValue]);
10
+ lastKey = "";
11
+ lastValue = "";
12
+ shouldAppendToKey = true;
13
+ };
14
+ let depth = 0;
15
+ format.split("").forEach((char) => {
16
+ if (char === "{") {
17
+ depth += 1;
18
+ if (depth > 1)
19
+ lastValue += char;
20
+ } else if (char === "}") {
21
+ if (depth > 1)
22
+ lastValue += char;
23
+ depth -= 1;
24
+ if (depth === 1)
25
+ pushPair();
26
+ } else if (char === ":") {
27
+ shouldAppendToKey = false;
28
+ if (depth > 1)
29
+ lastValue += char;
30
+ } else if (char === ",") {
31
+ if (depth === 1)
32
+ pushPair();
33
+ else
34
+ lastValue += char;
35
+ } else if (char === " ") {
36
+ } else if (shouldAppendToKey)
37
+ lastKey += char;
38
+ else
39
+ lastValue += char;
40
+ });
41
+ pushPair();
42
+ return keyValuePairs;
43
+ };
44
+ export {
45
+ typescriptObjectParser
46
+ };
47
+ //# sourceMappingURL=typescriptParsers.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/validation/typescriptParsers.ts"],
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable complexity */\nexport const typescriptObjectParser = (format: string): [string, string][] => {\n const keyValuePairs: [string, string][] = [];\n\n // State of the algorithm\n let lastKey = '';\n let lastValue = '';\n let shouldAppendToKey = true;\n\n const pushPair = () => {\n if (lastKey) keyValuePairs.push([lastKey, lastValue]);\n lastKey = '';\n lastValue = '';\n shouldAppendToKey = true;\n };\n\n // Complex -- but working -- logic\n let depth = 0;\n format.split('').forEach((char) => {\n if (char === '{') {\n depth += 1;\n if (depth > 1) lastValue += char;\n } else if (char === '}') {\n if (depth > 1) lastValue += char;\n depth -= 1;\n if (depth === 1) pushPair();\n } else if (char === ':') {\n shouldAppendToKey = false;\n if (depth > 1) lastValue += char;\n } else if (char === ',') {\n if (depth === 1) pushPair();\n else lastValue += char;\n } else if (char === ' ') {\n // Do nothing\n } else if (shouldAppendToKey) lastKey += char;\n else lastValue += char;\n });\n pushPair();\n\n return keyValuePairs;\n};\n"],
5
+ "mappings": "AAAA;ACCO,MAAM,yBAAyB,CAAC,WAAuC;AAC5E,QAAM,gBAAoC;AAG1C,MAAI,UAAU;AACd,MAAI,YAAY;AAChB,MAAI,oBAAoB;AAExB,QAAM,WAAW,MAAM;AACrB,QAAI;AAAS,oBAAc,KAAK,CAAC,SAAS;AAC1C,cAAU;AACV,gBAAY;AACZ,wBAAoB;AAAA;AAItB,MAAI,QAAQ;AACZ,SAAO,MAAM,IAAI,QAAQ,CAAC,SAAS;AACjC,QAAI,SAAS,KAAK;AAChB,eAAS;AACT,UAAI,QAAQ;AAAG,qBAAa;AAAA,eACnB,SAAS,KAAK;AACvB,UAAI,QAAQ;AAAG,qBAAa;AAC5B,eAAS;AACT,UAAI,UAAU;AAAG;AAAA,eACR,SAAS,KAAK;AACvB,0BAAoB;AACpB,UAAI,QAAQ;AAAG,qBAAa;AAAA,eACnB,SAAS,KAAK;AACvB,UAAI,UAAU;AAAG;AAAA;AACZ,qBAAa;AAAA,eACT,SAAS,KAAK;AAAA,eAEd;AAAmB,iBAAW;AAAA;AACpC,mBAAa;AAAA;AAEpB;AAEA,SAAO;AAAA;",
6
+ "names": []
7
+ }
@@ -0,0 +1,153 @@
1
+ import * as React from "react";
2
+ import { useMemo, useState } from "react";
3
+ import { describe } from "../propTypes";
4
+ import { throwRequiredError, throwTypeError } from "./errorTemplates";
5
+ import {
6
+ isArray,
7
+ isFunction,
8
+ isJSXorNode,
9
+ isObject,
10
+ isPrimitiveType,
11
+ isSomethingWithParenthesis,
12
+ isString,
13
+ isUnion,
14
+ isUndefined,
15
+ isNull
16
+ } from "./typescriptGuards";
17
+ import { typescriptObjectParser } from "./typescriptParsers";
18
+ const validateUndefined = (schemaName, key, value, format) => {
19
+ if (value !== void 0 || value === "undefined") {
20
+ throwTypeError(schemaName, key, value, format);
21
+ }
22
+ };
23
+ const validateNull = (schemaName, key, value, format) => {
24
+ if (value !== null || value === "null") {
25
+ throwTypeError(schemaName, key, value, format);
26
+ }
27
+ };
28
+ const validatePrimitiveType = (schemaName, key, value, format) => {
29
+ if (typeof value !== format) {
30
+ throwTypeError(schemaName, key, value, format);
31
+ }
32
+ };
33
+ const validateString = (schemaName, key, value, format) => {
34
+ if (value !== format.slice(1, -1)) {
35
+ throwTypeError(schemaName, key, value, format);
36
+ }
37
+ };
38
+ const validateArray = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
39
+ if (!Array.isArray(value)) {
40
+ throwTypeError(schemaName, key, value, format);
41
+ }
42
+ value.forEach((val, index) => {
43
+ validateValueWithFormat(schemaName, `${key}[${index}]`, val, format.slice(0, -2), validationsMemo, nextValidationsMemo);
44
+ });
45
+ };
46
+ function isObjectType(value) {
47
+ return !(typeof value !== "object" || Array.isArray(value));
48
+ }
49
+ const validateObject = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
50
+ const valuesIsObject = isObjectType(value);
51
+ if (!valuesIsObject) {
52
+ throwTypeError(schemaName, key, value, format);
53
+ return;
54
+ }
55
+ if (format === "object")
56
+ return;
57
+ const keyValuePairs = typescriptObjectParser(format);
58
+ keyValuePairs.forEach(([objectKey, objectValue]) => {
59
+ const trueKey = objectKey.slice(-1) === "?" ? objectKey.slice(0, -1) : objectKey;
60
+ if (trueKey === objectKey && !(trueKey in value)) {
61
+ throwRequiredError(schemaName, key);
62
+ }
63
+ if (trueKey in value) {
64
+ validateValueWithFormat(schemaName, `${key}[${trueKey}]`, value[trueKey], objectValue, validationsMemo, nextValidationsMemo);
65
+ }
66
+ });
67
+ };
68
+ const validateUnion = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
69
+ const possibilities = format.split(/\s?\|\s?/);
70
+ const errors = [];
71
+ possibilities.forEach((possibility) => {
72
+ try {
73
+ validateValueWithFormat(schemaName, key, value, possibility, validationsMemo, nextValidationsMemo);
74
+ } catch (e) {
75
+ errors.push(e);
76
+ }
77
+ });
78
+ if (errors.length === possibilities.length) {
79
+ throwTypeError(schemaName, key, value, format);
80
+ }
81
+ };
82
+ const validateFunction = (schemaName, key, value, format) => {
83
+ if (typeof value !== "function") {
84
+ throwTypeError(schemaName, key, value, format);
85
+ }
86
+ };
87
+ function isJSXElement(value) {
88
+ return value === null || typeof value === "object" && value !== null && "$$typeof" in value;
89
+ }
90
+ const validateJSXorNode = (schemaName, key, value, format) => {
91
+ const valueIsJSX = isJSXElement(value);
92
+ if (format === "JSX.Element" && !valueIsJSX) {
93
+ throwTypeError(schemaName, key, value, format);
94
+ }
95
+ };
96
+ const validateValueWithFormat = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
97
+ nextValidationsMemo[value] = format;
98
+ if (value in validationsMemo) {
99
+ return;
100
+ }
101
+ if (isUndefined(format)) {
102
+ validateUndefined(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
103
+ } else if (isNull(format)) {
104
+ validateNull(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
105
+ } else if (isPrimitiveType(format)) {
106
+ validatePrimitiveType(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
107
+ } else if (isUnion(format)) {
108
+ validateUnion(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
109
+ } else if (isString(format)) {
110
+ validateString(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
111
+ } else if (isArray(format)) {
112
+ validateArray(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
113
+ } else if (isObject(format)) {
114
+ validateObject(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
115
+ } else if (isFunction(format)) {
116
+ validateFunction(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
117
+ } else if (isJSXorNode(format)) {
118
+ validateJSXorNode(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
119
+ } else if (isSomethingWithParenthesis(format)) {
120
+ validateValueWithFormat(schemaName, key, value, format.slice(1, -1), validationsMemo, nextValidationsMemo);
121
+ }
122
+ };
123
+ const validateTypescriptPropTypesImplementation = (props, schema, validationsMemo = {}, nextValidationsMemo = {}) => {
124
+ const { properties, name: schemaName } = schema;
125
+ properties.forEach((property) => {
126
+ const { name, format, required } = property;
127
+ if (required && !(name in props)) {
128
+ throwRequiredError(schema.name, name);
129
+ }
130
+ if (name in props && (props[name] !== void 0 || required)) {
131
+ validateValueWithFormat(schemaName, name, props[name], format, validationsMemo, nextValidationsMemo);
132
+ }
133
+ });
134
+ };
135
+ const useValidateTypescriptPropTypes = (props, propTypes) => {
136
+ const [validationsMemo, setValidationsMemo] = useState({});
137
+ const ComponentWithSchema = useMemo(() => {
138
+ const Component = () => {
139
+ };
140
+ return describe(Component);
141
+ }, []);
142
+ ComponentWithSchema.propTypes = propTypes;
143
+ useMemo(() => {
144
+ const nextValidationsMemo = {};
145
+ validateTypescriptPropTypesImplementation(props, ComponentWithSchema.toTypescript(), validationsMemo, nextValidationsMemo);
146
+ setValidationsMemo(nextValidationsMemo);
147
+ }, [props]);
148
+ };
149
+ export {
150
+ useValidateTypescriptPropTypes,
151
+ validateTypescriptPropTypesImplementation
152
+ };
153
+ //# sourceMappingURL=typescriptValidator.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/validation/typescriptValidator.ts"],
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable complexity */\n/* eslint-disable max-lines */\n/* eslint-disable max-params */\nimport React, { PropsWithChildren, useMemo, useState } from 'react';\nimport { describe } from '../propTypes';\nimport { throwRequiredError, throwTypeError } from './errorTemplates';\nimport {\n isArray,\n isFunction,\n isJSXorNode,\n isObject,\n isPrimitiveType,\n isSomethingWithParenthesis,\n isString,\n isUnion,\n isUndefined,\n isNull,\n} from './typescriptGuards';\nimport { typescriptObjectParser } from './typescriptParsers';\n\ninterface TypescriptSchema {\n description: string;\n name: string;\n properties: { name: string; description: string; defaultValue?: unknown; format: string; required?: boolean }[];\n}\n\ntype ValidatorFn = (\n schemaName: string,\n key: string,\n value: unknown,\n format: string,\n validationsMemo: Record<symbol, string>,\n nextValidationsMemo: Record<symbol, string>,\n) => void;\n\n// =============================================================================\n// Atom Validators\n// =============================================================================\n\n// This functions will validate something from the data\n// and optionally recursively apply `validateValueWithFormat`\n// in smaller parts\n\nconst validateUndefined: ValidatorFn = (schemaName, key, value, format) => {\n if (value !== undefined || value === 'undefined') {\n throwTypeError(schemaName, key, value, format);\n }\n};\nconst validateNull: ValidatorFn = (schemaName, key, value, format) => {\n if (value !== null || value === 'null') {\n throwTypeError(schemaName, key, value, format);\n }\n};\nconst validatePrimitiveType: ValidatorFn = (schemaName, key, value, format) => {\n if (typeof value !== format) {\n throwTypeError(schemaName, key, value, format);\n }\n};\n\nconst validateString: ValidatorFn = (schemaName, key, value, format) => {\n if (value !== format.slice(1, -1)) {\n throwTypeError(schemaName, key, value, format);\n }\n};\n\nconst validateArray: ValidatorFn = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {\n // Check that we have an array\n if (!Array.isArray(value)) {\n throwTypeError(schemaName, key, value, format);\n }\n\n // Check that each element inside satisfies the format\n (value as unknown[]).forEach((val, index) => {\n // this is a recursive func, we need to invoke it before it's defined.\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n validateValueWithFormat(\n schemaName,\n `${key}[${index}]`,\n val,\n format.slice(0, -2),\n validationsMemo,\n nextValidationsMemo,\n );\n });\n};\nfunction isObjectType(value: unknown | Record<string, unknown>): value is Record<string, unknown> {\n return !(typeof value !== 'object' || Array.isArray(value));\n}\nconst validateObject: ValidatorFn = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {\n const valuesIsObject = isObjectType(value);\n // Check that we have an object\n if (!valuesIsObject) {\n throwTypeError(schemaName, key, value, format);\n return;\n }\n\n if (format === 'object') return;\n\n const keyValuePairs = typescriptObjectParser(format);\n // Now we have the key - value pairs\n // Each key could either be required or not\n // Just recursively check the object\n\n keyValuePairs.forEach(([objectKey, objectValue]) => {\n const trueKey = objectKey.slice(-1) === '?' ? objectKey.slice(0, -1) : objectKey;\n\n if (trueKey === objectKey && !(trueKey in value)) {\n throwRequiredError(schemaName, key);\n }\n\n if (trueKey in value) {\n // this is a recursive func, we need to invoke it before it's defined.\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n validateValueWithFormat(\n schemaName,\n `${key}[${trueKey}]`,\n value[trueKey],\n objectValue,\n validationsMemo,\n nextValidationsMemo,\n );\n }\n });\n};\n\nconst validateUnion: ValidatorFn = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {\n const possibilities = format.split(/\\s?\\|\\s?/);\n\n const errors = [];\n\n possibilities.forEach((possibility) => {\n try {\n // this is a recursive func, we need to invoke it before it's defined.\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n validateValueWithFormat(schemaName, key, value, possibility, validationsMemo, nextValidationsMemo);\n } catch (e) {\n errors.push(e);\n }\n });\n\n if (errors.length === possibilities.length) {\n throwTypeError(schemaName, key, value, format);\n }\n};\n\nconst validateFunction: ValidatorFn = (schemaName, key, value, format) => {\n // Check that we have a function\n if (typeof value !== 'function') {\n throwTypeError(schemaName, key, value, format);\n }\n};\n\nfunction isJSXElement(value: unknown | JSX.Element): value is JSX.Element {\n return value === null || (typeof value === 'object' && value !== null && '$$typeof' in value);\n}\nconst validateJSXorNode: ValidatorFn = (schemaName, key, value, format) => {\n const valueIsJSX = isJSXElement(value);\n if (format === 'JSX.Element' && !valueIsJSX) {\n throwTypeError(schemaName, key, value, format);\n }\n};\n\n// =============================================================================\n// Schema validator\n// =============================================================================\n\nconst validateValueWithFormat: ValidatorFn = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {\n nextValidationsMemo[value as symbol] = format;\n\n if ((value as symbol) in validationsMemo) {\n // We already validated this value on this format\n return;\n }\n\n if (isUndefined(format)) {\n validateUndefined(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isNull(format)) {\n validateNull(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isPrimitiveType(format)) {\n validatePrimitiveType(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isUnion(format)) {\n validateUnion(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isString(format)) {\n validateString(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isArray(format)) {\n validateArray(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isObject(format)) {\n validateObject(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isFunction(format)) {\n validateFunction(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isJSXorNode(format)) {\n validateJSXorNode(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isSomethingWithParenthesis(format)) {\n validateValueWithFormat(schemaName, key, value, format.slice(1, -1), validationsMemo, nextValidationsMemo);\n }\n};\n\nexport const validateTypescriptPropTypesImplementation = (\n props: PropsWithChildren<Record<string, unknown>>,\n schema: TypescriptSchema,\n validationsMemo: Record<string, string> = {},\n nextValidationsMemo: Record<string, string> = {},\n): void => {\n const { properties, name: schemaName } = schema;\n\n properties.forEach((property) => {\n const { name, format, required } = property;\n\n if (required && !(name in props)) {\n throwRequiredError(schema.name, name);\n }\n\n if (name in props && (props[name] !== undefined || required)) {\n validateValueWithFormat(schemaName, name, props[name], format, validationsMemo, nextValidationsMemo);\n }\n });\n};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const useValidateTypescriptPropTypes = <T = Record<string, any>>(\n props: PropsWithChildren<T>,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n propTypes: any,\n): void => {\n const [validationsMemo, setValidationsMemo] = useState({});\n\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n const ComponentWithSchema = useMemo(() => {\n const Component = () => {};\n\n // eslint-disable-next-line @typescript-eslint/no-unsafe-return, @typescript-eslint/no-unsafe-call\n return describe(Component);\n }, []);\n\n // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment\n ComponentWithSchema.propTypes = propTypes;\n\n useMemo(() => {\n const nextValidationsMemo = {};\n\n validateTypescriptPropTypesImplementation(\n props,\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call\n ComponentWithSchema.toTypescript(),\n validationsMemo,\n nextValidationsMemo,\n );\n\n setValidationsMemo(nextValidationsMemo);\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [props]);\n};\n"],
5
+ "mappings": "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",
6
+ "names": []
7
+ }
@@ -0,0 +1,26 @@
1
+ import * as React from "react";
2
+ import { throwRequiredError, throwTypeError } from "./errorTemplates";
3
+ const useValidatePropTypes = (props, schema) => {
4
+ schema.properties.forEach((property) => {
5
+ const propertyName = property.name;
6
+ const currentProp = props[propertyName];
7
+ const currentPropTypeOf = typeof currentProp;
8
+ const currentFormat = property.format;
9
+ let isValidReactElement = false;
10
+ if (property.required && !Object.prototype.hasOwnProperty.call(props, property.name)) {
11
+ throwRequiredError(schema.name, property.name);
12
+ }
13
+ if (currentPropTypeOf !== "undefined" && currentProp !== null) {
14
+ if (currentPropTypeOf === "object" && Object.prototype.hasOwnProperty.call(currentProp, "$$typeof") && (currentFormat.includes("node") || currentFormat.includes("element"))) {
15
+ isValidReactElement = true;
16
+ }
17
+ if (!currentFormat.includes(currentPropTypeOf) && !currentFormat.includes(currentProp) && !isValidReactElement) {
18
+ throwTypeError(schema.name, propertyName, currentProp, currentFormat);
19
+ }
20
+ }
21
+ });
22
+ };
23
+ export {
24
+ useValidatePropTypes
25
+ };
26
+ //# sourceMappingURL=validator.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/validation/validator.ts"],
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable complexity */\n/* eslint-disable @typescript-eslint/explicit-module-boundary-types */\nimport { throwRequiredError, throwTypeError } from './errorTemplates';\n\nexport const useValidatePropTypes = (props: Record<string, unknown>, schema): void => {\n schema.properties.forEach((property) => {\n const propertyName = property.name;\n const currentProp = props[propertyName];\n const currentPropTypeOf = typeof currentProp;\n // eslint-disable-next-line max-len\n const currentFormat = property.format; // this is csv representing types e.g.: \"string\"/\"string,number\"/\"[object],string\"\n let isValidReactElement = false;\n // this depends on react desc definition\n if (property.required && !Object.prototype.hasOwnProperty.call(props, property.name)) {\n throwRequiredError(schema.name, property.name);\n }\n if (currentPropTypeOf !== 'undefined' && currentProp !== null) {\n if (\n currentPropTypeOf === 'object' &&\n Object.prototype.hasOwnProperty.call(currentProp, '$$typeof') &&\n (currentFormat.includes('node') || currentFormat.includes('element'))\n ) {\n isValidReactElement = true;\n }\n\n if (!currentFormat.includes(currentPropTypeOf) && !currentFormat.includes(currentProp) && !isValidReactElement) {\n throwTypeError(schema.name, propertyName, currentProp, currentFormat);\n }\n }\n });\n};\n"],
5
+ "mappings": "AAAA;ACEA;AAEO,MAAM,uBAAuB,CAAC,OAAgC,WAAiB;AACpF,SAAO,WAAW,QAAQ,CAAC,aAAa;AACtC,UAAM,eAAe,SAAS;AAC9B,UAAM,cAAc,MAAM;AAC1B,UAAM,oBAAoB,OAAO;AAEjC,UAAM,gBAAgB,SAAS;AAC/B,QAAI,sBAAsB;AAE1B,QAAI,SAAS,YAAY,CAAC,OAAO,UAAU,eAAe,KAAK,OAAO,SAAS,OAAO;AACpF,yBAAmB,OAAO,MAAM,SAAS;AAAA;AAE3C,QAAI,sBAAsB,eAAe,gBAAgB,MAAM;AAC7D,UACE,sBAAsB,YACtB,OAAO,UAAU,eAAe,KAAK,aAAa,eACjD,eAAc,SAAS,WAAW,cAAc,SAAS,aAC1D;AACA,8BAAsB;AAAA;AAGxB,UAAI,CAAC,cAAc,SAAS,sBAAsB,CAAC,cAAc,SAAS,gBAAgB,CAAC,qBAAqB;AAC9G,uBAAe,OAAO,MAAM,cAAc,aAAa;AAAA;AAAA;AAAA;AAAA;",
6
+ "names": []
7
+ }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -64,7 +64,7 @@ export interface TypescriptDocumentation extends Partial<ComponentDocumentation>
64
64
  }
65
65
  export declare type DocumentedReactComponent<T> = React.ComponentType<T> & {
66
66
  availableAt: unknown;
67
- description: (descr: string) => DocumentedReactComponent<T>;
67
+ description: unknown;
68
68
  details: unknown;
69
69
  deprecated: unknown;
70
70
  usage: unknown;
File without changes
File without changes