lint
This commit is contained in:
parent
917b9475a5
commit
331305e6c7
1 changed files with 6 additions and 6 deletions
|
@ -130,16 +130,16 @@ export default () => new Vuex.Store({
|
||||||
ctx.state.spinner.setAttribute('id', 'wait');
|
ctx.state.spinner.setAttribute('id', 'wait');
|
||||||
document.body.appendChild(ctx.state.spinner);
|
document.body.appendChild(ctx.state.spinner);
|
||||||
}
|
}
|
||||||
|
|
||||||
const onFinally = () => {
|
const onFinally = () => {
|
||||||
if (--ctx.state.pendingApiRequestsCount === 0) ctx.state.spinner.parentNode.removeChild(ctx.state.spinner);
|
if (--ctx.state.pendingApiRequestsCount === 0) ctx.state.spinner.parentNode.removeChild(ctx.state.spinner);
|
||||||
};
|
};
|
||||||
|
|
||||||
const promise = new Promise((resolve, reject) => {
|
const promise = new Promise((resolve, reject) => {
|
||||||
// Append a credential
|
// Append a credential
|
||||||
if (ctx.getters.isSignedIn) (data as any).i = ctx.state.i.token;
|
if (ctx.getters.isSignedIn) (data as any).i = ctx.state.i.token;
|
||||||
if (token) (data as any).i = token;
|
if (token) (data as any).i = token;
|
||||||
|
|
||||||
// Send request
|
// Send request
|
||||||
fetch(endpoint.indexOf('://') > -1 ? endpoint : `${apiUrl}/${endpoint}`, {
|
fetch(endpoint.indexOf('://') > -1 ? endpoint : `${apiUrl}/${endpoint}`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
|
@ -148,7 +148,7 @@ export default () => new Vuex.Store({
|
||||||
cache: 'no-cache'
|
cache: 'no-cache'
|
||||||
}).then(async (res) => {
|
}).then(async (res) => {
|
||||||
const body = res.status === 204 ? null : await res.json();
|
const body = res.status === 204 ? null : await res.json();
|
||||||
|
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
resolve(body);
|
resolve(body);
|
||||||
} else if (res.status === 204) {
|
} else if (res.status === 204) {
|
||||||
|
@ -158,9 +158,9 @@ export default () => new Vuex.Store({
|
||||||
}
|
}
|
||||||
}).catch(reject);
|
}).catch(reject);
|
||||||
});
|
});
|
||||||
|
|
||||||
promise.then(onFinally, onFinally);
|
promise.then(onFinally, onFinally);
|
||||||
|
|
||||||
return promise;
|
return promise;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue