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-11-11 11:02:25 -06:00
|
|
|
import '@/style.scss';
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2021-08-20 05:38:16 -05:00
|
|
|
//#region account indexedDB migration
|
2021-11-11 11:02:25 -06:00
|
|
|
import { set } from '@/scripts/idb-proxy';
|
2021-08-20 05:38:16 -05:00
|
|
|
|
|
|
|
if (localStorage.getItem('accounts') != null) {
|
|
|
|
set('accounts', JSON.parse(localStorage.getItem('accounts')));
|
|
|
|
localStorage.removeItem('accounts');
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
2021-09-17 08:39:15 -05:00
|
|
|
import { computed, createApp, watch, markRaw, version as vueVersion } from 'vue';
|
2022-02-02 10:45:34 -06:00
|
|
|
import compareVersions from 'compare-versions';
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2021-11-11 11:02:25 -06:00
|
|
|
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';
|
2021-12-29 07:13:09 -06:00
|
|
|
import { confirm, alert, post, popup, toast } from '@/os';
|
|
|
|
import { stream } from '@/stream';
|
2021-11-11 11:02:25 -06:00
|
|
|
import * as sound from '@/scripts/sound';
|
|
|
|
import { $i, refreshAccount, login, updateAccount, signout } from '@/account';
|
|
|
|
import { defaultStore, ColdDeviceStorage } from '@/store';
|
2022-02-28 12:51:31 -06:00
|
|
|
import { fetchInstance, instance } from '@/instance';
|
2021-11-11 11:02:25 -06:00
|
|
|
import { makeHotkey } from '@/scripts/hotkey';
|
|
|
|
import { search } from '@/scripts/search';
|
2022-02-08 03:46:39 -06:00
|
|
|
import { deviceKind } from '@/scripts/device-kind';
|
2021-11-11 11:02:25 -06:00
|
|
|
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';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
console.info(`Misskey v${version}`);
|
|
|
|
|
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);
|
|
|
|
/*
|
2021-11-18 08:36:04 -06:00
|
|
|
alert({
|
2020-10-17 06:12:00 -05:00
|
|
|
type: 'error',
|
|
|
|
title: 'DEV: Unhandled error',
|
|
|
|
text: event.message
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
});
|
|
|
|
|
|
|
|
window.addEventListener('unhandledrejection', event => {
|
|
|
|
console.error(event);
|
|
|
|
/*
|
2021-11-18 08:36:04 -06:00
|
|
|
alert({
|
2020-10-17 06:12:00 -05:00
|
|
|
type: 'error',
|
|
|
|
title: 'DEV: Unhandled promise rejection',
|
|
|
|
text: event.reason
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// タッチデバイスで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
|
2022-02-08 03:46:39 -06:00
|
|
|
if (['smartphone', 'tablet'].includes(deviceKind)) {
|
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',
|
2022-02-11 23:43:21 -06:00
|
|
|
`${viewport.getAttribute('content')}, minimum-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover`);
|
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
|
|
|
|
|
2022-02-28 12:51:31 -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-11-11 11:02:25 -06:00
|
|
|
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')
|
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,
|
2022-01-27 20:39:49 -06:00
|
|
|
$ts: i18n.ts,
|
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-11-13 22:13:05 -06:00
|
|
|
// boot.jsのやつを解除
|
|
|
|
window.onerror = null;
|
|
|
|
window.onunhandledrejection = null;
|
|
|
|
|
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) {
|
2021-11-11 11:02:25 -06:00
|
|
|
popup(import('@/components/updated.vue'), {}, {}, 'closed');
|
2021-09-22 08:18:08 -05:00
|
|
|
}
|
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;
|
2021-11-18 08:36:04 -06:00
|
|
|
const { canceled } = await confirm({
|
2020-10-17 06:12:00 -05:00
|
|
|
type: 'warning',
|
2022-01-27 20:39:49 -06:00
|
|
|
title: i18n.ts.disconnectedFromServer,
|
|
|
|
text: i18n.ts.reloadConfirm,
|
2020-10-17 06:12:00 -05:00
|
|
|
});
|
|
|
|
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) {
|
2021-11-18 08:36:04 -06:00
|
|
|
alert({
|
2021-08-20 22:41:56 -05:00
|
|
|
type: 'warning',
|
2022-01-27 20:39:49 -06:00
|
|
|
text: i18n.ts.accountDeletionInProgress,
|
2021-08-20 22:41:56 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-12-17 23:55:53 -06:00
|
|
|
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());
|
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
}
|