Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor form component #27025

Merged
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
593df79
Prepare POC
kowczarz Aug 25, 2023
32beaaf
POC of Form using custom input components
kowczarz Sep 5, 2023
51b1ab3
Cleanup input wrapper
kowczarz Sep 7, 2023
620b48c
Remove redundant testing component
kowczarz Sep 7, 2023
1296a97
Cleanup form wrapper
kowczarz Sep 7, 2023
9a07c15
Merge remote-tracking branch 'expensify/main' into refactor-form-comp…
kowczarz Sep 7, 2023
59652ce
Cleanup DisplayNamePage
kowczarz Sep 7, 2023
0491bc3
Cleanup FormProvider
kowczarz Sep 8, 2023
5a379f0
Merge remote-tracking branch 'expensify/main' into refactor-form-comp…
kowczarz Sep 8, 2023
74f69a5
Fix lint
kowczarz Sep 8, 2023
b6c8a62
Cleanup
kowczarz Sep 11, 2023
43d8080
Apply suggestions from code review
kowczarz Sep 13, 2023
e186a32
Merge remote-tracking branch 'expensify/main' into refactor-form-comp…
kowczarz Sep 13, 2023
01a455f
Code review changes
kowczarz Sep 13, 2023
9f28189
Code review changes
kowczarz Sep 13, 2023
7ee8ee3
Code style fixes
kowczarz Sep 14, 2023
b82c26d
Merge remote-tracking branch 'expensify/main' into refactor-form-comp…
kowczarz Sep 14, 2023
858e8fc
Fix crashing issues
kowczarz Sep 18, 2023
416b0bd
Merge remote-tracking branch 'expensify/main' into refactor-form-comp…
kowczarz Sep 20, 2023
106afb7
Fix PropTypes errors
kowczarz Sep 20, 2023
ce80fef
Form performance optimisation
kowczarz Sep 21, 2023
1592692
Merge remote-tracking branch 'expensify/main' into refactor-form-comp…
kowczarz Sep 21, 2023
6cba7be
Cleanup
kowczarz Sep 21, 2023
ff8653f
Fix wrong default props
kowczarz Sep 21, 2023
073af5d
Fix prettier
kowczarz Sep 21, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/hooks/useForm/FormContext.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import {createContext} from 'react';

const FormContext = createContext({});
export default FormContext;
263 changes: 263 additions & 0 deletions src/hooks/useForm/FormProvider.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,263 @@
import React, {createRef, useCallback, useRef, useState} from 'react';
import _ from 'underscore';
import {withOnyx} from 'react-native-onyx';
import PropTypes from 'prop-types';
import lodashGet from 'lodash/get';
import Visibility from '../../libs/Visibility';
import * as FormActions from '../../libs/actions/FormActions';
import FormContext from './FormContext';
import FormWrapper from './FormWrapper';
import compose from '../../libs/compose';
import {withNetwork} from '../../components/OnyxProvider';
import stylePropTypes from '../../styles/stylePropTypes';
import networkPropTypes from '../../components/networkPropTypes';

const propTypes = {
/** A unique Onyx key identifying the form */
formID: PropTypes.string.isRequired,

/** Text to be displayed in the submit button */
submitButtonText: PropTypes.string.isRequired,

/** Controls the submit button's visibility */
isSubmitButtonVisible: PropTypes.bool,

/** Callback to validate the form */
validate: PropTypes.func,

/** Callback to submit the form */
onSubmit: PropTypes.func.isRequired,

/** Children to render. */
children: PropTypes.oneOfType([PropTypes.func, PropTypes.node]).isRequired,

/* Onyx Props */

/** Contains the form state that must be accessed outside of the component */
formState: PropTypes.shape({
/** Controls the loading state of the form */
isLoading: PropTypes.bool,

/** Server side errors keyed by microtime */
errors: PropTypes.objectOf(PropTypes.string),

/** Field-specific server side errors keyed by microtime */
errorFields: PropTypes.objectOf(PropTypes.objectOf(PropTypes.string)),
}),

/** Should the button be enabled when offline */
enabledWhenOffline: PropTypes.bool,

/** Whether the form submit action is dangerous */
isSubmitActionDangerous: PropTypes.bool,

/** Whether ScrollWithContext should be used instead of regular ScrollView.
* Set to true when there's a nested Picker component in Form.
*/
scrollContextEnabled: PropTypes.bool,

/** Container styles */
style: stylePropTypes,

/** Custom content to display in the footer after submit button */
footerContent: PropTypes.oneOfType([PropTypes.func, PropTypes.node]),

/** Information about the network */
network: networkPropTypes.isRequired,

shouldValidateOnBlur: PropTypes.bool,

shouldValidateOnChange: PropTypes.bool,
};

const defaultProps = {
isSubmitButtonVisible: true,
formState: {
isLoading: false,
},
enabledWhenOffline: false,
isSubmitActionDangerous: false,
scrollContextEnabled: false,
footerContent: null,
style: [],
validate: () => {},
shouldValidateOnBlur: false,
shouldValidateOnChange: false,
};

function getInitialValueByType(valueType) {
switch (valueType) {
case 'string':
return '';
case 'boolean':
return false;
case 'date':
return new Date();
default:
return '';
}
}

function FormProvider({validate, shouldValidateOnBlur, shouldValidateOnChange, children, formState, network, enabledWhenOffline, onSubmit, ...rest}) {
const inputRefs = useRef({});
const touchedInputs = useRef({});
const [inputValues, setInputValues] = useState({});
const [errors, setErrors] = useState({});

const onValidate = useCallback(
(values) => {
const validateErrors = validate(values);
setErrors(validateErrors);
},
[validate],
);

/**
* @param {String} inputID - The inputID of the input being touched
*/
const setTouchedInput = useCallback(
(inputID) => {
touchedInputs.current[inputID] = true;
},
[touchedInputs],
);

const submit = useCallback(() => {
// Return early if the form is already submitting to avoid duplicate submission
if (formState.isLoading) {
return;
}

// Touches all form inputs so we can validate the entire form
_.each(inputRefs.current, (inputRef, inputID) => (touchedInputs.current[inputID] = true));

// Validate form and return early if any errors are found
if (!_.isEmpty(onValidate(inputValues))) {
return;
}

// Do not submit form if network is offline and the form is not enabled when offline
if (network.isOffline && !enabledWhenOffline) {
return;
}

onSubmit(inputValues);
}, [enabledWhenOffline, formState.isLoading, inputValues, network.isOffline, onSubmit, onValidate]);

const registerInput = useCallback(
(inputID, propsToParse = {}) => {
const newRef = propsToParse.ref || createRef();
inputRefs[inputID] = newRef;

if (!_.isUndefined(propsToParse.value)) {
inputValues[inputID] = propsToParse.value;
}

// We force the form to set the input value from the defaultValue props if there is a saved valid value
else if (propsToParse.shouldUseDefaultValue) {
kowczarz marked this conversation as resolved.
Show resolved Hide resolved
inputValues[inputID] = propsToParse.defaultValue;
}

// We want to initialize the input value if it's undefined
else if (_.isUndefined(inputValues[inputID])) {
kowczarz marked this conversation as resolved.
Show resolved Hide resolved
inputValues[inputID] = _.isUndefined(propsToParse.defaultValue) ? getInitialValueByType(propsToParse.valueType) : propsToParse.defaultValue;
}

const errorFields = lodashGet(formState, 'errorFields', {});
const fieldErrorMessage =
_.chain(errorFields[inputID])
.keys()
.sortBy()
.reverse()
.map((key) => errorFields[inputID][key])
.first()
.value() || '';

return {
...propsToParse,
ref: newRef,
inputID,
key: propsToParse.key || inputID,
errorText: errors[inputID] || fieldErrorMessage,
value: inputValues[inputID],
// As the text input is controlled, we never set the defaultValue prop
// as this is already happening by the value prop.
defaultValue: undefined,
onTouched: (event) => {
setTouchedInput(inputID);
if (_.isFunction(propsToParse.onTouched)) {
propsToParse.onTouched(event);
}
},
onBlur: (event) => {
// Only run validation when user proactively blurs the input.
if (Visibility.isVisible() && Visibility.hasFocus()) {
// We delay the validation in order to prevent Checkbox loss of focus when
// the user is focusing a TextInput and proceeds to toggle a CheckBox in
// web and mobile web platforms.
setTimeout(() => {
setTouchedInput(inputID);
if (shouldValidateOnBlur) {
onValidate(inputValues);
}
}, 200);
}

if (_.isFunction(propsToParse.onBlur)) {
propsToParse.onBlur(event);
}
},
onInputChange: (value, key) => {
const inputKey = key || inputID;
setInputValues((prevState) => {
const newState = {
...prevState,
[inputKey]: value,
};

if (shouldValidateOnChange) {
onValidate(newState);
}
return newState;
});

if (propsToParse.shouldSaveDraft) {
FormActions.setDraftValues(propsToParse.formID, {[inputKey]: value});
}

if (_.isFunction(propsToParse.onValueChange)) {
propsToParse.onValueChange(value, inputKey);
}
},
};
},
[errors, formState, inputValues, onValidate, setTouchedInput, shouldValidateOnBlur, shouldValidateOnChange],
);

return (
<FormContext.Provider value={{registerInput}}>
{/* eslint-disable react/jsx-props-no-spreading */}
<FormWrapper
{...rest}
onSubmit={submit}
inputRefs={inputRefs}
errors={errors}
>
{children}
</FormWrapper>
</FormContext.Provider>
);
}

FormProvider.displayName = 'Form';
FormProvider.propTypes = propTypes;
FormProvider.defaultProps = defaultProps;

export default compose(
withNetwork(),
withOnyx({
formState: {
key: (props) => props.formID,
},
}),
)(FormProvider);
Loading
Loading