mirror of
https://github.com/hexastack/hexabot
synced 2024-11-24 13:05:15 +00:00
Merge pull request #117 from devamitranjan/FIX#114
feat(frontend): added fix for the base url
This commit is contained in:
commit
28313e1cf7
@ -1,9 +1,14 @@
|
|||||||
export const buildURL = (baseUrl: string, relativePath: string): string => {
|
export const buildURL = (baseUrl: string, relativePath: string): string => {
|
||||||
try {
|
try {
|
||||||
const url = new URL(relativePath, baseUrl);
|
return new URL(relativePath).toString();
|
||||||
|
} catch {
|
||||||
return url.toString();
|
try {
|
||||||
|
return new URL(
|
||||||
|
relativePath.replace(/^\//, ''),
|
||||||
|
baseUrl.endsWith('/') ? baseUrl : `${baseUrl}/`,
|
||||||
|
).toString();
|
||||||
} catch {
|
} catch {
|
||||||
throw new Error(`Invalid base URL: ${baseUrl}`);
|
throw new Error(`Invalid base URL: ${baseUrl}`);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
@ -28,12 +28,17 @@ export const getFromQuery = ({
|
|||||||
|
|
||||||
export const buildURL = (baseUrl: string, relativePath: string): string => {
|
export const buildURL = (baseUrl: string, relativePath: string): string => {
|
||||||
try {
|
try {
|
||||||
const url = new URL(relativePath, baseUrl);
|
return new URL(relativePath).toString();
|
||||||
|
} catch {
|
||||||
return url.toString();
|
try {
|
||||||
|
return new URL(
|
||||||
|
relativePath.replace(/^\//, ""),
|
||||||
|
baseUrl.endsWith("/") ? baseUrl : `${baseUrl}/`,
|
||||||
|
).toString();
|
||||||
} catch {
|
} catch {
|
||||||
throw new Error(`Invalid base URL: ${baseUrl}`);
|
throw new Error(`Invalid base URL: ${baseUrl}`);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export const isAbsoluteUrl = (value: string = ""): boolean => {
|
export const isAbsoluteUrl = (value: string = ""): boolean => {
|
||||||
|
Loading…
Reference in New Issue
Block a user