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
|
|
|
|
2023-11-09 12:21:39 +00:00
|
|
|
const address = new URL(document.querySelector<HTMLMetaElement>('meta[property="instance_url"]')?.content || 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;
|
2023-11-13 07:39:54 +00:00
|
|
|
export const apiUrl = location.origin + '/api';
|
|
|
|
export const wsOrigin = location.origin;
|
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_;
|
2023-10-17 21:55:53 +00:00
|
|
|
export const instanceName = siteName === 'Sharkey' ? 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;
|
|
|
|
}
|