-
Notifications
You must be signed in to change notification settings - Fork 2
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
feat: implement isChanged flags #125
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,6 +1,6 @@ | ||||||||||||||||||||||||||||
import { useMemo } from "react"; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
import { keys, values } from "../../../utils"; | ||||||||||||||||||||||||||||
import { deepEqual, keys, values } from "../../../utils"; | ||||||||||||||||||||||||||||
import { Atom } from "../../../utils/atoms"; | ||||||||||||||||||||||||||||
import { Task } from "../../../utils/task"; | ||||||||||||||||||||||||||||
import { useSubscription } from "../../../utils/use-subscription"; | ||||||||||||||||||||||||||||
|
@@ -34,23 +34,26 @@ import { impl } from "../../types/type-mapper-util"; | |||||||||||||||||||||||||||
* ``` | ||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||
export const useFormHandle = <Values extends object, Err>( | ||||||||||||||||||||||||||||
_Schema: FormSchema<Values, Err>, | ||||||||||||||||||||||||||||
Schema: FormSchema<Values, Err>, | ||||||||||||||||||||||||||||
controller?: FormController | ||||||||||||||||||||||||||||
): FormHandle<Values, Err> => { | ||||||||||||||||||||||||||||
const { state, methods } = useFormtsContext<Values, Err>(controller); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
// TODO: create cache for form handle atoms to avoid memory leaks and redundant computations | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. will be dealt with in next PR |
||||||||||||||||||||||||||||
const stateAtom = useMemo( | ||||||||||||||||||||||||||||
() => | ||||||||||||||||||||||||||||
Atom.fuse( | ||||||||||||||||||||||||||||
( | ||||||||||||||||||||||||||||
isTouched, | ||||||||||||||||||||||||||||
isChanged, | ||||||||||||||||||||||||||||
isValid, | ||||||||||||||||||||||||||||
isValidating, | ||||||||||||||||||||||||||||
isSubmitting, | ||||||||||||||||||||||||||||
successfulSubmitCount, | ||||||||||||||||||||||||||||
failedSubmitCount | ||||||||||||||||||||||||||||
) => ({ | ||||||||||||||||||||||||||||
isTouched, | ||||||||||||||||||||||||||||
isChanged, | ||||||||||||||||||||||||||||
isValid, | ||||||||||||||||||||||||||||
isValidating, | ||||||||||||||||||||||||||||
isSubmitting, | ||||||||||||||||||||||||||||
|
@@ -64,6 +67,18 @@ export const useFormHandle = <Values extends object, Err>( | |||||||||||||||||||||||||||
state.failedSubmitCount, | ||||||||||||||||||||||||||||
state.touched | ||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||
Atom.fuse( | ||||||||||||||||||||||||||||
(...fieldsChanged) => fieldsChanged.some(Boolean), | ||||||||||||||||||||||||||||
...values(Schema).map(field => { | ||||||||||||||||||||||||||||
const fieldLens = impl(field).__lens; | ||||||||||||||||||||||||||||
const initialValue = fieldLens.get(state.initialValues); | ||||||||||||||||||||||||||||
const fieldAtom = Atom.entangle(state.values, fieldLens); | ||||||||||||||||||||||||||||
return Atom.fuse( | ||||||||||||||||||||||||||||
fieldValue => !deepEqual(fieldValue, initialValue), | ||||||||||||||||||||||||||||
fieldAtom | ||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||
Comment on lines
+70
to
+81
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. wouldn't
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, this is a bit of an optimisation - we don't throw the entire form values into deepEqual every time any field changes, but only compare the field that did change. If the entire from is nested in object field then it does not matter, but I thought it could be worth it in some cases. |
||||||||||||||||||||||||||||
Atom.fuse(x => values(x).every(err => err == null), state.errors), | ||||||||||||||||||||||||||||
Atom.fuse(x => keys(x).length > 0, state.validating), | ||||||||||||||||||||||||||||
state.isSubmitting, | ||||||||||||||||||||||||||||
|
@@ -84,6 +99,10 @@ export const useFormHandle = <Values extends object, Err>( | |||||||||||||||||||||||||||
return stateAtom.val.isTouched; | ||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
get isChanged() { | ||||||||||||||||||||||||||||
return stateAtom.val.isChanged; | ||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
get isValid() { | ||||||||||||||||||||||||||||
return stateAtom.val.isValid; | ||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can compute
changed
here based onvalue
, without the need to introduce a new Atom out of.fuse
(line 57), by simply comparingvalue
andinitialValue
in the combinator bodyThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd keep it - there is a small difference - as a separate atom deepEqual will only run on value changes, but when put in the combinator fn it would run on change of any dependency (and it is somewhat heavy operation). I think we will need to remove
FieldDependenciesAtom
and move error and validating state computations here in the future as part #127 (so it will make bigger difference)