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
|
|
|
*/
|
|
|
|
|
2021-03-23 03:30:14 -05:00
|
|
|
import '@client/style.scss';
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2021-08-20 05:38:16 -05:00
|
|
|
//#region account indexedDB migration
|
|
|
|
import { set } from '@client/scripts/idb-proxy';
|
|
|
|
|
|
|
|
if (localStorage.getItem('accounts') != null) {
|
|
|
|
set('accounts', JSON.parse(localStorage.getItem('accounts')));
|
|
|
|
localStorage.removeItem('accounts');
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
2021-01-08 06:43:56 -06:00
|
|
|
import * as Sentry from '@sentry/browser';
|
|
|
|
import { Integrations } from '@sentry/tracing';
|
2021-09-17 08:39:15 -05:00
|
|
|
import { computed, createApp, watch, markRaw, version as vueVersion } from 'vue';
|
2021-08-13 03:59:54 -05:00
|
|
|
import compareVersions from 'compare-versions';
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2021-03-23 03:30:14 -05:00
|
|
|
import widgets from '@client/widgets';
|
|
|
|
import directives from '@client/directives';
|
|
|
|
import components from '@client/components';
|
|
|
|
import { version, ui, lang, host } from '@client/config';
|
|
|
|
import { router } from '@client/router';
|
|
|
|
import { applyTheme } from '@client/scripts/theme';
|
|
|
|
import { isDeviceDarkmode } from '@client/scripts/is-device-darkmode';
|
|
|
|
import { i18n } from '@client/i18n';
|
2021-08-11 22:02:41 -05:00
|
|
|
import { stream, dialog, post, popup } from '@client/os';
|
2021-03-23 03:30:14 -05:00
|
|
|
import * as sound from '@client/scripts/sound';
|
|
|
|
import { $i, refreshAccount, login, updateAccount, signout } from '@client/account';
|
|
|
|
import { defaultStore, ColdDeviceStorage } from '@client/store';
|
|
|
|
import { fetchInstance, instance } from '@client/instance';
|
|
|
|
import { makeHotkey } from '@client/scripts/hotkey';
|
|
|
|
import { search } from '@client/scripts/search';
|
|
|
|
import { isMobile } from '@client/scripts/is-mobile';
|
|
|
|
import { initializeSw } from '@client/scripts/initialize-sw';
|
|
|
|
import { reloadChannel } from '@client/scripts/unison-reload';
|
|
|
|
import { reactionPicker } from '@client/scripts/reaction-picker';
|
2021-10-31 02:01:50 -05:00
|
|
|
import { getUrlWithoutLoginId } from '@client/scripts/login-id';
|
|
|
|
import { getAccountFromId } from '@client/scripts/get-account-from-id';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
console.info(`Misskey v${version}`);
|
|
|
|
|
2021-02-20 22:34:00 -06:00
|
|
|
// boot.jsのやつを解除
|
|
|
|
window.onerror = null;
|
2021-03-02 09:25:13 -06:00
|
|
|
window.onunhandledrejection = null;
|
2021-02-20 22:34:00 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
if (_DEV_) {
|
|
|
|
console.warn('Development mode!!!');
|
|
|
|
|
2021-09-17 08:39:15 -05:00
|
|
|
console.info(`vue ${vueVersion}`);
|
|
|
|
|
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
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-01-08 06:43:56 -06:00
|
|
|
if (defaultStore.state.reportError && !_DEV_) {
|
|
|
|
Sentry.init({
|
|
|
|
dsn: 'https://fd273254a07a4b61857607a9ea05d629@o501808.ingest.sentry.io/5583438',
|
|
|
|
tracesSampleRate: 1.0,
|
|
|
|
});
|
|
|
|
|
|
|
|
Sentry.setTag('misskey_version', version);
|
|
|
|
Sentry.setTag('ui', ui);
|
|
|
|
Sentry.setTag('lang', lang);
|
|
|
|
Sentry.setTag('host', host);
|
|
|
|
}
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
// タッチデバイスでCSSの:hoverを機能させる
|
|
|
|
document.addEventListener('touchend', () => {}, { passive: true });
|
|
|
|
|
2021-02-17 06:36:56 -06:00
|
|
|
// 一斉リロード
|
2021-11-04 10:09:13 -05:00
|
|
|
reloadChannel.addEventListener('message', path => {
|
|
|
|
if (path !== null) location.href = path;
|
|
|
|
else location.reload();
|
|
|
|
});
|
2021-02-17 06:36:56 -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
|
|
|
// 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`);
|
2021-08-22 08:22:53 -05:00
|
|
|
document.head.appendChild(viewport);
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
//#region Set lang attr
|
|
|
|
const html = document.documentElement;
|
|
|
|
html.setAttribute('lang', lang);
|
|
|
|
//#endregion
|
|
|
|
|
2021-10-31 02:01:50 -05:00
|
|
|
//#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
|
|
|
|
|
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(() => {
|
2021-01-15 22:46:46 -06:00
|
|
|
localStorage.setItem('v', instance.version);
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
// Init service worker
|
2021-02-06 03:55:53 -06:00
|
|
|
initializeSw();
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
|
|
|
|
2020-10-24 11:21:41 -05:00
|
|
|
const app = createApp(await (
|
2021-03-23 03:30:14 -05:00
|
|
|
window.location.search === '?zen' ? import('@client/ui/zen.vue') :
|
|
|
|
!$i ? import('@client/ui/visitor.vue') :
|
|
|
|
ui === 'deck' ? import('@client/ui/deck.vue') :
|
|
|
|
ui === 'desktop' ? import('@client/ui/desktop.vue') :
|
|
|
|
ui === 'chat' ? import('@client/ui/chat/index.vue') :
|
2021-10-24 00:50:00 -05:00
|
|
|
ui === 'classic' ? import('@client/ui/classic.vue') :
|
2021-10-24 00:39:08 -05:00
|
|
|
import('@client/ui/universal.vue')
|
2020-10-24 11:21:41 -05:00
|
|
|
).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);
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
2021-03-04 22:51:22 -06:00
|
|
|
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);
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2021-03-04 22:49:46 -06:00
|
|
|
reactionPicker.init();
|
2020-03-30 19:11:43 -05:00
|
|
|
|
2021-03-04 22:51:22 -06:00
|
|
|
if (splash) {
|
|
|
|
splash.style.opacity = '0';
|
|
|
|
splash.style.pointerEvents = 'none';
|
|
|
|
}
|
|
|
|
|
2021-08-11 22:02:41 -05:00
|
|
|
// クライアントが更新されたか?
|
|
|
|
const lastVersion = localStorage.getItem('lastVersion');
|
|
|
|
if (lastVersion !== version) {
|
|
|
|
localStorage.setItem('lastVersion', version);
|
|
|
|
|
|
|
|
// テーマリビルドするため
|
|
|
|
localStorage.removeItem('theme');
|
|
|
|
|
2021-08-15 06:34:06 -05:00
|
|
|
try { // 変なバージョン文字列来るとcompareVersionsでエラーになるため
|
|
|
|
if (lastVersion != null && compareVersions(version, lastVersion) === 1) {
|
2021-09-22 08:18:08 -05:00
|
|
|
// ログインしてる場合だけ
|
|
|
|
if ($i) {
|
|
|
|
popup(import('@client/components/updated.vue'), {}, {}, 'closed');
|
|
|
|
}
|
2021-08-15 06:34:06 -05:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2021-08-13 03:59:54 -05:00
|
|
|
}
|
2021-08-11 22:02:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: この処理は必ず↑のクライアント更新時処理より後に来ること(テーマ再構築のため)
|
2020-12-18 19:55:52 -06:00
|
|
|
watch(defaultStore.reactiveState.darkMode, (darkMode) => {
|
2021-04-12 08:07:32 -05:00
|
|
|
applyTheme(darkMode ? ColdDeviceStorage.get('darkTheme') : ColdDeviceStorage.get('lightTheme'));
|
2020-12-29 19:15:16 -06:00
|
|
|
}, { immediate: localStorage.theme == null });
|
2020-02-19 15:08:49 -06:00
|
|
|
|
2021-04-12 08:07:32 -05:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
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
|
|
|
|
2021-08-11 08:34:45 -05:00
|
|
|
watch(defaultStore.reactiveState.useBlurEffect, v => {
|
|
|
|
if (v) {
|
|
|
|
document.documentElement.style.removeProperty('--blur');
|
|
|
|
} else {
|
|
|
|
document.documentElement.style.setProperty('--blur', 'none');
|
|
|
|
}
|
|
|
|
}, { immediate: true });
|
|
|
|
|
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) {
|
2021-08-20 22:41:56 -05:00
|
|
|
if ($i.isDeleted) {
|
|
|
|
dialog({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.locale.accountDeletionInProgress,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-07-25 21:12:06 -05:00
|
|
|
const main = markRaw(stream.useChannel('main', null, '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
|
|
|
// トークンが再生成されたとき
|
|
|
|
// このままではMisskeyが利用できないので強制的にサインアウトさせる
|
|
|
|
main.on('myTokenRegenerated', () => {
|
|
|
|
signout();
|
|
|
|
});
|
|
|
|
}
|