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

Fill in gaps in @orbit/validators #858

Merged
merged 3 commits into from
Jul 7, 2021
Merged

Fill in gaps in @orbit/validators #858

merged 3 commits into from
Jul 7, 2021

Conversation

dgeb
Copy link
Member

@dgeb dgeb commented Jul 7, 2021

Performs the tasks discussed in #857:

  • Adds validateObject and registers it in standardValidators for object types
  • Registers validateDate in standardValidators for datetime types (it's already registered for date types)
  • Introduces the concept of an unknown validator to allow for a catch-all for validating types that don't have a registered validator (similar to the unknown serializer concept). This can be used as a no-op, or to log an error, or even to throw an exception.

Closes #857

dgeb added 3 commits July 7, 2021 10:38
Simply verifies `typeof` input.
If a validator can't be found for a particular `type`, then the `unknown` validator will be returned (if one has been registered in `buildValidatorFor`).
@dgeb dgeb force-pushed the fix-validators branch from 94151db to 8289c0e Compare July 7, 2021 14:38
@dgeb dgeb merged commit 3f08c04 into main Jul 7, 2021
@dgeb dgeb deleted the fix-validators branch July 7, 2021 14:44
// eslint-disable-next-line @typescript-eslint/no-unused-vars
options?: ObjectValidationOptions
): undefined | ObjectValidationIssue[] => {
if (typeof input !== 'object') {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typeof null === 'object' fyi @dgeb

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@joelgallant - ah good catch! This won't have practical implications when used to validate attributes of type object because null will be caught first.

Regardless, the object validator should work well on its own and should probably not accept null.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tracking this in #859

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

validator has not been provided for attribute ... of type 'object'
2 participants