-
Notifications
You must be signed in to change notification settings - Fork 244
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
feat: allow creating new instances #306
Conversation
Codecov Report
@@ Coverage Diff @@
## dev #306 +/- ##
===================================
Coverage 100% 100%
===================================
Files 1 1
Lines 30 30
Branches 13 13
===================================
Hits 30 30 Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for initial PR 👍
@@ -91,7 +113,7 @@ const setupCredentialsInterceptor = axios => { | |||
}<% } %> | |||
|
|||
<% if (options.progress) { %> | |||
const setupProgress = (axios, ctx) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed ctx here, because it is not used
@pi0 Is it suitable to merge ? This is not breaking change, but it would be helpful to implement nuxt-axios in other modules. Let me know please :) |
Any news from this @pi0 ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome! Thanks!
docs/extend.md
Outdated
} | ||
}) | ||
|
||
newInstance.setBaseURL('https://yourapi.com') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we could document how to inject instance to CTX too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, I can add it
This PR resolves #286.
I added new method for create copy of $axios instance based on default settings.
After that the copy is independent and may get new options so we can extend it.
Right now we can't use nuxt/axios in our module, because we won't override axios instance created by user.
How it works ?
$axios.create method returns new Axios instance, you can pass additional options to merge.
After that you can use methods from this module, without override base $axios instance.
I also extended
test/fixture/pages/ssr.vue
to present how the new instance behaves.@pi0 Have a look at it please.