Browse Source

Pass configuration interceptors to spec download fetch

bubble
Kyle Shockey 7 years ago
parent
commit
74165f5292
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      src/core/plugins/download-url.js

+ 4
- 1
src/core/plugins/download-url.js View File

@@ -7,13 +7,16 @@ export default function downloadUrlPlugin (toolbox) {
let { fn } = toolbox

const actions = {
download: (url)=> ({ errActions, specSelectors, specActions }) => {
download: (url)=> ({ errActions, specSelectors, specActions, getConfigs }) => {
let { fetch } = fn
const config = getConfigs()
url = url || specSelectors.url()
specActions.updateLoadingStatus("loading")
fetch({
url,
loadSpec: true,
requestInterceptor: config.requestInterceptor || (a => a),
responseInterceptor: config.responseInterceptor || (a => a),
credentials: "same-origin",
headers: {
"Accept": "application/json,*/*"


Loading…
Cancel
Save