Skip to content

Instantly share code, notes, and snippets.

@copperwall
Created March 30, 2019 17:32
Show Gist options
  • Save copperwall/7eec29a0185b3b51bc8b398d6f87c2e2 to your computer and use it in GitHub Desktop.
Save copperwall/7eec29a0185b3b51bc8b398d6f87c2e2 to your computer and use it in GitHub Desktop.
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