Giter Club home page Giter Club logo

Comments (11)

KonstantinSviridov avatar KonstantinSviridov commented on June 3, 2024

Some users may need even that API representation, which contains errors. That's why we do not reject Promise in this situation.

Is it important for you to have Promise rejected in case of API with errors? If yes, we can introduce a special option for this purpose.

from raml-js-parser-2.

sichvoge avatar sichvoge commented on June 3, 2024

Would that change the high-level Parser API?

from raml-js-parser-2.

KonstantinSviridov avatar KonstantinSviridov commented on June 3, 2024

@sichvoge A little bit. There will be a new field in
http://raml-org.github.io/raml-js-parser-2/interfaces/_raml1_wrapped_ast_parsercore_.options.html

from raml-js-parser-2.

juancoen avatar juancoen commented on June 3, 2024

ok, I agree with having an option for rejecting promises on errors, to cover all possible scenarios

from raml-js-parser-2.

blakeembrey avatar blakeembrey commented on June 3, 2024

What will the rejected promise look like? Rejections should be error instances, but the parser can return multiple errors. An error will errors on a property, or just the first error instance?

from raml-js-parser-2.

KonstantinSviridov avatar KonstantinSviridov commented on June 3, 2024

@blakeembrey
For now it's just an error containing a single message. Do you know some Error subclass which can be passed an object (or array) to constructor (just like we pass strings usually)?

from raml-js-parser-2.

blakeembrey avatar blakeembrey commented on June 3, 2024

There's nothing formal in JavaScript, but you can just do it yourself. You can also subclass Error if you want to do this in a declarative way (with something like https://github.com/julien-f/js-make-error).

var error = new Error('Invalid RAML')
error.errors = errors // Tada, just document the error type.
return error

from raml-js-parser-2.

KonstantinSviridov avatar KonstantinSviridov commented on June 3, 2024

Ok, thanks. So, there will be a message Api contains errors. and a complete array of errors.

from raml-js-parser-2.

KonstantinSviridov avatar KonstantinSviridov commented on June 3, 2024

@blakeembrey It appears that Error subclassing is not available in typescript 1.4 microsoft/TypeScript#1168.

Seems like it remains to write parser errors to some field of the newly created error.

from raml-js-parser-2.

blakeembrey avatar blakeembrey commented on June 3, 2024

@KonstantinSviridov I pointed out how you can do it in the comment above.

from raml-js-parser-2.

KonstantinSviridov avatar KonstantinSviridov commented on June 3, 2024

For loadApi:
If the 'rejectOnErrors' option is set to true, ApiLoadingError is thrown for Api which contains errors.

For loadApiAsync:
The Promise is rejected with ApiLoadingError if the resulting Api contains errors and the 'rejectOnErrors' option is set to 'true'.

Where ApiLoadingError is
http://raml-org.github.io/raml-js-parser-2/interfaces/_raml1_wrapped_ast_parsercore_.apiloadingerror.html

from raml-js-parser-2.

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.