2020-01-29 20:37:25 +01:00
|
|
|
/**
|
2020-07-11 03:13:11 +02:00
|
|
|
* Client entry point
|
2020-01-29 20:37:25 +01:00
|
|
|
*/
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
import '@/style.scss';
|
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
// TODO: そのうち消す
|
|
|
|
if (localStorage.getItem('vuex') != null) {
|
|
|
|
const vuex = JSON.parse(localStorage.getItem('vuex'));
|
|
|
|
|
2020-12-20 02:52:41 +01:00
|
|
|
localStorage.setItem('account', JSON.stringify({
|
|
|
|
...vuex.i,
|
|
|
|
token: localStorage.getItem('i')
|
|
|
|
}));
|
2020-12-19 02:55:52 +01: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-28 05:58:57 +01:00
|
|
|
localStorage.setItem('vuex-old', JSON.stringify(vuex));
|
2020-12-19 02:55:52 +01:00
|
|
|
localStorage.removeItem('vuex');
|
2020-12-20 02:52:41 +01:00
|
|
|
localStorage.removeItem('i');
|
2020-12-28 15:41:41 +01:00
|
|
|
localStorage.removeItem('locale');
|
2020-12-20 02:52:41 +01:00
|
|
|
|
|
|
|
location.reload();
|
2020-12-19 02:55:52 +01:00
|
|
|
}
|
|
|
|
|
2021-01-08 13:43:56 +01:00
|
|
|
import * as Sentry from '@sentry/browser';
|
|
|
|
import { Integrations } from '@sentry/tracing';
|
2021-01-21 13:17:22 +01:00
|
|
|
import { createApp, toRaw, watch } from 'vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
import widgets from '@/widgets';
|
|
|
|
import directives from '@/directives';
|
2020-10-17 13:12:00 +02:00
|
|
|
import components from '@/components';
|
2021-01-21 13:17:22 +01:00
|
|
|
import { version, ui, lang, host, locale } from '@/config';
|
2020-12-19 02:55:52 +01:00
|
|
|
import { router } from '@/router';
|
2020-10-17 13:12:00 +02:00
|
|
|
import { applyTheme } from '@/scripts/theme';
|
|
|
|
import { isDeviceDarkmode } from '@/scripts/is-device-darkmode';
|
2020-12-26 02:01:32 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2021-01-21 13:17:22 +01:00
|
|
|
import { api, stream, isMobile, dialog, post } from '@/os';
|
2020-12-19 02:55:52 +01: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 09:04:41 +01:00
|
|
|
import { makeHotkey } from './scripts/hotkey';
|
|
|
|
import { search } from './scripts/search';
|
2021-01-11 14:31:17 +01:00
|
|
|
import { getThemes } from './theme-store';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
console.info(`Misskey v${version}`);
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
if (_DEV_) {
|
|
|
|
console.warn('Development mode!!!');
|
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
(window as any).$i = $i;
|
|
|
|
(window as any).$store = defaultStore;
|
|
|
|
|
2020-10-17 13:12:00 +02: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 13:43:56 +01: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 13:12:00 +02:00
|
|
|
// タッチデバイスでCSSの:hoverを機能させる
|
|
|
|
document.addEventListener('touchend', () => {}, { passive: true });
|
|
|
|
|
2020-07-15 11:22:19 +02: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 20:37:25 +01: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-04 03:45:33 +01:00
|
|
|
const viewport = document.getElementsByName('viewport').item(0);
|
2020-01-29 20:37:25 +01: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 13:12:00 +02:00
|
|
|
//#region Fetch user
|
2020-12-19 02:55:52 +01:00
|
|
|
if ($i && $i.token) {
|
|
|
|
if (_DEV_) {
|
|
|
|
console.log('account cache found. refreshing...');
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
refreshAccount();
|
2020-10-17 13:12:00 +02:00
|
|
|
} else {
|
2020-12-19 02:55:52 +01:00
|
|
|
if (_DEV_) {
|
|
|
|
console.log('no account cache found.');
|
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
// 連携ログインの場合用にCookieを参照する
|
2020-12-19 02:55:52 +01:00
|
|
|
const i = (document.cookie.match(/igi=(\w+)/) || [null, null])[1];
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
if (i != null && i !== 'null') {
|
2020-12-19 02:55:52 +01:00
|
|
|
if (_DEV_) {
|
|
|
|
console.log('signing...');
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
try {
|
|
|
|
document.body.innerHTML = '<div>Please wait...</div>';
|
2020-12-19 02:55:52 +01:00
|
|
|
await login(i);
|
2020-10-17 13:12:00 +02:00
|
|
|
location.reload();
|
|
|
|
} catch (e) {
|
|
|
|
// Render the error screen
|
|
|
|
// TODO: ちゃんとしたコンポーネントをレンダリングする(v10とかのトラブルシューティングゲーム付きのやつみたいな)
|
|
|
|
document.body.innerHTML = '<div id="err">Oops!</div>';
|
|
|
|
}
|
2020-12-19 02:55:52 +01:00
|
|
|
} else {
|
|
|
|
if (_DEV_) {
|
|
|
|
console.log('not signed in');
|
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
fetchInstance().then(() => {
|
2021-01-16 05:46:46 +01:00
|
|
|
localStorage.setItem('v', instance.version);
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
// Init service worker
|
2021-01-21 13:17:22 +01:00
|
|
|
if (instance.swPublickey &&
|
|
|
|
('serviceWorker' in navigator) &&
|
|
|
|
('PushManager' in window) && $i && $i.token
|
|
|
|
) {
|
|
|
|
navigator.serviceWorker.ready.then(registration => {
|
|
|
|
registration.active?.postMessage({
|
|
|
|
msg: 'initialize',
|
|
|
|
locale,
|
|
|
|
i: toRaw($i),
|
|
|
|
});
|
|
|
|
// SEE: https://developer.mozilla.org/en-US/docs/Web/API/PushManager/subscribe#Parameters
|
|
|
|
registration.pushManager.subscribe({
|
|
|
|
userVisibleOnly: true,
|
|
|
|
applicationServerKey: urlBase64ToUint8Array(instance.swPublickey)
|
|
|
|
}).then(subscription => {
|
|
|
|
function encode(buffer: ArrayBuffer | null) {
|
|
|
|
return btoa(String.fromCharCode.apply(null, new Uint8Array(buffer)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register
|
|
|
|
api('sw/register', {
|
|
|
|
endpoint: subscription.endpoint,
|
|
|
|
auth: encode(subscription.getKey('auth')),
|
|
|
|
publickey: encode(subscription.getKey('p256dh'))
|
|
|
|
});
|
|
|
|
})
|
|
|
|
// When subscribe failed
|
|
|
|
.catch(async (err: Error) => {
|
|
|
|
// 通知が許可されていなかったとき
|
|
|
|
if (err.name === 'NotAllowedError') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 違うapplicationServerKey (または gcm_sender_id)のサブスクリプションが
|
|
|
|
// 既に存在していることが原因でエラーになった可能性があるので、
|
|
|
|
// そのサブスクリプションを解除しておく
|
|
|
|
const subscription = await registration.pushManager.getSubscription();
|
|
|
|
if (subscription) subscription.unsubscribe();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
};
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
stream.init($i);
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2020-10-24 18:21:41 +02:00
|
|
|
const app = createApp(await (
|
|
|
|
window.location.search === '?zen' ? import('@/ui/zen.vue') :
|
2020-12-19 02:55:52 +01:00
|
|
|
!$i ? import('@/ui/visitor.vue') :
|
2020-11-03 09:00:47 +01:00
|
|
|
ui === 'deck' ? import('@/ui/deck.vue') :
|
|
|
|
ui === 'desktop' ? import('@/ui/desktop.vue') :
|
2020-10-24 18:21:41 +02:00
|
|
|
import('@/ui/default.vue')
|
|
|
|
).then(x => x.default));
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
if (_DEV_) {
|
|
|
|
app.config.performance = true;
|
|
|
|
}
|
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
app.config.globalProperties = {
|
|
|
|
$i,
|
|
|
|
$store: defaultStore,
|
|
|
|
$instance: instance,
|
2020-12-26 02:01:32 +01:00
|
|
|
$t: i18n.t,
|
|
|
|
$ts: i18n.locale,
|
2020-12-19 02:55:52 +01:00
|
|
|
};
|
|
|
|
|
2020-10-17 13:12:00 +02: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 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
await router.isReady();
|
|
|
|
|
|
|
|
//document.body.innerHTML = '<div id="app"></div>';
|
|
|
|
|
|
|
|
app.mount('body');
|
2020-03-31 02:11:43 +02:00
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
watch(defaultStore.reactiveState.darkMode, (darkMode) => {
|
2020-10-17 13:12:00 +02:00
|
|
|
import('@/scripts/theme').then(({ builtinThemes }) => {
|
2021-01-11 14:31:17 +01:00
|
|
|
const themes = builtinThemes.concat(getThemes());
|
2020-12-19 02:55:52 +01:00
|
|
|
applyTheme(themes.find(x => x.id === (darkMode ? ColdDeviceStorage.get('darkTheme') : ColdDeviceStorage.get('lightTheme'))));
|
2020-05-23 06:19:31 +02:00
|
|
|
});
|
2020-12-30 02:15:16 +01:00
|
|
|
}, { immediate: localStorage.theme == null });
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
//#region Sync dark mode
|
2020-12-19 02:55:52 +01:00
|
|
|
if (ColdDeviceStorage.get('syncDeviceDarkMode')) {
|
|
|
|
defaultStore.set('darkMode', isDeviceDarkmode());
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
2020-07-12 11:14:59 +02:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
window.matchMedia('(prefers-color-scheme: dark)').addListener(mql => {
|
2020-12-19 02:55:52 +01:00
|
|
|
if (ColdDeviceStorage.get('syncDeviceDarkMode')) {
|
|
|
|
defaultStore.set('darkMode', mql.matches);
|
2020-07-12 11:14:59 +02:00
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
|
|
|
//#endregion
|
2020-07-12 11:14:59 +02:00
|
|
|
|
2020-12-27 09:04:41 +01:00
|
|
|
// shortcut
|
|
|
|
document.addEventListener('keydown', makeHotkey({
|
|
|
|
'd': () => {
|
|
|
|
defaultStore.set('darkMode', !defaultStore.state.darkMode);
|
|
|
|
},
|
|
|
|
'p|n': post,
|
|
|
|
's': search,
|
|
|
|
//TODO: 'h|/': help
|
|
|
|
}));
|
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
watch(defaultStore.reactiveState.useBlurEffectForModal, v => {
|
2020-10-17 13:12:00 +02:00
|
|
|
document.documentElement.style.setProperty('--modalBgFilter', v ? 'blur(4px)' : 'none');
|
|
|
|
}, { immediate: true });
|
2020-07-12 11:14:59 +02:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
let reloadDialogShowing = false;
|
|
|
|
stream.on('_disconnected_', async () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
if (defaultStore.state.serverDisconnectedBehavior === 'reload') {
|
2020-10-17 13:12:00 +02:00
|
|
|
location.reload();
|
2020-12-19 02:55:52 +01:00
|
|
|
} else if (defaultStore.state.serverDisconnectedBehavior === 'dialog') {
|
2020-10-17 13:12:00 +02:00
|
|
|
if (reloadDialogShowing) return;
|
|
|
|
reloadDialogShowing = true;
|
|
|
|
const { canceled } = await dialog({
|
|
|
|
type: 'warning',
|
2020-12-26 02:51:00 +01:00
|
|
|
title: i18n.locale.disconnectedFromServer,
|
|
|
|
text: i18n.locale.reloadConfirm,
|
2020-10-17 13:12:00 +02:00
|
|
|
showCancelButton: true
|
|
|
|
});
|
|
|
|
reloadDialogShowing = false;
|
|
|
|
if (!canceled) {
|
2020-08-19 14:47:18 +02:00
|
|
|
location.reload();
|
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
|
|
|
});
|
2020-04-02 15:17:17 +02:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
stream.on('emojiAdded', data => {
|
|
|
|
// TODO
|
|
|
|
//store.commit('instance/set', );
|
|
|
|
});
|
2020-07-11 17:38:55 +02:00
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
for (const plugin of ColdDeviceStorage.get('plugins').filter(p => p.active)) {
|
2020-10-17 13:12:00 +02:00
|
|
|
import('./plugin').then(({ install }) => {
|
|
|
|
install(plugin);
|
|
|
|
});
|
|
|
|
}
|
2020-07-11 17:38:55 +02:00
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
if ($i) {
|
2020-10-17 13:12:00 +02:00
|
|
|
if ('Notification' in window) {
|
|
|
|
// 許可を得ていなかったらリクエスト
|
|
|
|
if (Notification.permission === 'default') {
|
|
|
|
Notification.requestPermission();
|
|
|
|
}
|
2020-07-11 17:38:55 +02:00
|
|
|
}
|
|
|
|
|
2020-11-01 05:38:48 +01:00
|
|
|
const main = stream.useSharedConnection('main', 'System');
|
2020-07-12 11:14:59 +02:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
// 自分の情報が更新されたとき
|
|
|
|
main.on('meUpdated', i => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount(i);
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('readAllNotifications', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadNotification: false });
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('unreadNotification', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadNotification: true });
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('unreadMention', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadMentions: true });
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('readAllUnreadMentions', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadMentions: false });
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('unreadSpecifiedNote', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadSpecifiedNotes: true });
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('readAllUnreadSpecifiedNotes', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadSpecifiedNotes: false });
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('readAllMessagingMessages', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadMessagingMessage: false });
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('unreadMessagingMessage', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadMessagingMessage: true });
|
2020-11-25 13:31:34 +01:00
|
|
|
sound.play('chatBg');
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('readAllAntennas', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadAntenna: false });
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('unreadAntenna', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadAntenna: true });
|
2020-11-25 13:31:34 +01:00
|
|
|
sound.play('antenna');
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('readAllAnnouncements', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadAnnouncement: false });
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('readAllChannels', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadChannel: false });
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('unreadChannel', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadChannel: true });
|
2020-11-25 13:31:34 +01:00
|
|
|
sound.play('channel');
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
main.on('readAllAnnouncements', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
updateAccount({ hasUnreadAnnouncement: false });
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
2020-02-19 22:08:49 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
// トークンが再生成されたとき
|
|
|
|
// このままではMisskeyが利用できないので強制的にサインアウトさせる
|
|
|
|
main.on('myTokenRegenerated', () => {
|
|
|
|
signout();
|
|
|
|
});
|
|
|
|
}
|
2021-01-21 13:17:22 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert the URL safe base64 string to a Uint8Array
|
|
|
|
* @param base64String base64 string
|
|
|
|
*/
|
|
|
|
function urlBase64ToUint8Array(base64String: string): Uint8Array {
|
|
|
|
const padding = '='.repeat((4 - base64String.length % 4) % 4);
|
|
|
|
const base64 = (base64String + padding)
|
|
|
|
.replace(/-/g, '+')
|
|
|
|
.replace(/_/g, '/');
|
|
|
|
|
|
|
|
const rawData = window.atob(base64);
|
|
|
|
const outputArray = new Uint8Array(rawData.length);
|
|
|
|
|
|
|
|
for (let i = 0; i < rawData.length; ++i) {
|
|
|
|
outputArray[i] = rawData.charCodeAt(i);
|
|
|
|
}
|
|
|
|
return outputArray;
|
|
|
|
}
|