You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
574 B
20 lines
574 B
10 months ago
|
// @ts-ignore
|
||
|
import buildURL from 'axios/lib/helpers/buildURL'
|
||
|
import type { AxiosRequestConfig } from 'axios'
|
||
|
|
||
|
type ParamsSerializer = AxiosRequestConfig['paramsSerializer']
|
||
|
|
||
|
export function getFullURL(
|
||
|
baseURL: string,
|
||
|
url: string,
|
||
|
params: Record<string, any>,
|
||
|
paramsSerializer?: ParamsSerializer
|
||
|
) {
|
||
|
if (url.startsWith('http')) {
|
||
|
return buildURL(url, params, paramsSerializer)
|
||
|
}
|
||
|
baseURL = baseURL.endsWith('/') ? baseURL : `${baseURL}/`
|
||
|
url = url.startsWith('/') ? url.slice(1) : url
|
||
|
return buildURL(`${baseURL}${url}`, params, paramsSerializer)
|
||
|
}
|