418 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			418 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * Client entry point
 | |
|  */
 | |
| 
 | |
| import '@/style.scss';
 | |
| 
 | |
| //#region account indexedDB migration
 | |
| import { set } from '@/scripts/idb-proxy';
 | |
| 
 | |
| if (localStorage.getItem('accounts') != null) {
 | |
| 	set('accounts', JSON.parse(localStorage.getItem('accounts')));
 | |
| 	localStorage.removeItem('accounts');
 | |
| }
 | |
| //#endregion
 | |
| 
 | |
| import { computed, createApp, watch, markRaw, version as vueVersion } from 'vue';
 | |
| import compareVersions from 'compare-versions';
 | |
| 
 | |
| import widgets from '@/widgets';
 | |
| import directives from '@/directives';
 | |
| import components from '@/components';
 | |
| import { version, ui, lang, host } from '@/config';
 | |
| import { router } from '@/router';
 | |
| import { applyTheme } from '@/scripts/theme';
 | |
| import { isDeviceDarkmode } from '@/scripts/is-device-darkmode';
 | |
| import { i18n } from '@/i18n';
 | |
| import { confirm, alert, post, popup, toast } from '@/os';
 | |
| import { stream } from '@/stream';
 | |
| import * as sound from '@/scripts/sound';
 | |
| import { $i, refreshAccount, login, updateAccount, signout } from '@/account';
 | |
| import { defaultStore, ColdDeviceStorage } from '@/store';
 | |
| import { fetchInstance, instance } from '@/instance';
 | |
| import { makeHotkey } from '@/scripts/hotkey';
 | |
| import { search } from '@/scripts/search';
 | |
| import { deviceKind } from '@/scripts/device-kind';
 | |
| import { initializeSw } from '@/scripts/initialize-sw';
 | |
| import { reloadChannel } from '@/scripts/unison-reload';
 | |
| import { reactionPicker } from '@/scripts/reaction-picker';
 | |
| import { getUrlWithoutLoginId } from '@/scripts/login-id';
 | |
| import { getAccountFromId } from '@/scripts/get-account-from-id';
 | |
| 
 | |
| console.info(`Misskey v${version}`);
 | |
| 
 | |
| if (_DEV_) {
 | |
| 	console.warn('Development mode!!!');
 | |
| 
 | |
| 	console.info(`vue ${vueVersion}`);
 | |
| 
 | |
| 	(window as any).$i = $i;
 | |
| 	(window as any).$store = defaultStore;
 | |
| 
 | |
| 	window.addEventListener('error', event => {
 | |
| 		console.error(event);
 | |
| 		/*
 | |
| 		alert({
 | |
| 			type: 'error',
 | |
| 			title: 'DEV: Unhandled error',
 | |
| 			text: event.message
 | |
| 		});
 | |
| 		*/
 | |
| 	});
 | |
| 
 | |
| 	window.addEventListener('unhandledrejection', event => {
 | |
| 		console.error(event);
 | |
| 		/*
 | |
| 		alert({
 | |
| 			type: 'error',
 | |
| 			title: 'DEV: Unhandled promise rejection',
 | |
| 			text: event.reason
 | |
| 		});
 | |
| 		*/
 | |
| 	});
 | |
| }
 | |
| 
 | |
| // タッチデバイスでCSSの:hoverを機能させる
 | |
| document.addEventListener('touchend', () => {}, { passive: true });
 | |
| 
 | |
| // 一斉リロード
 | |
| reloadChannel.addEventListener('message', path => {
 | |
| 	if (path !== null) location.href = path;
 | |
| 	else location.reload();
 | |
| });
 | |
| 
 | |
| //#region SEE: https://css-tricks.com/the-trick-to-viewport-units-on-mobile/
 | |
| // TODO: いつの日にか消したい
 | |
| const vh = window.innerHeight * 0.01;
 | |
| document.documentElement.style.setProperty('--vh', `${vh}px`);
 | |
| window.addEventListener('resize', () => {
 | |
| 	const vh = window.innerHeight * 0.01;
 | |
| 	document.documentElement.style.setProperty('--vh', `${vh}px`);
 | |
| });
 | |
| //#endregion
 | |
| 
 | |
| // If mobile, insert the viewport meta tag
 | |
| if (['smartphone', 'tablet'].includes(deviceKind)) {
 | |
| 	const viewport = document.getElementsByName('viewport').item(0);
 | |
| 	viewport.setAttribute('content',
 | |
| 		`${viewport.getAttribute('content')},minimum-scale=1,maximum-scale=1,user-scalable=no`);
 | |
| 	document.head.appendChild(viewport);
 | |
| }
 | |
