mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
1361bdfbf2
* fix * fix: websocket stream origin
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { miLocalStorage } from '@/local-storage.js';
|
|
|
|
const address = new URL(document.querySelector<HTMLMetaElement>('meta[property="instance_url"]')?.content || location.href);
|
|
const siteName = document.querySelector<HTMLMetaElement>('meta[property="og:site_name"]')?.content;
|
|
|
|
export const host = address.host;
|
|
export const hostname = address.hostname;
|
|
export const url = address.origin;
|
|
export const apiUrl = location.origin + '/api';
|
|
export const wsOrigin = location.origin;
|
|
export const lang = miLocalStorage.getItem('lang') ?? 'en-US';
|
|
export const langs = _LANGS_;
|
|
const preParseLocale = miLocalStorage.getItem('locale');
|
|
export let locale = preParseLocale ? JSON.parse(preParseLocale) : null;
|
|
export const version = _VERSION_;
|
|
export const instanceName = siteName === 'Misskey' ? host : siteName;
|
|
export const ui = miLocalStorage.getItem('ui');
|
|
export const debug = miLocalStorage.getItem('debug') === 'true';
|
|
|
|
export function updateLocale(newLocale): void {
|
|
locale = newLocale;
|
|
}
|