remix-validated-form 0.0.4 → 1.1.1-beta.1

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 (72) hide show
  1. package/.eslintcache +1 -1
  2. package/.prettierignore +2 -0
  3. package/README.md +76 -19
  4. package/browser/ValidatedForm.d.ts +22 -0
  5. package/browser/ValidatedForm.js +5 -2
  6. package/browser/flatten.d.ts +4 -0
  7. package/browser/flatten.js +35 -0
  8. package/browser/hooks.d.ts +28 -3
  9. package/browser/hooks.js +17 -2
  10. package/browser/index.d.ts +2 -0
  11. package/browser/index.js +2 -0
  12. package/browser/internal/flatten.d.ts +4 -0
  13. package/browser/internal/flatten.js +35 -0
  14. package/browser/internal/formContext.d.ts +18 -0
  15. package/browser/server.d.ts +5 -0
  16. package/browser/server.js +5 -0
  17. package/browser/test-data/testFormData.d.ts +15 -0
  18. package/browser/test-data/testFormData.js +46 -0
  19. package/browser/validation/createValidator.d.ts +7 -0
  20. package/browser/validation/createValidator.js +19 -0
  21. package/browser/validation/types.d.ts +14 -2
  22. package/browser/validation/validation.test.js +221 -8
  23. package/browser/validation/withYup.d.ts +3 -0
  24. package/browser/validation/withYup.js +31 -25
  25. package/browser/validation/withZod.d.ts +6 -0
  26. package/browser/validation/withZod.js +50 -0
  27. package/build/ValidatedForm.d.ts +22 -0
  28. package/build/ValidatedForm.js +5 -2
  29. package/build/flatten.d.ts +4 -0
  30. package/build/flatten.js +43 -0
  31. package/build/hooks.d.ts +28 -3
  32. package/build/hooks.js +20 -2
  33. package/build/index.d.ts +2 -0
  34. package/build/index.js +2 -0
  35. package/build/internal/flatten.d.ts +4 -0
  36. package/build/internal/flatten.js +43 -0
  37. package/build/internal/formContext.d.ts +18 -0
  38. package/build/server.d.ts +5 -0
  39. package/build/server.js +5 -0
  40. package/build/test-data/testFormData.d.ts +15 -0
  41. package/build/test-data/testFormData.js +50 -0
  42. package/build/validation/createValidator.d.ts +7 -0
  43. package/build/validation/createValidator.js +23 -0
  44. package/build/validation/types.d.ts +14 -2
  45. package/build/validation/validation.test.js +221 -8
  46. package/build/validation/withYup.d.ts +3 -0
  47. package/build/validation/withYup.js +31 -25
  48. package/build/validation/withZod.d.ts +6 -0
  49. package/build/validation/withZod.js +57 -0
  50. package/package.json +20 -14
  51. package/sample-app/.env +7 -0
  52. package/sample-app/README.md +53 -0
  53. package/sample-app/app/components/ErrorBox.tsx +34 -0
  54. package/sample-app/app/components/FormInput.tsx +40 -0
  55. package/sample-app/app/components/FormSelect.tsx +37 -0
  56. package/sample-app/app/components/SubjectForm.tsx +150 -0
  57. package/sample-app/app/entry.client.tsx +4 -0
  58. package/sample-app/app/entry.server.tsx +21 -0
  59. package/sample-app/app/root.tsx +92 -0
  60. package/sample-app/app/routes/index.tsx +5 -0
  61. package/sample-app/app/routes/subjects/$id.edit.tsx +98 -0
  62. package/sample-app/app/routes/subjects/index.tsx +112 -0
  63. package/sample-app/app/routes/subjects/new.tsx +46 -0
  64. package/sample-app/app/services/db.server.ts +23 -0
  65. package/sample-app/app/types.ts +6 -0
  66. package/sample-app/package-lock.json +10890 -0
  67. package/sample-app/package.json +36 -0
  68. package/sample-app/prisma/dev.db +0 -0
  69. package/sample-app/prisma/schema.prisma +34 -0
  70. package/sample-app/public/favicon.ico +0 -0
  71. package/sample-app/remix.config.js +10 -0
  72. package/sample-app/remix.env.d.ts +2 -0
@@ -1,11 +1,29 @@
1
1
  /// <reference types="react" />
