mirror of
https://github.com/nocobase/nocobase
synced 2024-11-14 04:03:49 +00:00
fix(api-client): supports silent mode (#5512)
Some checks are pending
Build docker image / build-and-push (push) Waiting to run
Build pro image / build-and-push (push) Waiting to run
E2E / Build (push) Waiting to run
E2E / Core and plugins (push) Blocked by required conditions
E2E / plugin-workflow (push) Blocked by required conditions
E2E / plugin-workflow-approval (push) Blocked by required conditions
E2E / plugin-data-source-main (push) Blocked by required conditions
E2E / Comment on PR (push) Blocked by required conditions
NocoBase frontEnd test / frontend-test (18) (push) Waiting to run
Some checks are pending
Build docker image / build-and-push (push) Waiting to run
Build pro image / build-and-push (push) Waiting to run
E2E / Build (push) Waiting to run
E2E / Core and plugins (push) Blocked by required conditions
E2E / plugin-workflow (push) Blocked by required conditions
E2E / plugin-workflow-approval (push) Blocked by required conditions
E2E / plugin-data-source-main (push) Blocked by required conditions
E2E / Comment on PR (push) Blocked by required conditions
NocoBase frontEnd test / frontend-test (18) (push) Waiting to run
This commit is contained in:
parent
4712a19d6d
commit
158ef760fc
@ -61,6 +61,19 @@ export class APIClient extends APIClientSDK {
|
||||
/** 该值会在 AntdAppProvider 中被重新赋值 */
|
||||
notification: any = notification;
|
||||
|
||||
cloneInstance() {
|
||||
const api = new APIClient(this.options);
|
||||
api.options = this.options;
|
||||
api.services = this.services;
|
||||
api.storage = this.storage;
|
||||
api.app = this.app;
|
||||
api.auth = this.auth;
|
||||
api.storagePrefix = this.storagePrefix;
|
||||
api.notification = this.notification;
|
||||
api.axios = this.axios;
|
||||
return api;
|
||||
}
|
||||
|
||||
getHeaders() {
|
||||
const headers = super.getHeaders();
|
||||
const appName = this.app.getName();
|
||||
@ -180,7 +193,8 @@ export class APIClient extends APIClientSDK {
|
||||
}
|
||||
|
||||
silent() {
|
||||
this.silence = true;
|
||||
return this;
|
||||
const api = this.cloneInstance();
|
||||
api.silence = true;
|
||||
return api;
|
||||
}
|
||||
}
|
||||
|
@ -275,6 +275,7 @@ interface ExtendedOptions {
|
||||
export type APIClientOptions = AxiosInstance | (AxiosRequestConfig & ExtendedOptions);
|
||||
|
||||
export class APIClient {
|
||||
options?: APIClientOptions;
|
||||
axios: AxiosInstance;
|
||||
auth: Auth;
|
||||
storage: Storage;
|
||||
@ -297,11 +298,12 @@ export class APIClient {
|
||||
return headers;
|
||||
}
|
||||
|
||||
constructor(instance?: APIClientOptions) {
|
||||
if (typeof instance === 'function') {
|
||||
this.axios = instance;
|
||||
constructor(options?: APIClientOptions) {
|
||||
this.options = options;
|
||||
if (typeof options === 'function') {
|
||||
this.axios = options;
|
||||
} else {
|
||||
const { authClass, storageType, storageClass, storagePrefix = 'NOCOBASE_', ...others } = instance || {};
|
||||
const { authClass, storageType, storageClass, storagePrefix = 'NOCOBASE_', ...others } = options || {};
|
||||
this.storagePrefix = storagePrefix;
|
||||
this.axios = axios.create(others);
|
||||
this.initStorage(storageClass, storageType);
|
||||
|
Loading…
Reference in New Issue
Block a user