Created
March 30, 2019 17:32
-
-
Save copperwall/7eec29a0185b3b51bc8b398d6f87c2e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Form.getData = form => Object.assign({}, | |
...Object.entries(Form.getProps(form).fields) | |
.filter(([fieldKey, field]) => !field.disabled) | |
.filter(([fieldKey, field]) => | |
!['checkbox', 'radio'].includes(field.type) || field.checked | |
) | |
.map(([fieldKey, field]) => ({ [fieldKey]: field.value })), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment