mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-28 17:38:31 +00:00

also: - renamed processing tab in settings to "instances" - improved override description - prefer custom over override (and grey out the option) - dedicated lib for all api safety warnings - left aligned small popup with smaller icon - ability to grey out settings category & toggle
20 lines
588 B
TypeScript
20 lines
588 B
TypeScript
import { get } from "svelte/store";
|
|
|
|
import env, { apiURL } from "$lib/env";
|
|
import settings from "$lib/state/settings";
|
|
|
|
export const currentApiURL = () => {
|
|
const processingSettings = get(settings).processing;
|
|
const customInstanceURL = processingSettings.customInstanceURL;
|
|
|
|
if (processingSettings.enableCustomInstances && customInstanceURL.length > 0) {
|
|
return new URL(customInstanceURL).origin;
|
|
}
|
|
|
|
if (env.DEFAULT_API && processingSettings.allowDefaultOverride) {
|
|
return new URL(env.DEFAULT_API).origin;
|
|
}
|
|
|
|
return new URL(apiURL).origin;
|
|
}
|