2020-05-23 06:19:31 +02:00
|
|
|
import { clientDb, entries } from './db';
|
|
|
|
import { fromEntries } from '../prelude/array';
|
|
|
|
|
2018-11-11 21:03:12 +01:00
|
|
|
declare const _LANGS_: string[];
|
2018-02-11 04:08:43 +01:00
|
|
|
declare const _VERSION_: string;
|
2018-08-30 15:10:29 +02:00
|
|
|
declare const _ENV_: string;
|
2018-02-10 09:01:32 +01:00
|
|
|
|
2018-08-19 12:15:29 +02:00
|
|
|
const address = new URL(location.href);
|
2020-02-12 18:48:52 +01:00
|
|
|
const siteName = (document.querySelector('meta[property="og:site_name"]') as HTMLMetaElement)?.content;
|
2018-08-19 12:15:29 +02:00
|
|
|
|
|
|
|
export const host = address.host;
|
|
|
|
export const hostname = address.hostname;
|
|
|
|
export const url = address.origin;
|
|
|
|
export const apiUrl = url + '/api';
|
2018-10-07 04:06:17 +02:00
|
|
|
export const wsUrl = url.replace('http://', 'ws://').replace('https://', 'wss://') + '/streaming';
|
2020-01-29 20:37:25 +01:00
|
|
|
export const lang = localStorage.getItem('lang');
|
2018-05-20 19:13:39 +02:00
|
|
|
export const langs = _LANGS_;
|
2020-05-23 06:19:31 +02:00
|
|
|
export const getLocale = async () => fromEntries((await entries(clientDb.i18n)) as [string, string][]);
|
2018-02-11 04:08:43 +01:00
|
|
|
export const version = _VERSION_;
|
2018-08-30 15:10:29 +02:00
|
|
|
export const env = _ENV_;
|
2020-02-12 18:48:52 +01:00
|
|
|
export const instanceName = siteName === 'Misskey' ? null : siteName;
|