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