remix-validated-form 3.4.2 → 4.0.1-beta.2

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.
@@ -1,9 +1,9 @@
1
1
  $ npm run build:browser && npm run build:main
2
2
 
3
- > remix-validated-form@3.4.1 build:browser
3
+ > remix-validated-form@4.0.1-beta.1 build:browser
4
4
  > tsc --module ESNext --outDir ./browser
5
5
 
6
6
 
7
- > remix-validated-form@3.4.1 build:main
7
+ > remix-validated-form@4.0.1-beta.1 build:main
8
8
  > tsc --module CommonJS --outDir ./build
9
9
 
package/README.md CHANGED
@@ -120,7 +120,7 @@ const validator = withYup(
120
120
  );
121
121
 
122
122
  export const action: ActionFunction = async ({ request }) => {
123
- const fieldValues = validator.validate(await request.formData());
123
+ const fieldValues = await validator.validate(await request.formData());
124
124
  if (fieldValues.error) return validationError(fieldValues.error);
125
125
  const { firstName, lastName, email } = fieldValues.data;
126
126
 
@@ -10,7 +10,7 @@ export declare type FormProps<DataType> = {
10
10
  * A submit callback that gets called when the form is submitted
11
11
  * after all validations have been run.
12
12
  */
13
- onSubmit?: (data: DataType, event: React.FormEvent<HTMLFormElement>) => void;
13
+ onSubmit?: (data: DataType, event: React.FormEvent<HTMLFormElement>) => Promise<void>;
14
14
  /**
15
15
  * Allows you to provide a `fetcher` from remix's `useFetcher` hook.
16
16
  * The form will use the fetcher for loading states, action data, etc
@@ -47,4 +47,4 @@ export declare type FormProps<DataType> = {
47
47
  /**
48
48
  * The primary form component of `remix-validated-form`.
49
49
  */
50
- export declare function ValidatedForm<DataType>({ validator, onSubmit, children, fetcher, action, defaultValues, formRef: formRefProp, onReset, subaction, resetAfterSubmit, disableFocusOnError, ...rest }: FormProps<DataType>): JSX.Element;
50
+ export declare function ValidatedForm<DataType>({ validator, onSubmit, children, fetcher, action, defaultValues, formRef: formRefProp, onReset, subaction, resetAfterSubmit, disableFocusOnError, method, replace, ...rest }: FormProps<DataType>): JSX.Element;
@@ -1,25 +1,25 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Form as RemixForm, useActionData, useFormAction, useTransition, } from "@remix-run/react";
3
- import { useEffect, useMemo, useRef, useState, } from "react";
2
+ import { Form as RemixForm, useActionData, useSubmit, useTransition, } from "@remix-run/react";
3
+ import uniq from "lodash/uniq";
4
+ import React, { useEffect, useMemo, useRef, useState, } from "react";
4
5
  import invariant from "tiny-invariant";
5
6
  import { FormContext } from "./internal/formContext";
6
7
  import { useMultiValueMap } from "./internal/MultiValueMap";
7
8
  import { useSubmitComplete } from "./internal/submissionCallbacks";
8
9
  import { omit, mergeRefs } from "./internal/util";
9
- function useFieldErrorsFromBackend(fetcher, subaction) {
10
- var _a, _b;
10
+ function useErrorResponseForThisForm(fetcher, subaction) {
11
+ var _a;
11
12
  const actionData = useActionData();
12
- if (fetcher)
13
- return (_a = fetcher.data) === null || _a === void 0 ? void 0 : _a.fieldErrors;
14
- if (!actionData)
13
+ if (fetcher) {
14
+ if ((_a = fetcher.data) === null || _a === void 0 ? void 0 : _a.fieldErrors)
15
+ return fetcher.data;
15
16
  return null;
16
- if (actionData.fieldErrors) {
17
- const submittedData = (_b = actionData.fieldErrors) === null || _b === void 0 ? void 0 : _b._submittedData;
18
- const subactionsMatch = subaction
19
- ? subaction === (submittedData === null || submittedData === void 0 ? void 0 : submittedData.subaction)
20
- : !(submittedData === null || submittedData === void 0 ? void 0 : submittedData.subaction);
21
- return subactionsMatch ? actionData.fieldErrors : null;
22
17
  }
18
+ if (!(actionData === null || actionData === void 0 ? void 0 : actionData.fieldErrors))
19
+ return null;
20
+ if ((!subaction && !actionData.subaction) ||
21
+ actionData.subaction === subaction)
22
+ return actionData;
23
23
  return null;
24
24
  }
25
25
  function useFieldErrors(fieldErrorsFromBackend) {
@@ -30,19 +30,16 @@ function useFieldErrors(fieldErrorsFromBackend) {
30
30
  }, [fieldErrorsFromBackend]);
31
31
  return [fieldErrors, setFieldErrors];
32
32
  }
33
- const useIsSubmitting = (action, subaction, fetcher) => {
34
- const actionForCurrentPage = useFormAction();
35
- const pendingFormSubmit = useTransition().submission;
36
- if (fetcher)
37
- return fetcher.state === "submitting";
38
- if (!pendingFormSubmit)
39
- return false;
40
- const { formData, action: pendingAction } = pendingFormSubmit;
41
- const pendingSubAction = formData.get("subaction");
42
- const expectedAction = action !== null && action !== void 0 ? action : actionForCurrentPage;
43
- if (subaction)
44
- return expectedAction === pendingAction && subaction === pendingSubAction;
45
- return expectedAction === pendingAction && !pendingSubAction;
33
+ const useIsSubmitting = (fetcher) => {
34
+ const [isSubmitStarted, setSubmitStarted] = useState(false);
35
+ const transition = useTransition();
36
+ const hasActiveSubmission = fetcher
37
+ ? fetcher.state === "submitting"
38
+ : !!transition.submission;
39
+ const isSubmitting = hasActiveSubmission && isSubmitStarted;
40
+ const startSubmit = () => setSubmitStarted(true);
41
+ const endSubmit = () => setSubmitStarted(false);
42
+ return [isSubmitting, startSubmit, endSubmit];
46
43
  };
47
44
  const getDataFromForm = (el) => new FormData(el);
48
45
  /**
@@ -61,47 +58,69 @@ const getDataFromForm = (el) => new FormData(el);
61
58
  * It will only ever be a problem if the form includes a `<button type="reset" />`
62
59
  * and only if JS is disabled.
63
60
  */
64
- function useDefaultValues(fieldErrors, defaultValues) {
65
- const defaultsFromValidationError = fieldErrors === null || fieldErrors === void 0 ? void 0 : fieldErrors._submittedData;
66
- return defaultsFromValidationError !== null && defaultsFromValidationError !== void 0 ? defaultsFromValidationError : defaultValues;
61
+ function useDefaultValues(repopulateFieldsFromBackend, defaultValues) {
62
+ return repopulateFieldsFromBackend !== null && repopulateFieldsFromBackend !== void 0 ? repopulateFieldsFromBackend : defaultValues;
63
+ }
64
+ function nonNull(value) {
65
+ return value !== null;
67
66
  }
68
67
  const focusFirstInvalidInput = (fieldErrors, customFocusHandlers, formElement) => {
69
- const invalidInputSelector = Object.keys(fieldErrors)
70
- .map((fieldName) => `input[name="${fieldName}"]`)
71
- .join(",");
72
- const invalidInputs = formElement.querySelectorAll(invalidInputSelector);
73
- for (const element of invalidInputs) {
74
- const input = element;
75
- if (customFocusHandlers.has(input.name)) {
76
- customFocusHandlers.getAll(input.name).forEach((handler) => {
68
+ var _a;
69
+ const namesInOrder = [...formElement.elements]
70
+ .map((el) => {
71
+ const input = el instanceof RadioNodeList ? el[0] : el;
72
+ if (input instanceof HTMLInputElement)
73
+ return input.name;
74
+ return null;
75
+ })
76
+ .filter(nonNull)
77
+ .filter((name) => name in fieldErrors);
78
+ const uniqueNamesInOrder = uniq(namesInOrder);
79
+ for (const fieldName of uniqueNamesInOrder) {
80
+ if (customFocusHandlers.has(fieldName)) {
81
+ customFocusHandlers.getAll(fieldName).forEach((handler) => {
77
82
  handler();
78
83
  });
79
84
  break;
80
85
  }
81
- // We don't filter these out ahead of time because
82
- // they could have a custom focus handler
83
- if (input.type === "hidden") {
86
+ const elem = formElement.elements.namedItem(fieldName);
87
+ if (!elem)
84
88
  continue;
89
+ if (elem instanceof RadioNodeList) {
90
+ const selectedRadio = (_a = [...elem]
91
+ .filter((item) => item instanceof HTMLInputElement)
92
+ .find((item) => item.value === elem.value)) !== null && _a !== void 0 ? _a : elem[0];
93
+ if (selectedRadio && selectedRadio instanceof HTMLInputElement) {
94
+ selectedRadio.focus();
95
+ break;
96
+ }
97
+ }
98
+ if (elem instanceof HTMLInputElement) {
99
+ if (elem.type === "hidden") {
100
+ continue;
101
+ }
102
+ elem.focus();
103
+ break;
85
104
  }
86
- input.focus();
87
- break;
88
105
  }
89
106
  };
90
107
  /**
91
108
  * The primary form component of `remix-validated-form`.
92
109
  */
93
- export function ValidatedForm({ validator, onSubmit, children, fetcher, action, defaultValues, formRef: formRefProp, onReset, subaction, resetAfterSubmit, disableFocusOnError, ...rest }) {
110
+ export function ValidatedForm({ validator, onSubmit, children, fetcher, action, defaultValues, formRef: formRefProp, onReset, subaction, resetAfterSubmit, disableFocusOnError, method, replace, ...rest }) {
94
111
  var _a;
95
- const fieldErrorsFromBackend = useFieldErrorsFromBackend(fetcher, subaction);
96
- const [fieldErrors, setFieldErrors] = useFieldErrors(fieldErrorsFromBackend);
97
- const isSubmitting = useIsSubmitting(action, subaction, fetcher);
98
- const defaultsToUse = useDefaultValues(fieldErrorsFromBackend, defaultValues);
112
+ const backendError = useErrorResponseForThisForm(fetcher, subaction);
113
+ const [fieldErrors, setFieldErrors] = useFieldErrors(backendError === null || backendError === void 0 ? void 0 : backendError.fieldErrors);
114
+ const [isSubmitting, startSubmit, endSubmit] = useIsSubmitting(fetcher);
115
+ const defaultsToUse = useDefaultValues(backendError === null || backendError === void 0 ? void 0 : backendError.repopulateFields, defaultValues);
99
116
  const [touchedFields, setTouchedFields] = useState({});
100
117
  const [hasBeenSubmitted, setHasBeenSubmitted] = useState(false);
118
+ const submit = useSubmit();
101
119
  const formRef = useRef(null);
102
120
  useSubmitComplete(isSubmitting, () => {
103
121
  var _a;
104
- if (!fieldErrorsFromBackend && resetAfterSubmit) {
122
+ endSubmit();
123
+ if (!backendError && resetAfterSubmit) {
105
124
  (_a = formRef.current) === null || _a === void 0 ? void 0 : _a.reset();
106
125
  }
107
126
  });
@@ -110,7 +129,7 @@ export function ValidatedForm({ validator, onSubmit, children, fetcher, action,
110
129
  fieldErrors,
111
130
  action,
112
131
  defaultValues: defaultsToUse,
113
- isSubmitting: isSubmitting !== null && isSubmitting !== void 0 ? isSubmitting : false,
132
+ isSubmitting,
114
133
  isValid: Object.keys(fieldErrors).length === 0,
115
134
  touchedFields,
116
135
  setFieldTouched: (fieldName, touched) => setTouchedFields((prev) => ({
@@ -120,9 +139,9 @@ export function ValidatedForm({ validator, onSubmit, children, fetcher, action,
120
139
  clearError: (fieldName) => {
121
140
  setFieldErrors((prev) => omit(prev, fieldName));
122
141
  },
123
- validateField: (fieldName) => {
142
+ validateField: async (fieldName) => {
124
143
  invariant(formRef.current, "Cannot find reference to form");
125
- const { error } = validator.validateField(getDataFromForm(formRef.current), fieldName);
144
+ const { error } = await validator.validateField(getDataFromForm(formRef.current), fieldName);
126
145
  // By checking and returning `prev` here, we can avoid a re-render
127
146
  // if the validation state is the same.
128
147
  if (error) {
@@ -134,6 +153,7 @@ export function ValidatedForm({ validator, onSubmit, children, fetcher, action,
134
153
  [fieldName]: error,
135
154
  };
136
155
  });
156
+ return error;
137
157
  }
138
158
  else {
139
159
  setFieldErrors((prev) => {
@@ -141,6 +161,7 @@ export function ValidatedForm({ validator, onSubmit, children, fetcher, action,
141
161
  return prev;
142
162
  return omit(prev, fieldName);
143
163
  });
164
+ return null;
144
165
  }
145
166
  },
146
167
  registerReceiveFocus: (fieldName, handler) => {
@@ -162,18 +183,48 @@ export function ValidatedForm({ validator, onSubmit, children, fetcher, action,
162
183
  customFocusHandlers,
163
184
  ]);
164
185
  const Form = (_a = fetcher === null || fetcher === void 0 ? void 0 : fetcher.Form) !== null && _a !== void 0 ? _a : RemixForm;
165
- return (_jsx(Form, { ref: mergeRefs([formRef, formRefProp]), ...rest, action: action, onSubmit: (event) => {
186
+ let clickedButtonRef = React.useRef();
187
+ useEffect(() => {
188
+ let form = formRef.current;
189
+ if (!form)
190
+ return;
191
+ function handleClick(event) {
192
+ if (!(event.target instanceof HTMLElement))
193
+ return;
194
+ let submitButton = event.target.closest("button,input[type=submit]");
195
+ if (submitButton &&
196
+ submitButton.form === form &&
197
+ submitButton.type === "submit") {
198
+ clickedButtonRef.current = submitButton;
199
+ }
200
+ }
201
+ window.addEventListener("click", handleClick);
202
+ return () => {
203
+ window.removeEventListener("click", handleClick);
204
+ };
205
+ }, []);
206
+ return (_jsx(Form, { ref: mergeRefs([formRef, formRefProp]), ...rest, action: action, method: method, replace: replace, onSubmit: async (e) => {
207
+ e.preventDefault();
166
208
  setHasBeenSubmitted(true);
167
- const result = validator.validate(getDataFromForm(event.currentTarget));
209
+ startSubmit();
210
+ const result = await validator.validate(getDataFromForm(e.currentTarget));
168
211
  if (result.error) {
169
- event.preventDefault();
170
- setFieldErrors(result.error);
212
+ endSubmit();
213
+ setFieldErrors(result.error.fieldErrors);
171
214
  if (!disableFocusOnError) {
172
- focusFirstInvalidInput(result.error, customFocusHandlers(), formRef.current);
215
+ focusFirstInvalidInput(result.error.fieldErrors, customFocusHandlers(), formRef.current);
173
216
  }
174
217
  }
175
218
  else {
176
- onSubmit === null || onSubmit === void 0 ? void 0 : onSubmit(result.data, event);
219
+ onSubmit && onSubmit(result.data, e);
220
+ if (fetcher)
221
+ fetcher.submit(clickedButtonRef.current || e.currentTarget);
222
+ else
223
+ submit(clickedButtonRef.current || e.currentTarget, {
224
+ method,
225
+ replace,
226
+ });
227
+ clickedButtonRef.current = null;
177
228
  }
178
229
  }, onReset: (event) => {
179
230
  onReset === null || onReset === void 0 ? void 0 : onReset(event);
@@ -0,0 +1,10 @@
1
+ import { HTMLProps } from "react";
2
+ declare type ValidatedInputProps = HTMLProps<HTMLInputElement> & {
3
+ name: string;
4
+ };
5
+ export declare const ValidatedInput: ({ name, ...rest }: ValidatedInputProps) => JSX.Element;
6
+ declare type ErrorMessageProps = {
7
+ name: string;
8
+ };
9
+ export declare const ErrorMessage: ({ name }: ErrorMessageProps) => string | undefined;
10
+ export {};
@@ -0,0 +1,10 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { useField } from ".";
3
+ export const ValidatedInput = ({ name, ...rest }) => {
4
+ const { getInputProps } = useField(name);
5
+ return _jsx("input", { ...getInputProps(rest) }, void 0);
6
+ };
7
+ export const ErrorMessage = ({ name }) => {
8
+ const { error } = useField(name);
9
+ return error;
10
+ };
@@ -46,7 +46,6 @@ export declare const useField: (name: string, options?: {
46
46
  } | undefined) => FieldProps;
47
47
  /**
48
48
  * Provides access to the entire form context.
49
- * This is not usually necessary, but can be useful for advanced use cases.
50
49
  */
51
50
  export declare const useFormContext: () => import("./internal/formContext").FormContextValue;
52
51
  /**
@@ -55,3 +54,7 @@ export declare const useFormContext: () => import("./internal/formContext").Form
55
54
  * is aware of what form it's in and when _that_ form is being submitted.
56
55
  */
57
56
  export declare const useIsSubmitting: () => boolean;
57
+ /**
58
+ * Returns whether or not the current form is valid.
59
+ */
60
+ export declare const useIsValid: () => boolean;
package/browser/hooks.js CHANGED
@@ -3,11 +3,17 @@ import toPath from "lodash/toPath";
3
3
  import { useContext, useEffect, useMemo } from "react";
4
4
  import { FormContext } from "./internal/formContext";
5
5
  import { createGetInputProps, } from "./internal/getInputProps";
6
+ const useInternalFormContext = (hookName) => {
7
+ const context = useContext(FormContext);
8
+ if (!context)
9
+ throw new Error(`${hookName} must be used within a ValidatedForm component`);
10
+ return context;
11
+ };
6
12
  /**
7
13
  * Provides the data and helpers necessary to set up a field.
8
14
  */
9
15
  export const useField = (name, options) => {
10
- const { fieldErrors, clearError, validateField, defaultValues, registerReceiveFocus, touchedFields, setFieldTouched, hasBeenSubmitted, } = useContext(FormContext);
16
+ const { fieldErrors, clearError, validateField, defaultValues, registerReceiveFocus, touchedFields, setFieldTouched, hasBeenSubmitted, } = useInternalFormContext("useField");
11
17
  const isTouched = !!touchedFields[name];
12
18
  const { handleReceiveFocus } = options !== null && options !== void 0 ? options : {};
13
19
  useEffect(() => {
@@ -20,7 +26,9 @@ export const useField = (name, options) => {
20
26
  clearError: () => {
21
27
  clearError(name);
22
28
  },
23
- validate: () => validateField(name),
29
+ validate: () => {
30
+ validateField(name);
31
+ },
24
32
  defaultValue: defaultValues
25
33
  ? get(defaultValues, toPath(name), undefined)
26
34
  : undefined,
@@ -52,12 +60,15 @@ export const useField = (name, options) => {
52
60
  };
53
61
  /**
54
62
  * Provides access to the entire form context.
55
- * This is not usually necessary, but can be useful for advanced use cases.
56
63
  */
57
- export const useFormContext = () => useContext(FormContext);
64
+ export const useFormContext = () => useInternalFormContext("useFormContext");
58
65
  /**
59
66
  * Returns whether or not the parent form is currently being submitted.
60
67
  * This is different from remix's `useTransition().submission` in that it
61
68
  * is aware of what form it's in and when _that_ form is being submitted.
62
69
  */
63
- export const useIsSubmitting = () => useFormContext().isSubmitting;
70
+ export const useIsSubmitting = () => useInternalFormContext("useIsSubmitting").isSubmitting;
71
+ /**
72
+ * Returns whether or not the current form is valid.
73
+ */
74
+ export const useIsValid = () => useInternalFormContext("useIsValid").isValid;
@@ -12,7 +12,7 @@ export declare type FormContextValue = {
12
12
  /**
13
13
  * Validate the specified field.
14
14
  */
15
- validateField: (fieldName: string) => void;
15
+ validateField: (fieldName: string) => Promise<string | null>;
16
16
  /**
17
17
  * The `action` prop of the form.
18
18
  */
@@ -29,7 +29,6 @@ export declare type FormContextValue = {
29
29
  hasBeenSubmitted: boolean;
30
30
  /**
31
31
  * Whether or not the form is valid.
32
- * This is a shortcut for `Object.keys(fieldErrors).length === 0`.
33
32
  */
34
33
  isValid: boolean;
35
34
  /**
@@ -52,4 +51,4 @@ export declare type FormContextValue = {
52
51
  */
53
52
  setFieldTouched: (fieldName: string, touched: boolean) => void;
54
53
  };
55
- export declare const FormContext: import("react").Context<FormContextValue>;
54
+ export declare const FormContext: import("react").Context<FormContextValue | null>;
@@ -1,12 +1,2 @@
1
1
  import { createContext } from "react";
2
- export const FormContext = createContext({
3
- fieldErrors: {},
4
- clearError: () => { },
5
- validateField: () => { },
6
- isSubmitting: false,
7
- hasBeenSubmitted: false,
8
- isValid: true,
9
- registerReceiveFocus: () => () => { },
10
- touchedFields: {},
11
- setFieldTouched: () => { },
12
- });
2
+ export const FormContext = createContext(null);
@@ -1,7 +1,16 @@
1
- import { FieldErrors } from "./validation/types";
1
+ import { ValidatorError } from "./validation/types";
2
2
  /**
3
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.
4
+ * When you return this from your action, `ValidatedForm` on the frontend will automatically
5
+ * display the errors on the correct fields on the correct form.
6
+ *
7
+ * You can also provide a second argument to `validationError`
8
+ * to specify how to repopulate the form when JS is disabled.
9
+ *
10
+ * @example
11
+ * ```ts
12
+ * const result = validator.validate(await request.formData());
13
+ * if (result.error) return validationError(result.error, result.submittedData);
14
+ * ```
6
15
  */
7
- export declare const validationError: (errors: FieldErrors, submittedData?: unknown) => Response;
16
+ export declare function validationError(error: ValidatorError, repopulateFields?: unknown): Response;
package/browser/server.js CHANGED
@@ -1,17 +1,22 @@
1
1
  import { json } from "@remix-run/server-runtime";
2
2
  /**
3
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.
4
+ * When you return this from your action, `ValidatedForm` on the frontend will automatically
5
+ * display the errors on the correct fields on the correct form.
6
+ *
7
+ * You can also provide a second argument to `validationError`
8
+ * to specify how to repopulate the form when JS is disabled.
9
+ *
10
+ * @example
11
+ * ```ts
12
+ * const result = validator.validate(await request.formData());
13
+ * if (result.error) return validationError(result.error, result.submittedData);
14
+ * ```
6
15
  */
7
- export const validationError = (errors, submittedData) => {
8
- if (submittedData) {
9
- return json({
10
- fieldErrors: {
11
- ...errors,
12
- _submittedData: submittedData,
13
- },
14
- }, { status: 422 });
15
- }
16
- return json({ fieldErrors: errors }, { status: 422 });
17
- };
16
+ export function validationError(error, repopulateFields) {
17
+ return json({
18
+ fieldErrors: error.fieldErrors,
19
+ subaction: error.subaction,
20
+ repopulateFields,
21
+ }, { status: 422 });
22
+ }
@@ -0,0 +1 @@
1
+ export declare type ValidationState = "idle" | "validating" | "valid" | "invalid";
@@ -0,0 +1 @@
1
+ export {};
@@ -1,7 +1,7 @@
1
- import { Validator } from "..";
1
+ import { CreateValidatorArg, Validator } from "..";
2
2
  /**
3
3
  * Used to create a validator for a form.
4
4
  * It provides built-in handling for unflattening nested objects and
5
5
  * extracting the values from FormData.
6
6
  */
7
- export declare function createValidator<T>(validator: Validator<T>): Validator<T>;
7
+ export declare function createValidator<T>(validator: CreateValidatorArg<T>): Validator<T>;
@@ -13,17 +13,24 @@ const preprocessFormData = (data) => {
13
13
  */
14
14
  export function createValidator(validator) {
15
15
  return {
16
- validate: (value) => {
16
+ validate: async (value) => {
17
17
  const data = preprocessFormData(value);
18
- const result = validator.validate(data);
18
+ const result = await validator.validate(data);
19
19
  if (result.error) {
20
- // Ideally, we should probably be returning a nested object like
21
- // { fieldErrors: {}, submittedData: {} }
22
- // We should do this in the next major version of the library
23
- // but for now, we can sneak it in with the fieldErrors.
24
- result.error._submittedData = data;
20
+ return {
21
+ data: undefined,
22
+ error: {
23
+ fieldErrors: result.error,
24
+ subaction: data.subaction,
25
+ },
26
+ submittedData: data,
27
+ };
25
28
  }
26
- return result;
29
+ return {
30
+ data: result.data,
31
+ error: undefined,
32
+ submittedData: data,
33
+ };
27
34
  },
28
35
  validateField: (data, field) => validator.validateField(preprocessFormData(data), field),
29
36
  };
@@ -1,21 +1,32 @@
1
1
  export declare type FieldErrors = Record<string, string>;
2
2
  export declare type TouchedFields = Record<string, boolean>;
3
- export declare type FieldErrorsWithData = FieldErrors & {
4
- _submittedData: any;
5
- };
6
3
  export declare type GenericObject = {
7
4
  [key: string]: any;
8
5
  };
9
- /**
10
- * The result when validating a form.
11
- */
12
- export declare type ValidationResult<DataType> = {
6
+ export declare type ValidatorError = {
7
+ subaction?: string;
8
+ fieldErrors: FieldErrors;
9
+ };
10
+ export declare type ValidationErrorResponseData = {
11
+ subaction?: string;
12
+ fieldErrors: FieldErrors;
13
+ repopulateFields?: unknown;
14
+ };
15
+ export declare type BaseResult = {
16
+ submittedData: GenericObject;
17
+ };
18
+ export declare type ErrorResult = BaseResult & {
19
+ error: ValidatorError;
20
+ data: undefined;
21
+ };
22
+ export declare type SuccessResult<DataType> = BaseResult & {
13
23
  data: DataType;
14
24
  error: undefined;
15
- } | {
16
- error: FieldErrors;
17
- data: undefined;
18
25
  };
26
+ /**
27
+ * The result when validating a form.
28
+ */
29
+ export declare type ValidationResult<DataType> = SuccessResult<DataType> | ErrorResult;
19
30
  /**
20
31
  * The result when validating an individual field in a form.
21
32
  */
@@ -26,7 +37,19 @@ export declare type ValidateFieldResult = {
26
37
  * A `Validator` can be passed to the `validator` prop of a `ValidatedForm`.
27
38
  */
28
39
  export declare type Validator<DataType> = {
29
- validate: (unvalidatedData: GenericObject) => ValidationResult<DataType>;
30
- validateField: (unvalidatedData: GenericObject, field: string) => ValidateFieldResult;
40
+ validate: (unvalidatedData: GenericObject) => Promise<ValidationResult<DataType>>;
41
+ validateField: (unvalidatedData: GenericObject, field: string) => Promise<ValidateFieldResult>;
42
+ };
43
+ export declare type Valid<DataType> = {
44
+ data: DataType;
45
+ error: undefined;
46
+ };
47
+ export declare type Invalid = {
48
+ error: FieldErrors;
49
+ data: undefined;
50
+ };
51
+ export declare type CreateValidatorArg<DataType> = {
52
+ validate: (unvalidatedData: GenericObject) => Promise<Valid<DataType> | Invalid>;
53
+ validateField: (unvalidatedData: GenericObject, field: string) => Promise<ValidateFieldResult>;
31
54
  };
32
55
  export declare type ValidatorData<T extends Validator<any>> = T extends Validator<infer U> ? U : never;
@@ -10,7 +10,7 @@ export declare type FormProps<DataType> = {
10
10
  * A submit callback that gets called when the form is submitted
11
11
  * after all validations have been run.
12
12
  */
13
- onSubmit?: (data: DataType, event: React.FormEvent<HTMLFormElement>) => void;
13
+ onSubmit?: (data: DataType, event: React.FormEvent<HTMLFormElement>) => Promise<void>;
14
14
  /**
15
15
  * Allows you to provide a `fetcher` from remix's `useFetcher` hook.
16
16
  * The form will use the fetcher for loading states, action data, etc
@@ -47,4 +47,4 @@ export declare type FormProps<DataType> = {
47
47
  /**
48
48
  * The primary form component of `remix-validated-form`.
49
49
  */
50
- export declare function ValidatedForm<DataType>({ validator, onSubmit, children, fetcher, action, defaultValues, formRef: formRefProp, onReset, subaction, resetAfterSubmit, disableFocusOnError, ...rest }: FormProps<DataType>): JSX.Element;
50
+ export declare function ValidatedForm<DataType>({ validator, onSubmit, children, fetcher, action, defaultValues, formRef: formRefProp, onReset, subaction, resetAfterSubmit, disableFocusOnError, method, replace, ...rest }: FormProps<DataType>): JSX.Element;