Skip to content

Instantly share code, notes, and snippets.

@revanth0212
Last active August 5, 2018 01:45
Show Gist options
  • Save revanth0212/b00d88b34c63a05dfc7f4955d51abb24 to your computer and use it in GitHub Desktop.
Save revanth0212/b00d88b34c63a05dfc7f4955d51abb24 to your computer and use it in GitHub Desktop.
This is a sample rules object that shows the interaction between country and phone number fields in a state object.
const rules = {
country: [
{
name: 'phoneNumber',
path: ['fields', 'phoneNumber'],
props: (countryNewValue, state) => ({
editable: countryNewValue && countryNewValue !== '',
countryPhoneCode: countryPhoneCodeMapper[countryNewValue]
})
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment