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