GithubHelp home page GithubHelp logo

Report multiple type errors about ow HOT 12 CLOSED

sindresorhus avatar sindresorhus commented on September 3, 2024
Report multiple type errors

from ow.

Comments (12)

SamVerschueren avatar SamVerschueren commented on September 3, 2024 1

I want to pick this one up as I need it :). Will try to assign some of my time to it.

from ow.

SamVerschueren avatar SamVerschueren commented on September 3, 2024

Have you thought about how we could do this? Should we create one ArgumentError with a list of error messages? Or should we create one ArgumentError per error and wrap it inside another error?

It's pretty straight forward to implement, we just have to come up with the best way of doing this :).

from ow.

sindresorhus avatar sindresorhus commented on September 3, 2024

The error is meant for humans, so I think it should just be a nicely formatted text list of error messages in the returned error.message.

from ow.

IssueHuntBot avatar IssueHuntBot commented on September 3, 2024

@issuehuntfest has funded $60.00 to this issue. See it on IssueHunt

from ow.

GentileFulvio avatar GentileFulvio commented on September 3, 2024

Any progress on this one ? @SamVerschueren are you still on this issue ? Seems like a nice feature and fun pretty fun to check it out. Question is do we want this as default behavior or should there be some config triggering this behavior ? It seems like a breaking change though if we default

from ow.

sindresorhus avatar sindresorhus commented on September 3, 2024

It should be the default. We can consider making it opt-out if someone complains.


Keep in mind: This issue has a bounty, so it's expected that the person working on this does a good effort on it.

from ow.

vladfrangu avatar vladfrangu commented on September 3, 2024

Hey! I think I'll actually look into this tomorrow (and include a fix for that TODO 👀) if that's ok. Is anyone else working on this? If so, I don't wanna step over their work

from ow.

sindresorhus avatar sindresorhus commented on September 3, 2024

No one is working on this. Just know that this issue has a bounty, so it's expected that you to do a good effort and think through the problem thoroughly. Also tests and docs.

from ow.

issuehunt-oss avatar issuehunt-oss commented on September 3, 2024

@sindresorhus has rewarded $54.00 to @vladfrangu. See it on IssueHunt

  • 💰 Total deposit: $60.00
  • 🎉 Repository reward(0%): $0.00
  • 🔧 Service fee(10%): $6.00

from ow.

karlhorky avatar karlhorky commented on September 3, 2024

Would it be possible to also report multiple errors if the object doesn't match?

Current behavior:

> ow({a: 2, b: 'a'}, ow.object.exactShape({a: ow.string, b: ow.number}))
Uncaught:
ArgumentError: Expected property `a` to be of type `string` but received type `number` in object
    at ow (/Users/k/p/courses/node_modules/ow/dist/index.js:29:28) {
  validationErrors: Map(1) {
    'object' => Set(1) {
      'Expected property `a` to be of type `string` but received type `number` in object'
    }
  }
}

> ow({a: '2', b: 'a'}, ow.object.exactShape({a: ow.string, b: ow.number}))
Uncaught:
ArgumentError: Expected property `b` to be of type `number` but received type `string` in object
    at ow (/Users/k/p/courses/node_modules/ow/dist/index.js:29:28) {
  validationErrors: Map(1) {
    'object' => Set(1) {
      'Expected property `b` to be of type `number` but received type `string` in object'
    }
  }
}

Suggested behavior:

> ow({a: 2, b: 'a'}, ow.object.exactShape({a: ow.string, b: ow.number}))
Uncaught:
ArgumentError: Expected property `a` to be of type `string` but received type `number` in object
Expected property `b` to be of type `number` but received type `string` in object
    at ow (/Users/k/p/courses/node_modules/ow/dist/index.js:29:28) {
  validationErrors: Map(1) {
    'object' => Set(2) {
      'Expected property `a` to be of type `string` but received type `number` in object',
      'Expected property `b` to be of type `number` but received type `string` in object'
    }
  }
}

Even nicer would be to get the errors back in the shape of the original object:

> ow({a: 2, b: 'a'}, ow.object.exactShape({a: ow.string, b: ow.number}))
Uncaught:
ArgumentError: Expected property `a` to be of type `string` but received type `number` in object
Expected property `b` to be of type `number` but received type `string` in object
    at ow (/Users/k/p/courses/node_modules/ow/dist/index.js:29:28) {
  validationErrors: Object {
      a: 'Expected property `a` to be of type `string` but received type `number` in object',
      b: 'Expected property `b` to be of type `number` but received type `string` in object'
  }
}

from ow.

sindresorhus avatar sindresorhus commented on September 3, 2024

It's in general better to open a new issue than to comment on old closed issues.

from ow.

karlhorky avatar karlhorky commented on September 3, 2024

Definitely agree, just wanted to get the sentiment of the team before taking the effort to open a new issue.

But if it's preferred to have that discussion elsewhere, understood.

Created a new issue: #237

from ow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.