2
2
  import { FieldErrors } from "../validation/types";
3
3
  export declare type FormContextValue = {
4
+ /**
5
+ * All the errors in all the fields in the form.
6
+ */
4
7
  fieldErrors: FieldErrors;
8
+ /**
9
+ * Clear the errors of the specified fields.
10
+ */
5
11
  clearError: (...names: string[]) => void;
12
+ /**
13
+ * Validate the specified field.
14
+ */
6
15
  validateField: (fieldName: string) => void;
16
+ /**
17
+ * The `action` prop of the form.
18
+ */
7
19
  action?: string;
20
+ /**
21
+ * Whether or not the form is submitting.
22
+ */
8
23
  isSubmitting: boolean;
24
+ /**
25
+ * The default values of the form.
26
+ */
9
27
  defaultValues?: {
10
28
  [fieldName: string]: any;
11
29
  };
package/build/server.d.ts CHANGED
@@ -1,2 +1,7 @@
1
1
  import { FieldErrors } from "./validation/types";
2
+ /**
3
+ * Takes the errors from a `Validator` and returns a `Response`.
4
+ * The `ValidatedForm` on the frontend will automatically display the errors
5
+ * if this is returned from the action.
6
+ */
2
7
  export declare const validationError: (errors: FieldErrors) => Response;
package/build/server.js CHANGED
@@ -2,5 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.validationError = void 0;
4
4
  const server_runtime_1 = require("@remix-run/server-runtime");
5
+ /**
6
+ * Takes the errors from a `Validator` and returns a `Response`.
7
+ * The `ValidatedForm` on the frontend will automatically display the errors
8
+ * if this is returned from the action.
9
+ */
5
10
  const validationError = (errors) => (0, server_runtime_1.json)({ fieldErrors: errors }, { status: 422 });
6
11
  exports.validationError = validationError;
@@ -0,0 +1,15 @@
1
+ export declare class TestFormData implements FormData {
2
+ private _params;
3
+ constructor(body?: string);
4
+ append(name: string, value: string | Blob, fileName?: string): void;
5
+ delete(name: string): void;
6
+ get(name: string): FormDataEntryValue | null;
7
+ getAll(name: string): FormDataEntryValue[];
8
+ has(name: string): boolean;
9
+ set(name: string, value: string | Blob, fileName?: string): void;
10
+ forEach(callbackfn: (value: FormDataEntryValue, key: string, parent: FormData) => void, thisArg?: any): void;
11
+ entries(): IterableIterator<[string, FormDataEntryValue]>;
12
+ keys(): IterableIterator<string>;
13
+ values(): IterableIterator<FormDataEntryValue>;
14
+ [Symbol.iterator](): IterableIterator<[string, FormDataEntryValue]>;
15
+ }
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TestFormData = void 0;
4
+ // Copied from remix to use in tests
5
+ // https://github.com/remix-run/remix/blob/a69a631cb5add72d5fb24211ab2a0be367b6f2fd/packages/remix-node/form-data.ts
6
+ class TestFormData {
7
+ constructor(body) {
8
+ this._params = new URLSearchParams(body);
9
+ }
10
+ append(name, value, fileName) {
11
+ if (typeof value !== "string") {
12
+ throw new Error("formData.append can only accept a string");
13
+ }
14
+ this._params.append(name, value);
15
+ }
16
+ delete(name) {
17
+ this._params.delete(name);
18
+ }
19
+ get(name) {
20
+ return this._params.get(name);
21
+ }
22
+ getAll(name) {
23
+ return this._params.getAll(name);
24
+ }
25
+ has(name) {
26
+ return this._params.has(name);
27
+ }
28
+ set(name, value, fileName) {
29
+ if (typeof value !== "string") {
30
+ throw new Error("formData.set can only accept a string");
31
+ }
32
+ this._params.set(name, value);
33
+ }
34
+ forEach(callbackfn, thisArg) {
35
+ this._params.forEach(callbackfn, thisArg);
36
+ }
37
+ entries() {
38
+ return this._params.entries();
39
+ }
40
+ keys() {
41
+ return this._params.keys();
42
+ }
43
+ values() {
44
+ return this._params.values();
45
+ }
46
+ *[Symbol.iterator]() {
47
+ yield* this._params;
48
+ }
49
+ }
50
+ exports.TestFormData = TestFormData;
@@ -0,0 +1,7 @@
1
+ import { Validator } from "..";
2
+ /**
3
+ * Used to create a validator for a form.
4
+ * It provides built-in handling for unflattening nested objects and
5
+ * extracting the values from FormData.
6
+ */
7
+ export declare function createValidator<T>(validator: Validator<T>): Validator<T>;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.createValidator = void 0;
4
+ const flatten_1 = require("../internal/flatten");
5
+ const preprocessFormData = (data) => {
6
+ // A slightly janky way of determining if the data is a FormData object
7
+ // since node doesn't really have FormData
8
+ if ("entries" in data && typeof data.entries === "function")
9
+ return (0, flatten_1.objectFromPathEntries)([...data.entries()]);
10
+ return (0, flatten_1.objectFromPathEntries)(Object.entries(data));
11
+ };
12
+ /**
13
+ * Used to create a validator for a form.
14
+ * It provides built-in handling for unflattening nested objects and
15
+ * extracting the values from FormData.
16
+ */
17
+ function createValidator(validator) {
18
+ return {
19
+ validate: (value) => validator.validate(preprocessFormData(value)),
20
+ validateField: (data, field) => validator.validateField(preprocessFormData(data), field),
21
+ };
22
+ }
23
+ exports.createValidator = createValidator;
@@ -1,4 +1,10 @@
1
1
  export declare type FieldErrors = Record<string, string>;
2
+ export declare type GenericObject = {
3
+ [key: string]: any;
4
+ };
5
+ /**
6
+ * The result when validating a form.
7
+ */
2
8
  export declare type ValidationResult<DataType> = {
3
9
  data: DataType;
4
10
  error: undefined;
@@ -6,10 +12,16 @@ export declare type ValidationResult<DataType> = {
6
12
  error: FieldErrors;
7
13
  data: undefined;
8
14
  };
15
+ /**
16
+ * The result when validating an individual field in a form.
17
+ */
9
18
  export declare type ValidateFieldResult = {
10
19
  error?: string;
11
20
  };
21
+ /**
22
+ * A `Validator` can be passed to the `validator` prop of a `ValidatedForm`.
23
+ */
12
24
  export declare type Validator<DataType> = {
13
- validate: (unvalidatedData: unknown) => ValidationResult<DataType>;
14
- validateField: (unvalidatedData: unknown, field: string) => ValidateFieldResult;
25
+ validate: (unvalidatedData: GenericObject) => ValidationResult<DataType>;
26
+ validateField: (unvalidatedData: GenericObject, field: string) => ValidateFieldResult;
15
27
  };
@@ -20,7 +20,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
20
20
  };
21
21
  Object.defineProperty(exports, "__esModule", { value: true });
22
22
  const yup = __importStar(require("yup"));
23
+ const zod_1 = require("zod");
23
24
  const __1 = require("..");
25
+ const testFormData_1 = require("../test-data/testFormData");
26
+ const withZod_1 = require("./withZod");
24
27
  const validationTestCases = [
25
28
  {
26
29
  name: "yup",
@@ -28,6 +31,37 @@ const validationTestCases = [
28
31
  firstName: yup.string().required(),
29
32
  lastName: yup.string().required(),
30
33
  age: yup.number(),
34
+ address: yup
35
+ .object({
36
+ streetAddress: yup.string().required(),
37
+ city: yup.string().required(),
38
+ country: yup.string().required(),
39
+ })
40
+ .required(),
41
+ pets: yup.array().of(yup.object({
42
+ animal: yup.string().required(),
43
+ name: yup.string().required(),
44
+ })),
45
+ })),
46
+ },
47
+ {
48
+ name: "zod",
49
+ validator: (0, withZod_1.withZod)(zod_1.z.object({
50
+ firstName: zod_1.z.string().nonempty(),
51
+ lastName: zod_1.z.string().nonempty(),
52
+ age: zod_1.z.optional(zod_1.z.number()),
53
+ address: zod_1.z.preprocess((value) => (value == null ? {} : value), zod_1.z.object({
54
+ streetAddress: zod_1.z.string().nonempty(),
55
+ city: zod_1.z.string().nonempty(),
56
+ country: zod_1.z.string().nonempty(),
57
+ })),
58
+ pets: zod_1.z
59
+ .object({
60
+ animal: zod_1.z.string().nonempty(),
61
+ name: zod_1.z.string().nonempty(),
62
+ })
63
+ .array()
64
+ .optional(),
31
65
  })),
32
66
  },
33
67
  ];
@@ -37,41 +71,220 @@ describe("Validation", () => {
37
71
  describe.each(validationTestCases)("Adapter for $name", ({ validator }) => {
38
72
  describe("validate", () => {
39
73
  it("should return the data when valid", () => {
40
- const obj = {
74
+ const person = {
41
75
  firstName: "John",
42
76
  lastName: "Doe",
43
77
  age: 30,
78
+ address: {
79
+ streetAddress: "123 Main St",
80
+ city: "Anytown",
81
+ country: "USA",
82
+ },
83
+ pets: [{ animal: "dog", name: "Fido" }],
44
84
  };
45
- expect(validator.validate(obj)).toEqual({
46
- data: obj,
85
+ expect(validator.validate(person)).toEqual({
86
+ data: person,
47
87
  error: undefined,
48
88
  });
49
89
  });
50
90
  it("should return field errors when invalid", () => {
51
- const obj = { age: "hi!" };
91
+ const obj = { age: "hi!", pets: [{ animal: "dog" }] };
52
92
  expect(validator.validate(obj)).toEqual({
53
93
  data: undefined,
54
94
  error: {
55
95
  firstName: anyString,
56
96
  lastName: anyString,
57
97
  age: anyString,
98
+ "address.city": anyString,
99
+ "address.country": anyString,
100
+ "address.streetAddress": anyString,
101
+ "pets[0].name": anyString,
58
102
  },
59
103
  });
60
104
  });
105
+ it("should unflatten data when validating", () => {
106
+ const data = {
107
+ firstName: "John",
108
+ lastName: "Doe",
109
+ age: 30,
110
+ "address.streetAddress": "123 Main St",
111
+ "address.city": "Anytown",
112
+ "address.country": "USA",
113
+ "pets[0].animal": "dog",
114
+ "pets[0].name": "Fido",
115
+ };
116
+ expect(validator.validate(data)).toEqual({
117
+ data: {
118
+ firstName: "John",
119
+ lastName: "Doe",
120
+ age: 30,
121
+ address: {
122
+ streetAddress: "123 Main St",
123
+ city: "Anytown",
124
+ country: "USA",
125
+ },
126
+ pets: [{ animal: "dog", name: "Fido" }],
127
+ },
128
+ error: undefined,
129
+ });
130
+ });
131
+ it("should accept FormData directly and return errors", () => {
132
+ const formData = new testFormData_1.TestFormData();
133
+ formData.set("firstName", "John");
134
+ formData.set("lastName", "Doe");
135
+ formData.set("address.streetAddress", "123 Main St");
136
+ formData.set("address.country", "USA");
137
+ formData.set("pets[0].animal", "dog");
138
+ expect(validator.validate(formData)).toEqual({
139
+ data: undefined,
140
+ error: {
141
+ "address.city": anyString,
142
+ "pets[0].name": anyString,
143
+ },
144
+ });
145
+ });
146
+ it("should accept FormData directly and return valid data", () => {
147
+ const formData = new testFormData_1.TestFormData();
148
+ formData.set("firstName", "John");
149
+ formData.set("lastName", "Doe");
150
+ formData.set("address.streetAddress", "123 Main St");
151
+ formData.set("address.country", "USA");
152
+ formData.set("address.city", "Anytown");
153
+ formData.set("pets[0].animal", "dog");
154
+ formData.set("pets[0].name", "Fido");
155
+ expect(validator.validate(formData)).toEqual({
156
+ data: {
157
+ firstName: "John",
158
+ lastName: "Doe",
159
+ address: {
160
+ streetAddress: "123 Main St",
161
+ country: "USA",
162
+ city: "Anytown",
163
+ },
164
+ pets: [{ animal: "dog", name: "Fido" }],
165
+ },
166
+ error: undefined,
167
+ });
168
+ });
61
169
  });
62
170
  describe("validateField", () => {
63
171
  it("should not return an error if field is valid", () => {
64
- const obj = { firstName: "John", lastName: 123 };
65
- expect(validator.validateField(obj, "firstName")).toEqual({
172
+ const person = {
173
+ firstName: "John",
174
+ lastName: {}, // invalid, but we should only be validating firstName
175
+ };
176
+ expect(validator.validateField(person, "firstName")).toEqual({
177
+ error: undefined,
178
+ });
179
+ });
180
+ it("should not return an error if a nested field is valid", () => {
181
+ const person = {
182
+ firstName: "John",
183
+ lastName: {},
184
+ address: {
185
+ streetAddress: "123 Main St",
186
+ city: "Anytown",
187
+ country: "USA",
188
+ },
189
+ pets: [{ animal: "dog", name: "Fido" }],
190
+ };
191
+ expect(validator.validateField(person, "address.streetAddress")).toEqual({
192
+ error: undefined,
193
+ });
194
+ expect(validator.validateField(person, "address.city")).toEqual({
195
+ error: undefined,
196
+ });
197
+ expect(validator.validateField(person, "address.country")).toEqual({
198
+ error: undefined,
199
+ });
200
+ expect(validator.validateField(person, "pets[0].animal")).toEqual({
201
+ error: undefined,
202
+ });
203
+ expect(validator.validateField(person, "pets[0].name")).toEqual({
66
204
  error: undefined,
67
205
  });
68
206
  });
69
207
  it("should return an error if field is invalid", () => {
70
- const obj = { firstName: "John", lastName: {} };
71
- expect(validator.validateField(obj, "lastName")).toEqual({
208
+ const person = {
209
+ firstName: "John",
210
+ lastName: {},
211
+ address: {
212
+ streetAddress: "123 Main St",
213
+ city: 1234,
214
+ },
215
+ };
216
+ expect(validator.validateField(person, "lastName")).toEqual({
217
+ error: anyString,
218
+ });
219
+ });
220
+ it("should return an error if a nested field is invalid", () => {
221
+ const person = {
222
+ firstName: "John",
223
+ lastName: {},
224
+ address: {
225
+ streetAddress: "123 Main St",
226
+ city: 1234,
227
+ },
228
+ pets: [{ animal: "dog" }],
229
+ };
230
+ expect(validator.validateField(person, "address.country")).toEqual({
231
+ error: anyString,
232
+ });
233
+ expect(validator.validateField(person, "pets[0].name")).toEqual({
72
234
  error: anyString,
73
235
  });
74
236
  });
75
237
  });
76
238
  });
77
239
  });
240
+ describe("withZod", () => {
241
+ it("returns coherent errors for complex schemas", () => {
242
+ const schema = zod_1.z.union([
243
+ zod_1.z.object({
244
+ type: zod_1.z.literal("foo"),
245
+ foo: zod_1.z.string(),
246
+ }),
247
+ zod_1.z.object({
248
+ type: zod_1.z.literal("bar"),
249
+ bar: zod_1.z.string(),
250
+ }),
251
+ ]);
252
+ const obj = {
253
+ type: "foo",
254
+ bar: 123,
255
+ foo: 123,
256
+ };
257
+ expect((0, withZod_1.withZod)(schema).validate(obj)).toEqual({
258
+ data: undefined,
259
+ error: {
260
+ type: anyString,
261
+ bar: anyString,
262
+ foo: anyString,
263
+ },
264
+ });
265
+ });
266
+ it("returns errors for fields that are unions", () => {
267
+ const schema = zod_1.z.object({
268
+ field1: zod_1.z.union([zod_1.z.literal("foo"), zod_1.z.literal("bar")]),
269
+ field2: zod_1.z.union([zod_1.z.literal("foo"), zod_1.z.literal("bar")]),
270
+ });
271
+ const obj = {
272
+ field1: "a value",
273
+ // field2 missing
274
+ };
275
+ const validator = (0, withZod_1.withZod)(schema);
276
+ expect(validator.validate(obj)).toEqual({
277
+ data: undefined,
278
+ error: {
279
+ field1: anyString,
280
+ field2: anyString,
281
+ },
282
+ });
283
+ expect(validator.validateField(obj, "field1")).toEqual({
284
+ error: anyString,
285
+ });
286
+ expect(validator.validateField(obj, "field2")).toEqual({
287
+ error: anyString,
288
+ });
289
+ });
290
+ });
@@ -1,3 +1,6 @@
1
1
  import type { AnyObjectSchema, InferType } from "yup";
2
2
  import { Validator } from "./types";
3
+ /**
4
+ * Create a `Validator` using a `yup` schema.
5
+ */
3
6
  export declare const withYup: <Schema extends AnyObjectSchema>(validationSchema: Schema) => Validator<InferType<Schema>>;
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.withYup = void 0;
4
+ const createValidator_1 = require("./createValidator");
4
5
  const validationErrorToFieldErrors = (error) => {
5
6
  const fieldErrors = {};
6
7
  error.inner.forEach((innerError) => {
@@ -10,29 +11,34 @@ const validationErrorToFieldErrors = (error) => {
10
11
  });
11
12
  return fieldErrors;
12
13
  };
13
- const withYup = (validationSchema) => ({
14
- validate: (data) => {
15
- try {
16
- const validated = validationSchema.validateSync(data, {
17
- abortEarly: false,
18
- });
19
- return { data: validated, error: undefined };
20
- }
21
- catch (err) {
22
- return {
23
- error: validationErrorToFieldErrors(err),
24
- data: undefined,
25
- };
26
- }
27
- },
28
- validateField: (data, field) => {
29
- try {
30
- validationSchema.validateSyncAt(field, data);
31
- return {};
32
- }
33
- catch (err) {
34
- return { error: err.message };
35
- }
36
- },
37
- });
14
+ /**
15
+ * Create a `Validator` using a `yup` schema.
16
+ */
17
+ const withYup = (validationSchema) => {
18
+ return (0, createValidator_1.createValidator)({
19
+ validate: (data) => {
20
+ try {
21
+ const validated = validationSchema.validateSync(data, {
22
+ abortEarly: false,
23
+ });
24
+ return { data: validated, error: undefined };
25
+ }
26
+ catch (err) {
27
+ return {
28
+ error: validationErrorToFieldErrors(err),
29
+ data: undefined,
30
+ };
31
+ }
32
+ },
33
+ validateField: (data, field) => {
34
+ try {
35
+ validationSchema.validateSyncAt(field, data);
36
+ return {};
37
+ }
38
+ catch (err) {
39
+ return { error: err.message };
40
+ }
41
+ },
42
+ });
43
+ };
38
44
  exports.withYup = withYup;
@@ -0,0 +1,6 @@
1
+ import type { z } from "zod";
2
+ import { Validator } from "..";
3
+ /**
4
+ * Create a validator using a `zod` schema.
5
+ */
6
+ export declare function withZod<T>(zodSchema: z.Schema<T>): Validator<T>;
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.withZod = void 0;
7
+ const isEqual_1 = __importDefault(require("lodash/isEqual"));
8
+ const toPath_1 = __importDefault(require("lodash/toPath"));
9
+ const createValidator_1 = require("./createValidator");
10
+ const getIssuesForError = (err) => {
11
+ return err.issues.flatMap((issue) => {
12
+ if ("unionErrors" in issue) {
13
+ return issue.unionErrors.flatMap((err) => getIssuesForError(err));
14
+ }
15
+ else {
16
+ return [issue];
17
+ }
18
+ });
19
+ };
20
+ function pathToString(array) {
21
+ return array.reduce(function (string, item) {
22
+ var prefix = string === "" ? "" : ".";
23
+ return string + (isNaN(Number(item)) ? prefix + item : "[" + item + "]");
24
+ }, "");
25
+ }
26
+ /**
27
+ * Create a validator using a `zod` schema.
28
+ */
29
+ function withZod(zodSchema) {
30
+ return (0, createValidator_1.createValidator)({
31
+ validate: (value) => {
32
+ const result = zodSchema.safeParse(value);
33
+ if (result.success)
34
+ return { data: result.data, error: undefined };
35
+ const fieldErrors = {};
36
+ getIssuesForError(result.error).forEach((issue) => {
37
+ const path = pathToString(issue.path);
38
+ if (!fieldErrors[path])
39
+ fieldErrors[path] = issue.message;
40
+ });
41
+ return { error: fieldErrors, data: undefined };
42
+ },
43
+ validateField: (data, field) => {
44
+ var _a;
45
+ const result = zodSchema.safeParse(data);
46
+ if (result.success)
47
+ return { error: undefined };
48
+ return {
49
+ error: (_a = getIssuesForError(result.error).find((issue) => {
50
+ const allPathsAsString = issue.path.map((p) => `${p}`);
51
+ return (0, isEqual_1.default)(allPathsAsString, (0, toPath_1.default)(field));
52
+ })) === null || _a === void 0 ? void 0 : _a.message,
53
+ };
54
+ },
55
+ });
56
+ }
57
+ exports.withZod = withZod;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remix-validated-form",
3
- "version": "0.0.4",
3
+ "version": "1.1.1-beta.1",
4
4
  "description": "Form component and utils for easy form validation in remix",
5
5
  "browser": "./browser/index.js",
6
6
  "main": "./build/index.js",
@@ -14,7 +14,10 @@
14
14
  "build:browser": "tsc --project tsconfig.json --module ESNext --outDir ./browser",
15
15
  "build:main": "tsc --project tsconfig.json --module CommonJS --outDir ./build",
16
16
  "build:tests": "tsc --project tsconfig.json --module CommonJS --outDir ./test-app/remix-validated-form",
17
+ "build:sample": "tsc --project tsconfig.json --module CommonJS --outDir ./sample-app/remix-validated-form",
18
+ "sample-app": "npm run build:sample && cd sample-app && npm run dev",
17
19
  "test": "jest src",
20
+ "test:watch": "jest src --watch",
18
21
  "lint": "eslint .",
19
22
  "prettier": "prettier . --write",
20
23
  "prepare": "husky install",
@@ -35,22 +38,23 @@
35
38
  "validation"
36
39
  ],
37
40
  "peerDependencies": {
38
- "@remix-run/react": "^1.0.0",
39
- "@remix-run/server-runtime": "^1.0.0",
41
+ "@remix-run/react": "^1.0.6",
42
+ "@remix-run/server-runtime": "^1.0.6",
40
43
  "react": "^17.0.2"
41
44
  },
42
45
  "devDependencies": {
43
- "@remix-run/react": "^1.0.0",
44
- "@remix-run/server-runtime": "^1.0.0",
46
+ "@remix-run/react": "^1.0.6",
47
+ "@remix-run/server-runtime": "^1.0.6",
45
48
  "@types/jest": "^27.0.3",
46
- "@types/react": "^17.0.36",
47
- "@typescript-eslint/eslint-plugin": "^4.33.0",
48
- "@typescript-eslint/parser": "^4.33.0",
49
+ "@types/lodash": "^4.14.178",
50
+ "@types/react": "^17.0.37",
51
+ "@typescript-eslint/eslint-plugin": "^5.6.0",
52
+ "@typescript-eslint/parser": "^5.6.0",
49
53
  "babel-eslint": "^10.1.0",
50
54
  "eslint": "^7.32.0",
51
55
  "eslint-config-react-app": "^6.0.0",
52
56
  "eslint-plugin-cypress": "^2.12.1",
53
- "eslint-plugin-flowtype": "^5.10.0",
57
+ "eslint-plugin-flowtype": "^8.0.3",
54
58
  "eslint-plugin-import": "^2.25.3",
55
59
  "eslint-plugin-jsx-a11y": "^6.5.1",
56
60
  "eslint-plugin-prettier": "^4.0.0",
@@ -58,15 +62,17 @@
58
62
  "eslint-plugin-react-hooks": "^4.3.0",
59
63
  "fetch-blob": "^3.1.3",
60
64
  "husky": "^7.0.4",
61
- "jest": "^27.3.1",
65
+ "jest": "^27.4.4",
62
66
  "lint-staged": "^12.1.2",
63
- "prettier": "^2.5.0",
67
+ "prettier": "^2.5.1",
64
68
  "react": "^17.0.2",
65
- "ts-jest": "^27.0.7",
66
- "typescript": "^4.5.2",
67
- "yup": "^0.32.11"
69
+ "ts-jest": "^27.1.1",
70
+ "typescript": "^4.5.3",
71
+ "yup": "^0.32.11",
72
+ "zod": "^3.11.6"
68
73
  },
69
74
  "dependencies": {
75
+ "lodash": "^4.17.21",
70
76
  "tiny-invariant": "^1.2.0"
71
77
  },
72
78
  "lint-staged": {