2020-01-29 13:37:25 -06:00
|
|
|
/**
|
2020-07-10 20:13:11 -05:00
|
|
|
* Client entry point
|
2020-01-29 13:37:25 -06:00
|
|
|
*/
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
import '@/style.scss';
|
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
// TODO: そのうち消す
|
|
|
|
if (localStorage.getItem('vuex') != null) {
|
|
|
|
const vuex = JSON.parse(localStorage.getItem('vuex'));
|
|
|
|
|
2020-12-19 19:52:41 -06:00
|
|
|
localStorage.setItem('account', JSON.stringify({
|
|
|
|
...vuex.i,
|
|
|
|
token: localStorage.getItem('i')
|
|
|
|
}));
|
2020-12-18 19:55:52 -06:00
|
|
|
localStorage.setItem('accounts', JSON.stringify(vuex.device.accounts));
|
|
|
|
localStorage.setItem('miux:themes', JSON.stringify(vuex.device.themes));
|
|
|
|
|
|
|
|
for (const [k, v] of Object.entries(vuex.device.userData)) {
|
|
|
|
localStorage.setItem('pizzax::base::' + k, JSON.stringify({
|
|
|
|
widgets: v.widgets
|
|
|
|
}));
|
|
|
|
|
|
|
|
if (v.deck) {
|
|
|
|
localStorage.setItem('pizzax::deck::' + k, JSON.stringify({
|
|
|
|
columns: v.deck.columns,
|
|
|
|
layout: v.deck.layout,
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-27 22:58:57 -06:00
|
|
|
localStorage.setItem('vuex-old', JSON.stringify(vuex));
|
2020-12-18 19:55:52 -06:00
|
|
|
localStorage.removeItem('vuex');
|
2020-12-19 19:52:41 -06:00
|
|
|
localStorage.removeItem('i');
|
2020-12-28 08:41:41 -06:00
|
|
|
localStorage.removeItem('locale');
|
2020-12-19 19:52:41 -06:00
|
|
|
|
|
|
|
location.reload();
|
2020-12-18 19:55:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
import { createApp, watch } from 'vue';
|
2020-01-29 13:37:25 -06:00
|
|
|
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
import widgets from '@/widgets';
|
|
|
|
import directives from '@/directives';
|
2020-10-17 06:12:00 -05:00
|
|
|
import components from '@/components';
|
2020-12-25 19:01:32 -06:00
|
|
|
import { version, ui, lang } from '@/config';
|
2020-12-18 19:55:52 -06:00
|
|
|
import { router } from '@/router';
|
2020-10-17 06:12:00 -05:00
|
|
|
import { applyTheme } from '@/scripts/theme';
|
|
|
|
import { isDeviceDarkmode } from '@/scripts/is-device-darkmode';
|
2020-12-25 19:01:32 -06:00
|
|
|
import { i18n } from '@/i18n';
|
2020-12-27 02:04:41 -06:00
|
|
|
import { stream, isMobile, dialog, post } from '@/os';
|
2020-12-18 19:55:52 -06:00
|
|
|
import * as sound from '@/scripts/sound';
|
|
|
|
import { $i, refreshAccount, login, updateAccount, signout } from '@/account';
|
|
|
|
import { defaultStore, ColdDeviceStorage } from '@/store';
|
|
|
|
import { fetchInstance, instance } from '@/instance';
|
2020-12-27 02:04:41 -06:00
|
|
|
import { makeHotkey } from './scripts/hotkey';
|
|
|
|
import { search } from './scripts/search';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
console.info(`Misskey v${version}`);
|
|
|
|
|
2020-12-27 02:04:41 -06:00
|
|
|
window.clearTimeout((window as any).mkBootTimer);
|
2020-12-25 19:01:32 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
if (_DEV_) {
|
|
|
|
console.warn('Development mode!!!');
|
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
(window as any).$i = $i;
|
|
|
|
(window as any).$store = defaultStore;
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
window.addEventListener('error', event => {
|
|
|
|
console.error(event);
|
|
|
|
/*
|
|
|
|
dialog({
|
|
|
|
type: 'error',
|
|
|
|
title: 'DEV: Unhandled error',
|
|
|
|
text: event.message
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
});
|
|
|
|
|
|
|
|
window.addEventListener('unhandledrejection', event => {
|
|
|
|
console.error(event);
|
|
|
|
/*
|
|
|
|
dialog({
|
|
|
|
type: 'error',
|
|
|
|
title: 'DEV: Unhandled promise rejection',
|
|
|
|
text: event.reason
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// タッチデバイスでCSSの:hoverを機能させる
|
|
|
|
document.addEventListener('touchend', () => {}, { passive: true });
|
|
|
|
|
2020-12-26 08:18:51 -06:00
|
|
|
if (localStorage.theme == null) {
|
2020-11-25 06:31:34 -06:00
|
|
|
applyTheme(require('@/themes/l-light.json5'));
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
|
2020-07-15 04:22:19 -05:00
|
|
|
//#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
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
// Get the <head> element
|
|
|
|
const head = document.getElementsByTagName('head')[0];
|
|
|
|
|
|
|
|
// If mobile, insert the viewport meta tag
|
|
|
|
if (isMobile || window.innerWidth <= 1024) {
|
2020-03-03 20:45:33 -06:00
|
|
|
const viewport = document.getElementsByName('viewport').item(0);
|
2020-01-29 13:37:25 -06:00
|
|
|
viewport.setAttribute('content',
|
|
|
|
`${viewport.getAttribute('content')},minimum-scale=1,maximum-scale=1,user-scalable=no`);
|
|
|
|
head.appendChild(viewport);
|
|
|
|
}
|
|
|
|
|
|
|
|
//#region Set lang attr
|
|
|
|
const html = document.documentElement;
|
|
|
|
html.setAttribute('lang', lang);
|
|
|
|
//#endregion
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
//#region Fetch user
|
2020-12-18 19:55:52 -06:00
|
|
|
if ($i && $i.token) {
|
|
|
|
if (_DEV_) {
|
|
|
|
console.log('account cache found. refreshing...');
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
refreshAccount();
|
2020-10-17 06:12:00 -05:00
|
|
|
} else {
|
2020-12-18 19:55:52 -06:00
|
|
|
if (_DEV_) {
|
|
|
|
console.log('no account cache found.');
|
|
|
|
}
|
2020-10-17 06:12:00 -05:00
|
|
|
|
|
|
|
// 連携ログインの場合用にCookieを参照する
|
2020-12-18 19:55:52 -06:00
|
|
|
const i = (document.cookie.match(/igi=(\w+)/) || [null, null])[1];
|
2020-10-17 06:12:00 -05:00
|
|
|
|
|
|
|
if (i != null && i !== 'null') {
|
2020-12-18 19:55:52 -06:00
|
|
|
if (_DEV_) {
|
|
|
|
console.log('signing...');
|
|
|
|
}
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
try {
|
|
|
|
document.body.innerHTML = '<div>Please wait...</div>';
|
2020-12-18 19:55:52 -06:00
|
|
|
await login(i);
|
2020-10-17 06:12:00 -05:00
|
|
|
location.reload();
|
|
|
|
} catch (e) {
|
|
|
|
// Render the error screen
|
|
|
|
// TODO: ちゃんとしたコンポーネントをレンダリングする(v10とかのトラブルシューティングゲーム付きのやつみたいな)
|
|
|
|
document.body.innerHTML = '<div id="err">Oops!</div>';
|
|
|
|
}
|
2020-12-18 19:55:52 -06:00
|
|
|
} else {
|
|
|
|
if (_DEV_) {
|
|
|
|
console.log('not signed in');
|
|
|
|
}
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
fetchInstance().then(() => {
|
2020-10-17 06:12:00 -05:00
|
|
|
// Init service worker
|
|
|
|
//if (this.store.state.instance.meta.swPublickey) this.registerSw(this.store.state.instance.meta.swPublickey);
|
|
|
|
});
|
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
stream.init($i);
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2020-10-24 11:21:41 -05:00
|
|
|
const app = createApp(await (
|
|
|
|
window.location.search === '?zen' ? import('@/ui/zen.vue') :
|
2020-12-18 19:55:52 -06:00
|
|
|
!$i ? import('@/ui/visitor.vue') :
|
2020-11-03 02:00:47 -06:00
|
|
|
ui === 'deck' ? import('@/ui/deck.vue') :
|
|
|
|
ui === 'desktop' ? import('@/ui/desktop.vue') :
|
2020-10-24 11:21:41 -05:00
|
|
|
import('@/ui/default.vue')
|
|
|
|
).then(x => x.default));
|
2020-10-17 06:12:00 -05:00
|
|
|
|
|
|
|
if (_DEV_) {
|
|
|
|
app.config.performance = true;
|
|
|
|
}
|
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
app.config.globalProperties = {
|
|
|
|
$i,
|
|
|
|
$store: defaultStore,
|
|
|
|
$instance: instance,
|
2020-12-25 19:01:32 -06:00
|
|
|
$t: i18n.t,
|
|
|
|
$ts: i18n.locale,
|
2020-12-18 19:55:52 -06:00
|
|
|
};
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
app.use(router);
|
|
|
|
// eslint-disable-next-line vue/component-definition-name-casing
|
|
|
|
app.component('Fa', FontAwesomeIcon);
|
|
|
|
|
|
|
|
widgets(app);
|
|
|
|
directives(app);
|
|
|
|
components(app);
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
await router.isReady();
|
|
|
|
|
|
|
|
//document.body.innerHTML = '<div id="app"></div>';
|
|
|
|
|
|
|
|
app.mount('body');
|
2020-03-30 19:11:43 -05:00
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
watch(defaultStore.reactiveState.darkMode, (darkMode) => {
|
2020-10-17 06:12:00 -05:00
|
|
|
import('@/scripts/theme').then(({ builtinThemes }) => {
|
2020-12-18 19:55:52 -06:00
|
|
|
const themes = builtinThemes.concat(ColdDeviceStorage.get('themes'));
|
|
|
|
applyTheme(themes.find(x => x.id === (darkMode ? ColdDeviceStorage.get('darkTheme') : ColdDeviceStorage.get('lightTheme'))));
|
2020-05-22 23:19:31 -05:00
|
|
|
});
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
//#region Sync dark mode
|
2020-12-18 19:55:52 -06:00
|
|
|
if (ColdDeviceStorage.get('syncDeviceDarkMode')) {
|
|
|
|
defaultStore.set('darkMode', isDeviceDarkmode());
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
2020-07-12 04:14:59 -05:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
window.matchMedia('(prefers-color-scheme: dark)').addListener(mql => {
|
2020-12-18 19:55:52 -06:00
|
|
|
if (ColdDeviceStorage.get('syncDeviceDarkMode')) {
|
|
|
|
defaultStore.set('darkMode', mql.matches);
|
2020-07-12 04:14:59 -05:00
|
|
|
}
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
|
|
|
//#endregion
|
2020-07-12 04:14:59 -05:00
|
|
|
|
2020-12-27 02:04:41 -06:00
|
|
|
// shortcut
|
|
|
|
document.addEventListener('keydown', makeHotkey({
|
|
|
|
'd': () => {
|
|
|
|
defaultStore.set('darkMode', !defaultStore.state.darkMode);
|
|
|
|
},
|
|
|
|
'p|n': post,
|
|
|
|
's': search,
|
|
|
|
//TODO: 'h|/': help
|
|
|
|
}));
|
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
watch(defaultStore.reactiveState.useBlurEffectForModal, v => {
|
2020-10-17 06:12:00 -05:00
|
|
|
document.documentElement.style.setProperty('--modalBgFilter', v ? 'blur(4px)' : 'none');
|
|
|
|
}, { immediate: true });
|
2020-07-12 04:14:59 -05:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
let reloadDialogShowing = false;
|
|
|
|
stream.on('_disconnected_', async () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
if (defaultStore.state.serverDisconnectedBehavior === 'reload') {
|
2020-10-17 06:12:00 -05:00
|
|
|
location.reload();
|
2020-12-18 19:55:52 -06:00
|
|
|
} else if (defaultStore.state.serverDisconnectedBehavior === 'dialog') {
|
2020-10-17 06:12:00 -05:00
|
|
|
if (reloadDialogShowing) return;
|
|
|
|
reloadDialogShowing = true;
|
|
|
|
const { canceled } = await dialog({
|
|
|
|
type: 'warning',
|
2020-12-25 19:51:00 -06:00
|
|
|
title: i18n.locale.disconnectedFromServer,
|
|
|
|
text: i18n.locale.reloadConfirm,
|
2020-10-17 06:12:00 -05:00
|
|
|
showCancelButton: true
|
|
|
|
});
|
|
|
|
reloadDialogShowing = false;
|
|
|
|
if (!canceled) {
|
2020-08-19 07:47:18 -05:00
|
|
|
location.reload();
|
|
|
|
}
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
|
|
|
});
|
2020-04-02 08:17:17 -05:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
stream.on('emojiAdded', data => {
|
|
|
|
// TODO
|
|
|
|
//store.commit('instance/set', );
|
|
|
|
});
|
2020-07-11 10:38:55 -05:00
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
for (const plugin of ColdDeviceStorage.get('plugins').filter(p => p.active)) {
|
2020-10-17 06:12:00 -05:00
|
|
|
import('./plugin').then(({ install }) => {
|
|
|
|
install(plugin);
|
|
|
|
});
|
|
|
|
}
|
2020-07-11 10:38:55 -05:00
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
if ($i) {
|
2020-10-17 06:12:00 -05:00
|
|
|
if ('Notification' in window) {
|
|
|
|
// 許可を得ていなかったらリクエスト
|
|
|
|
if (Notification.permission === 'default') {
|
|
|
|
Notification.requestPermission();
|
|
|
|
}
|
2020-07-11 10:38:55 -05:00
|
|
|
}
|
|
|
|
|
2020-10-31 23:38:48 -05:00
|
|
|
const main = stream.useSharedConnection('main', 'System');
|
2020-07-12 04:14:59 -05:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
// 自分の情報が更新されたとき
|
|
|
|
main.on('meUpdated', i => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount(i);
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('readAllNotifications', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadNotification: false });
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('unreadNotification', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadNotification: true });
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('unreadMention', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadMentions: true });
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('readAllUnreadMentions', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadMentions: false });
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('unreadSpecifiedNote', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadSpecifiedNotes: true });
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('readAllUnreadSpecifiedNotes', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadSpecifiedNotes: false });
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('readAllMessagingMessages', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadMessagingMessage: false });
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('unreadMessagingMessage', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadMessagingMessage: true });
|
2020-11-25 06:31:34 -06:00
|
|
|
sound.play('chatBg');
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('readAllAntennas', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadAntenna: false });
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('unreadAntenna', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadAntenna: true });
|
2020-11-25 06:31:34 -06:00
|
|
|
sound.play('antenna');
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('readAllAnnouncements', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadAnnouncement: false });
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('readAllChannels', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadChannel: false });
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-08-18 08:44:21 -05:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('unreadChannel', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadChannel: true });
|
2020-11-25 06:31:34 -06:00
|
|
|
sound.play('channel');
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('readAllAnnouncements', () => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({ hasUnreadAnnouncement: false });
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
main.on('clientSettingUpdated', x => {
|
2020-12-18 19:55:52 -06:00
|
|
|
updateAccount({
|
|
|
|
clientData: {
|
|
|
|
[x.key]: x.value
|
|
|
|
}
|
2020-02-19 15:08:49 -06:00
|
|
|
});
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
// トークンが再生成されたとき
|
|
|
|
// このままではMisskeyが利用できないので強制的にサインアウトさせる
|
|
|
|
main.on('myTokenRegenerated', () => {
|
|
|
|
signout();
|
|
|
|
});
|
|
|
|
}
|