| 
 | |
| //#region Set lang attr
 | |
| const html = document.documentElement;
 | |
| html.setAttribute('lang', lang);
 | |
| //#endregion
 | |
| 
 | |
| //#region loginId
 | |
| const params = new URLSearchParams(location.search);
 | |
| const loginId = params.get('loginId');
 | |
| 
 | |
| if (loginId) {
 | |
| 	const target = getUrlWithoutLoginId(location.href);
 | |
| 
 | |
| 	if (!$i || $i.id !== loginId) {
 | |
| 		const account = await getAccountFromId(loginId);
 | |
| 		if (account) {
 | |
| 			await login(account.token, target);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	history.replaceState({ misskey: 'loginId' }, '', target);
 | |
| }
 | |
| 
 | |
| //#endregion
 | |
| 
 | |
| //#region Fetch user
 | |
| if ($i && $i.token) {
 | |
| 	if (_DEV_) {
 | |
| 		console.log('account cache found. refreshing...');
 | |
| 	}
 | |
| 
 | |
| 	refreshAccount();
 | |
| } else {
 | |
| 	if (_DEV_) {
 | |
| 		console.log('no account cache found.');
 | |
| 	}
 | |
| 
 | |
| 	// 連携ログインの場合用にCookieを参照する
 | |
| 	const i = (document.cookie.match(/igi=(\w+)/) || [null, null])[1];
 | |
| 
 | |
| 	if (i != null && i !== 'null') {
 | |
| 		if (_DEV_) {
 | |
| 			console.log('signing...');
 | |
| 		}
 | |
| 
 | |
| 		try {
 | |
| 			document.body.innerHTML = '<div>Please wait...</div>';
 | |
| 			await login(i);
 | |
| 			location.reload();
 | |
| 		} catch (e) {
 | |
| 			// Render the error screen
 | |
| 			// TODO: ちゃんとしたコンポーネントをレンダリングする(v10とかのトラブルシューティングゲーム付きのやつみたいな)
 | |
| 			document.body.innerHTML = '<div id="err">Oops!</div>';
 | |
| 		}
 | |
| 	} else {
 | |
| 		if (_DEV_) {
 | |
| 			console.log('not signed in');
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| //#endregion
 | |
| 
 | |
| fetchInstance().then(() => {
 | |
| 	localStorage.setItem('v', instance.version);
 | |
| 
 | |
| 	// Init service worker
 | |
| 	initializeSw();
 | |
| });
 | |
| 
 | |
| const app = createApp(await (
 | |
| 	window.location.search === '?zen' ? import('@/ui/zen.vue') :
 | |
| 	!$i                               ? import('@/ui/visitor.vue') :
 | |
| 	ui === 'deck'                     ? import('@/ui/deck.vue') :
 | |
| 	ui === 'desktop'                  ? import('@/ui/desktop.vue') :
 | |
| 	ui === 'classic'                  ? import('@/ui/classic.vue') :
 | |
| 	import('@/ui/universal.vue')
 | |
| ).then(x => x.default));
 | |
| 
 | |
| if (_DEV_) {
 | |
| 	app.config.performance = true;
 | |
| }
 | |
| 
 | |
| app.config.globalProperties = {
 | |
| 	$i,
 | |
| 	$store: defaultStore,
 | |
| 	$instance: instance,
 | |
| 	$t: i18n.t,
 | |
| 	$ts: i18n.ts,
 | |
| };
 | |
| 
 | |
| app.use(router);
 | |
| 
 | |
| widgets(app);
 | |
| directives(app);
 | |
| components(app);
 | |
| 
 | |
| await router.isReady();
 | |
| 
 | |
| const splash = document.getElementById('splash');
 | |
| // 念のためnullチェック(HTMLが古い場合があるため(そのうち消す))
 | |
| if (splash) splash.addEventListener('transitionend', () => {
 | |
| 	splash.remove();
 | |
| });
 | |
| 
 | |
| const rootEl = document.createElement('div');
 | |
| document.body.appendChild(rootEl);
 | |
| app.mount(rootEl);
 | |
| 
 | |
| // boot.jsのやつを解除
 | |
| window.onerror = null;
 | |
| window.onunhandledrejection = null;
 | |
| 
 | |
| reactionPicker.init();
 | |
| 
 | |
| if (splash) {
 | |
| 	splash.style.opacity = '0';
 | |
| 	splash.style.pointerEvents = 'none';
 | |
| }
 | |
| 
 | |
| // クライアントが更新されたか?
 | |
| const lastVersion = localStorage.getItem('lastVersion');
 | |
| if (lastVersion !== version) {
 | |
| 	localStorage.setItem('lastVersion', version);
 | |
| 
 | |
| 	// テーマリビルドするため
 | |
| 	localStorage.removeItem('theme');
 | |
| 
 | |
| 	try { // 変なバージョン文字列来るとcompareVersionsでエラーになるため
 | |
| 		if (lastVersion != null && compareVersions(version, lastVersion) === 1) {
 | |
| 			// ログインしてる場合だけ
 | |
| 			if ($i) {
 | |
| 				popup(import('@/components/updated.vue'), {}, {}, 'closed');
 | |
| 			}
 | |
| 		}
 | |
| 	} catch (e) {
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // NOTE: この処理は必ず↑のクライアント更新時処理より後に来ること(テーマ再構築のため)
 | |
| watch(defaultStore.reactiveState.darkMode, (darkMode) => {
 | |
| 	applyTheme(darkMode ? ColdDeviceStorage.get('darkTheme') : ColdDeviceStorage.get('lightTheme'));
 | |
| }, { immediate: localStorage.theme == null });
 | |
| 
 | |
| const darkTheme = computed(ColdDeviceStorage.makeGetterSetter('darkTheme'));
 | |
| const lightTheme = computed(ColdDeviceStorage.makeGetterSetter('lightTheme'));
 | |
| 
 | |
| watch(darkTheme, (theme) => {
 | |
| 	if (defaultStore.state.darkMode) {
 | |
| 		applyTheme(theme);
 | |
| 	}
 | |
| });
 | |
| 
 | |
| watch(lightTheme, (theme) => {
 | |
| 	if (!defaultStore.state.darkMode) {
 | |
| 		applyTheme(theme);
 | |
| 	}
 | |
| });
 | |
| 
 | |
| //#region Sync dark mode
 | |
| if (ColdDeviceStorage.get('syncDeviceDarkMode')) {
 | |
| 	defaultStore.set('darkMode', isDeviceDarkmode());
 | |
| }
 | |
| 
 | |
| window.matchMedia('(prefers-color-scheme: dark)').addListener(mql => {
 | |
| 	if (ColdDeviceStorage.get('syncDeviceDarkMode')) {
 | |
| 		defaultStore.set('darkMode', mql.matches);
 | |
| 	}
 | |
| });
 | |
| //#endregion
 | |
| 
 | |
| // shortcut
 | |
| document.addEventListener('keydown', makeHotkey({
 | |
| 	'd': () => {
 | |
| 		defaultStore.set('darkMode', !defaultStore.state.darkMode);
 | |
| 	},
 | |
| 	'p|n': post,
 | |
| 	's': search,
 | |
| 	//TODO: 'h|/': help
 | |
| }));
 | |
| 
 | |
| watch(defaultStore.reactiveState.useBlurEffectForModal, v => {
 | |
| 	document.documentElement.style.setProperty('--modalBgFilter', v ? 'blur(4px)' : 'none');
 | |
| }, { immediate: true });
 | |
| 
 | |
| watch(defaultStore.reactiveState.useBlurEffect, v => {
 | |
| 	if (v) {
 | |
| 		document.documentElement.style.removeProperty('--blur');
 | |
| 	} else {
 | |
| 		document.documentElement.style.setProperty('--blur', 'none');
 | |
| 	}
 | |
| }, { immediate: true });
 | |
| 
 | |
| let reloadDialogShowing = false;
 | |
| stream.on('_disconnected_', async () => {
 | |
| 	if (defaultStore.state.serverDisconnectedBehavior === 'reload') {
 | |
| 		location.reload();
 | |
| 	} else if (defaultStore.state.serverDisconnectedBehavior === 'dialog') {
 | |
| 		if (reloadDialogShowing) return;
 | |
| 		reloadDialogShowing = true;
 | |
| 		const { canceled } = await confirm({
 | |
| 			type: 'warning',
 | |
| 			title: i18n.ts.disconnectedFromServer,
 | |
| 			text: i18n.ts.reloadConfirm,
 | |
| 		});
 | |
| 		reloadDialogShowing = false;
 | |
| 		if (!canceled) {
 | |
| 			location.reload();
 | |
| 		}
 | |
| 	}
 | |
| });
 | |
| 
 | |
| stream.on('emojiAdded', data => {
 | |
| 	// TODO
 | |
| 	//store.commit('instance/set', );
 | |
| });
 | |
| 
 | |
| for (const plugin of ColdDeviceStorage.get('plugins').filter(p => p.active)) {
 | |
| 	import('./plugin').then(({ install }) => {
 | |
| 		install(plugin);
 | |
| 	});
 | |
| }
 | |
| 
 | |
| if ($i) {
 | |
| 	if ($i.isDeleted) {
 | |
| 		alert({
 | |
| 			type: 'warning',
 | |
| 			text: i18n.ts.accountDeletionInProgress,
 | |
| 		});
 | |
| 	}
 | |
| 
 | |
| 	const lastUsed = localStorage.getItem('lastUsed');
 | |
| 	if (lastUsed) {
 | |
| 		const lastUsedDate = parseInt(lastUsed, 10);
 | |
| 		// 二時間以上前なら
 | |
| 		if (Date.now() - lastUsedDate > 1000 * 60 * 60 * 2) {
 | |
| 			toast(i18n.t('welcomeBackWithName', {
 | |
| 				name: $i.name || $i.username,
 | |
| 			}));
 | |
| 		}
 | |
| 	}
 | |
| 	localStorage.setItem('lastUsed', Date.now().toString());
 | |
| 
 | |
| 	if ('Notification' in window) {
 | |
| 		// 許可を得ていなかったらリクエスト
 | |
| 		if (Notification.permission === 'default') {
 | |
| 			Notification.requestPermission();
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	const main = markRaw(stream.useChannel('main', null, 'System'));
 | |
| 
 | |
| 	// 自分の情報が更新されたとき
 | |
| 	main.on('meUpdated', i => {
 | |
| 		updateAccount(i);
 | |
| 	});
 | |
| 
 | |
| 	main.on('readAllNotifications', () => {
 | |
| 		updateAccount({ hasUnreadNotification: false });
 | |
| 	});
 | |
| 
 | |
| 	main.on('unreadNotification', () => {
 | |
| 		updateAccount({ hasUnreadNotification: true });
 | |
| 	});
 | |
| 
 | |
| 	main.on('unreadMention', () => {
 | |
| 		updateAccount({ hasUnreadMentions: true });
 | |
| 	});
 | |
| 
 | |
| 	main.on('readAllUnreadMentions', () => {
 | |
| 		updateAccount({ hasUnreadMentions: false });
 | |
| 	});
 | |
| 
 | |
| 	main.on('unreadSpecifiedNote', () => {
 | |
| 		updateAccount({ hasUnreadSpecifiedNotes: true });
 | |
| 	});
 | |
| 
 | |
| 	main.on('readAllUnreadSpecifiedNotes', () => {
 | |
| 		updateAccount({ hasUnreadSpecifiedNotes: false });
 | |
| 	});
 | |
| 
 | |
| 	main.on('readAllMessagingMessages', () => {
 | |
| 		updateAccount({ hasUnreadMessagingMessage: false });
 | |
| 	});
 | |
| 
 | |
| 	main.on('unreadMessagingMessage', () => {
 | |
| 		updateAccount({ hasUnreadMessagingMessage: true });
 | |
| 		sound.play('chatBg');
 | |
| 	});
 | |
| 
 | |
| 	main.on('readAllAntennas', () => {
 | |
| 		updateAccount({ hasUnreadAntenna: false });
 | |
| 	});
 | |
| 
 | |
| 	main.on('unreadAntenna', () => {
 | |
| 		updateAccount({ hasUnreadAntenna: true });
 | |
| 		sound.play('antenna');
 | |
| 	});
 | |
| 
 | |
| 	main.on('readAllAnnouncements', () => {
 | |
| 		updateAccount({ hasUnreadAnnouncement: false });
 | |
| 	});
 | |
| 
 | |
| 	main.on('readAllChannels', () => {
 | |
| 		updateAccount({ hasUnreadChannel: false });
 | |
| 	});
 | |
| 
 | |
| 	main.on('unreadChannel', () => {
 | |
| 		updateAccount({ hasUnreadChannel: true });
 | |
| 		sound.play('channel');
 | |
| 	});
 | |
| 
 | |
| 	// トークンが再生成されたとき
 | |
| 	// このままではMisskeyが利用できないので強制的にサインアウトさせる
 | |
| 	main.on('myTokenRegenerated', () => {
 | |
| 		signout();
 | |
| 	});
 | |
| }
 | 
