2023-07-27 00:31:52 -05:00
|
|
|
/*
|
2024-02-13 09:59:27 -06:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 00:31:52 -05:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-09-19 02:37:43 -05:00
|
|
|
import { miLocalStorage } from '@/local-storage.js';
|
2023-01-06 19:13:02 -06:00
|
|
|
|
2023-11-09 06:21:39 -06:00
|
|
|
const address = new URL(document.querySelector<HTMLMetaElement>('meta[property="instance_url"]')?.content || location.href);
|
2023-04-13 04:47:49 -05:00
|
|
|
const siteName = document.querySelector<HTMLMetaElement>('meta[property="og:site_name"]')?.content;
|
2018-08-19 05:15:29 -05:00
|
|
|
|
|
|
|
export const host = address.host;
|
|
|
|
export const hostname = address.hostname;
|
|
|
|
export const url = address.origin;
|
2023-11-13 01:39:54 -06:00
|
|
|
export const apiUrl = location.origin + '/api';
|
|
|
|
export const wsOrigin = location.origin;
|
2023-04-13 04:47:49 -05:00
|
|
|
export const lang = miLocalStorage.getItem('lang') ?? 'en-US';
|
2018-05-20 12:13:39 -05:00
|
|
|
export const langs = _LANGS_;
|
2023-04-13 04:47:49 -05:00
|
|
|
const preParseLocale = miLocalStorage.getItem('locale');
|
|
|
|
export let locale = preParseLocale ? JSON.parse(preParseLocale) : null;
|
2018-02-10 21:08:43 -06:00
|
|
|
export const version = _VERSION_;
|
2024-02-16 01:17:09 -06:00
|
|
|
export const instanceName = siteName === 'Misskey' || siteName == null ? host : siteName;
|
2023-01-06 19:13:02 -06:00
|
|
|
export const ui = miLocalStorage.getItem('ui');
|
|
|
|
export const debug = miLocalStorage.getItem('debug') === 'true';
|
2023-01-22 01:52:15 -06:00
|
|
|
|
2023-04-13 04:47:49 -05:00
|
|
|
export function updateLocale(newLocale): void {
|
2023-01-22 01:52:15 -06:00
|
|
|
locale = newLocale;
|
|
|
|
}
|