mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 10:46:00 +00:00
process api resp
This commit is contained in:
@@ -22,8 +22,13 @@ function processApiResponse(route, args, resp) {
|
||||
}
|
||||
|
||||
if (resp?.apiErrorMessage) {
|
||||
showSnackbarError(resp?.apiErrorMessage);
|
||||
showSnackbarError('API error:' + resp?.apiErrorMessage);
|
||||
return {
|
||||
errorMessage: resp.apiErrorMessage,
|
||||
};
|
||||
}
|
||||
|
||||
return resp;
|
||||
}
|
||||
|
||||
export async function apiCall(route: string, args: {} = undefined) {
|
||||
@@ -34,8 +39,7 @@ export async function apiCall(route: string, args: {} = undefined) {
|
||||
const electron = getElectron();
|
||||
if (electron) {
|
||||
const resp = await electron.invoke(route.replace('/', '-'), args);
|
||||
processApiResponse(route, args, resp);
|
||||
return resp;
|
||||
return processApiResponse(route, args, resp);
|
||||
} else {
|
||||
const resp = await fetch(`${resolveApi()}/${route}`, {
|
||||
method: 'POST',
|
||||
@@ -48,8 +52,7 @@ export async function apiCall(route: string, args: {} = undefined) {
|
||||
});
|
||||
|
||||
const json = await resp.json();
|
||||
processApiResponse(route, args, json);
|
||||
return json;
|
||||
return processApiResponse(route, args, json);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user