Vue async methods support
Gives you utility methods for your promise based methods for use in the view. Also catch errors in the view.
Install
$ npm install vue-async-methods
Usage
Vue
Options
createComputed
default false
, if true: creates computeds that proxies fetchArticles.resolvedWith
to articles
getComputedName(vm, methodName)
A function that should return the name of the desired computed if createComputed is true
default:
// turns "fetchArticles", "getArticles" or "loadArticles" into "articles" computed { var withoutPrefix = methodName return withoutPrefix + withoutPrefix}
onError(err, handledInView, vm, methodName, args)
default: null
All error raised by the methods will be passed to the onError handler, enabling you to implement global error handling, logging, etc.
Now you can define async methods on your vm:
asyncMethods: { return }
And use the following helper variables in your view:
articles // this is a computed that aliases fetchArticles.resolvedWithfetchArticles //call this function to fetch the articlesfetchArticlesexecute // executes the method, legacy supportfetchArticlespromise // the current or last promisefetchArticlesisCalled // false until first calledfetchArticlesisPendingfetchArticlesisResolvedfetchArticlesisRejectedfetchArticlesresolvedWithfetchArticlesresolvedWithEmpty //empty means empty object or empty arrayfetchArticlesresolvedWithSomething //opposite of emptyfetchArticlesrejectedWith //Error object
It also registers a component called catch-async-error
that enables you to catch errors in the view instead of in the code.
Load dataClick button to load dataLoading data... {{article.name}} There are no articles. Could not load articles due to an error. Details: {{fetchArticles.rejectedWith.message}}
Contributing
Create tests for new functionality and follow the eslint rules.
License
MIT © Martin Hansen