2020-01-29 19:37:25 +00:00
|
|
|
/**
|
2020-07-11 01:13:11 +00:00
|
|
|
* Client entry point
|
2020-01-29 19:37:25 +00:00
|
|
|
*/
|
|
|
|
|
2022-12-18 19:03:08 +00:00
|
|
|
// https://vitejs.dev/config/build-options.html#build-modulepreload
|
2023-01-13 04:40:33 +00:00
|
|
|
import "vite/modulepreload-polyfill";
|
2022-12-18 19:03:08 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
import "@/style.scss";
|
|
|
|
import "@/icons.scss";
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2021-08-20 10:38:16 +00:00
|
|
|
//#region account indexedDB migration
|
2023-01-13 04:40:33 +00:00
|
|
|
import { set } from "@/scripts/idb-proxy";
|
2021-08-20 10:38:16 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
if (localStorage.getItem("accounts") != null) {
|
|
|
|
set("accounts", JSON.parse(localStorage.getItem("accounts")));
|
|
|
|
localStorage.removeItem("accounts");
|
2021-08-20 10:38:16 +00:00
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
import {
|
|
|
|
computed,
|
|
|
|
createApp,
|
|
|
|
watch,
|
|
|
|
markRaw,
|
|
|
|
version as vueVersion,
|
|
|
|
defineAsyncComponent,
|
|
|
|
} from "vue";
|
|
|
|
import { compareVersions } from "compare-versions";
|
|
|
|
import JSON5 from "json5";
|
|
|
|
|
|
|
|
import widgets from "@/widgets";
|
|
|
|
import directives from "@/directives";
|
|
|
|
import components from "@/components";
|
|
|
|
import { version, ui, lang, host } from "@/config";
|
|
|
|
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";
|
2022-08-16 23:40:04 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
(async () => {
|
2022-07-29 04:59:49 +00:00
|
|
|
console.info(`Calckey v${version}`);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
if (_DEV_) {
|
2023-01-13 04:40:33 +00:00
|
|
|
console.warn("Development mode!!!");
|
2022-07-14 13:14:42 +00:00
|
|
|
|
|
|
|
console.info(`vue ${vueVersion}`);
|
|
|
|
|
|
|
|
(window as any).$i = $i;
|
|
|
|
(window as any).$store = defaultStore;
|
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
window.addEventListener("error", (event) => {
|
2022-07-14 13:14:42 +00:00
|
|
|
console.error(event);
|
|
|
|
/*
|
|
|
|
alert({
|
|
|
|
type: 'error',
|
|
|
|
title: 'DEV: Unhandled error',
|
|
|
|
text: event.message
|
|
|
|
});
|
|
|
|
*/
|
2020-10-17 11:12:00 +00:00
|
|
|
});
|
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
window.addEventListener("unhandledrejection", (event) => {
|
2022-07-14 13:14:42 +00:00
|
|
|
console.error(event);
|
|
|
|
/*
|
|
|
|
alert({
|
|
|
|
type: 'error',
|
|
|
|
title: 'DEV: Unhandled promise rejection',
|
|
|
|
text: event.reason
|
|
|
|
});
|
|
|
|
*/
|
2020-10-17 11:12:00 +00:00
|
|
|
});
|
2022-07-14 13:14:42 +00:00
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
// タッチデバイスでCSSの:hoverを機能させる
|
2023-01-13 04:40:33 +00:00
|
|
|
document.addEventListener("touchend", () => {}, { passive: true });
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
// 一斉リロード
|
2023-01-13 04:40:33 +00:00
|
|
|
reloadChannel.addEventListener("message", (path) => {
|
2022-07-14 13:14:42 +00:00
|
|
|
if (path !== null) location.href = path;
|
|
|
|
else location.reload();
|
|
|
|
});
|
2021-02-17 12:36:56 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
//#region SEE: https://css-tricks.com/the-trick-to-viewport-units-on-mobile/
|
|
|
|
// TODO: いつの日にか消したい
|
2020-07-15 09:22:19 +00:00
|
|
|
const vh = window.innerHeight * 0.01;
|
2023-01-13 04:40:33 +00:00
|
|
|
document.documentElement.style.setProperty("--vh", `${vh}px`);
|
|
|
|
window.addEventListener("resize", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
const vh = window.innerHeight * 0.01;
|
2023-01-13 04:40:33 +00:00
|
|
|
document.documentElement.style.setProperty("--vh", `${vh}px`);
|
2022-07-14 13:14:42 +00:00
|
|
|
});
|
|
|
|
//#endregion
|
2020-07-15 09:22:19 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
// If mobile, insert the viewport meta tag
|
2023-01-13 04:40:33 +00:00
|
|
|
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, viewport-fit=cover`,
|
|
|
|
);
|
2022-07-14 13:14:42 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
//#region Set lang attr
|
|
|
|
const html = document.documentElement;
|
2023-01-13 04:40:33 +00:00
|
|
|
html.setAttribute("lang", lang);
|
2022-07-14 13:14:42 +00:00
|
|
|
//#endregion
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
//#region loginId
|
|
|
|
const params = new URLSearchParams(location.search);
|
2023-01-13 04:40:33 +00:00
|
|
|
const loginId = params.get("loginId");
|
2021-10-31 07:01:50 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
if (loginId) {
|
|
|
|
const target = getUrlWithoutLoginId(location.href);
|
2021-10-31 07:01:50 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
if (!$i || $i.id !== loginId) {
|
|
|
|
const account = await getAccountFromId(loginId);
|
|
|
|
if (account) {
|
|
|
|
await login(account.token, target);
|
|
|
|
}
|
2021-10-31 07:01:50 +00:00
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
history.replaceState({ misskey: "loginId" }, "", target);
|
2020-12-19 01:55:52 +00:00
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
//#endregion
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
//#region Fetch user
|
2023-01-13 04:40:33 +00:00
|
|
|
if ($i?.token) {
|
2020-12-19 01:55:52 +00:00
|
|
|
if (_DEV_) {
|
2023-01-13 04:40:33 +00:00
|
|
|
console.log("account cache found. refreshing...");
|
2020-12-19 01:55:52 +00:00
|
|
|
}
|
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
refreshAccount();
|
2020-12-19 01:55:52 +00:00
|
|
|
} else {
|
|
|
|
if (_DEV_) {
|
2023-01-13 04:40:33 +00:00
|
|
|
console.log("no account cache found.");
|
2022-07-13 12:17:19 +00:00
|
|
|
}
|
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
// 連携ログインの場合用にCookieを参照する
|
|
|
|
const i = (document.cookie.match(/igi=(\w+)/) || [null, null])[1];
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
if (i != null && i !== "null") {
|
2022-07-14 13:14:42 +00:00
|
|
|
if (_DEV_) {
|
2023-01-13 04:40:33 +00:00
|
|
|
console.log("signing...");
|
2022-07-14 13:14:42 +00:00
|
|
|
}
|
2022-05-01 13:51:07 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
try {
|
2023-01-13 04:40:33 +00:00
|
|
|
document.body.innerHTML = "<div>Please wait...</div>";
|
2022-07-14 13:14:42 +00:00
|
|
|
await login(i);
|
|
|
|
} catch (err) {
|
|
|
|
// Render the error screen
|
|
|
|
// TODO: ちゃんとしたコンポーネントをレンダリングする(v10とかのトラブルシューティングゲーム付きのやつみたいな)
|
|
|
|
document.body.innerHTML = '<div id="err">Oops!</div>';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (_DEV_) {
|
2023-01-13 04:40:33 +00:00
|
|
|
console.log("not signed in");
|
2022-07-14 13:14:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//#endregion
|
2022-05-01 13:51:07 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
const fetchInstanceMetaPromise = fetchInstance();
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
fetchInstanceMetaPromise.then(() => {
|
2023-01-13 04:40:33 +00:00
|
|
|
localStorage.setItem("v", instance.version);
|
2022-07-14 13:14:42 +00:00
|
|
|
|
|
|
|
// Init service worker
|
|
|
|
initializeSw();
|
|
|
|
});
|
|
|
|
|
|
|
|
const app = createApp(
|
2023-01-13 04:40:33 +00:00
|
|
|
window.location.search === "?zen"
|
|
|
|
? defineAsyncComponent(() => import("@/ui/zen.vue"))
|
|
|
|
: !$i
|
|
|
|
? defineAsyncComponent(() => import("@/ui/visitor.vue"))
|
|
|
|
: ui === "deck"
|
|
|
|
? defineAsyncComponent(() => import("@/ui/deck.vue"))
|
|
|
|
: ui === "classic"
|
|
|
|
? defineAsyncComponent(() => import("@/ui/classic.vue"))
|
|
|
|
: defineAsyncComponent(() => import("@/ui/universal.vue")),
|
2022-07-14 13:14:42 +00:00
|
|
|
);
|
2021-11-14 04:13:05 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
if (_DEV_) {
|
|
|
|
app.config.performance = true;
|
2022-07-14 12:06:07 +00:00
|
|
|
}
|
2020-03-31 00:11:43 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
app.config.globalProperties = {
|
|
|
|
$i,
|
|
|
|
$store: defaultStore,
|
|
|
|
$instance: instance,
|
|
|
|
$t: i18n.t,
|
|
|
|
$ts: i18n.ts,
|
|
|
|
};
|
|
|
|
|
|
|
|
widgets(app);
|
|
|
|
directives(app);
|
|
|
|
components(app);
|
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
const splash = document.getElementById("splash");
|
2022-07-14 13:14:42 +00:00
|
|
|
// 念のためnullチェック(HTMLが古い場合があるため(そのうち消す))
|
2023-01-13 04:40:33 +00:00
|
|
|
if (splash)
|
|
|
|
splash.addEventListener("transitionend", () => {
|
|
|
|
splash.remove();
|
|
|
|
});
|
2021-03-05 04:51:22 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
// https://github.com/misskey-dev/misskey/pull/8575#issuecomment-1114239210
|
|
|
|
// なぜかinit.tsの内容が2回実行されることがあるため、mountするdivを1つに制限する
|
|
|
|
const rootEl = (() => {
|
2023-01-13 04:40:33 +00:00
|
|
|
const MISSKEY_MOUNT_DIV_ID = "calckey_app";
|
2021-08-12 03:02:41 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
const currentEl = document.getElementById(MISSKEY_MOUNT_DIV_ID);
|
2021-08-12 03:02:41 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
if (currentEl) {
|
2023-01-13 04:40:33 +00:00
|
|
|
console.warn("multiple import detected");
|
2022-07-14 13:14:42 +00:00
|
|
|
return currentEl;
|
|
|
|
}
|
2022-07-13 12:17:19 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
const rootEl = document.createElement("div");
|
2022-07-14 13:14:42 +00:00
|
|
|
rootEl.id = MISSKEY_MOUNT_DIV_ID;
|
|
|
|
document.body.appendChild(rootEl);
|
|
|
|
return rootEl;
|
|
|
|
})();
|
2021-08-12 03:02:41 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
app.mount(rootEl);
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
// boot.jsのやつを解除
|
|
|
|
window.onerror = null;
|
|
|
|
window.onunhandledrejection = null;
|
2021-04-12 13:07:32 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
reactionPicker.init();
|
|
|
|
|
|
|
|
if (splash) {
|
2023-01-13 04:40:33 +00:00
|
|
|
splash.style.opacity = "0";
|
|
|
|
splash.style.pointerEvents = "none";
|
2021-04-12 13:07:32 +00:00
|
|
|
}
|
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
// クライアントが更新されたか?
|
2023-01-13 04:40:33 +00:00
|
|
|
const lastVersion = localStorage.getItem("lastVersion");
|
2022-07-14 13:14:42 +00:00
|
|
|
if (lastVersion !== version) {
|
2023-01-13 04:40:33 +00:00
|
|
|
localStorage.setItem("lastVersion", version);
|
2022-07-13 12:17:19 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
// テーマリビルドするため
|
2023-01-13 04:40:33 +00:00
|
|
|
localStorage.removeItem("theme");
|
|
|
|
|
|
|
|
try {
|
|
|
|
// 変なバージョン文字列来るとcompareVersionsでエラーになるため
|
|
|
|
if (
|
|
|
|
lastVersion != null &&
|
|
|
|
compareVersions(version, lastVersion) === 1 &&
|
|
|
|
defaultStore.state.showUpdates
|
|
|
|
) {
|
2022-07-14 13:14:42 +00:00
|
|
|
// ログインしてる場合だけ
|
|
|
|
if ($i) {
|
2023-01-13 04:40:33 +00:00
|
|
|
popup(
|
|
|
|
defineAsyncComponent(() => import("@/components/MkUpdated.vue")),
|
|
|
|
{},
|
|
|
|
{},
|
|
|
|
"closed",
|
|
|
|
);
|
2022-07-14 13:14:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (err) {
|
2022-07-28 02:24:51 +00:00
|
|
|
console.error(err);
|
2022-07-14 13:14:42 +00:00
|
|
|
}
|
2022-07-14 12:06:07 +00:00
|
|
|
}
|
2020-07-12 09:14:59 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
// NOTE: この処理は必ず↑のクライアント更新時処理より後に来ること(テーマ再構築のため)
|
2023-01-13 04:40:33 +00:00
|
|
|
watch(
|
|
|
|
defaultStore.reactiveState.darkMode,
|
|
|
|
(darkMode) => {
|
|
|
|
applyTheme(
|
|
|
|
darkMode
|
|
|
|
? ColdDeviceStorage.get("darkTheme")
|
|
|
|
: ColdDeviceStorage.get("lightTheme"),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
{ immediate: localStorage.theme == null },
|
|
|
|
);
|
2020-07-12 09:14:59 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
const darkTheme = computed(ColdDeviceStorage.makeGetterSetter("darkTheme"));
|
|
|
|
const lightTheme = computed(ColdDeviceStorage.makeGetterSetter("lightTheme"));
|
2022-07-14 13:14:42 +00:00
|
|
|
|
|
|
|
watch(darkTheme, (theme) => {
|
|
|
|
if (defaultStore.state.darkMode) {
|
|
|
|
applyTheme(theme);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
watch(lightTheme, (theme) => {
|
|
|
|
if (!defaultStore.state.darkMode) {
|
|
|
|
applyTheme(theme);
|
|
|
|
}
|
|
|
|
});
|
2022-03-01 14:58:01 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
//#region Sync dark mode
|
2023-01-13 04:40:33 +00:00
|
|
|
if (ColdDeviceStorage.get("syncDeviceDarkMode")) {
|
|
|
|
defaultStore.set("darkMode", isDeviceDarkmode());
|
2022-07-14 12:06:07 +00:00
|
|
|
}
|
2020-07-12 09:14:59 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
window.matchMedia("(prefers-color-scheme: dark)").addListener((mql) => {
|
|
|
|
if (ColdDeviceStorage.get("syncDeviceDarkMode")) {
|
|
|
|
defaultStore.set("darkMode", mql.matches);
|
2022-07-14 13:14:42 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
//#endregion
|
2022-07-13 12:17:19 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
fetchInstanceMetaPromise.then(() => {
|
|
|
|
if (defaultStore.state.themeInitial) {
|
2023-01-13 04:40:33 +00:00
|
|
|
if (instance.defaultLightTheme != null)
|
|
|
|
ColdDeviceStorage.set(
|
|
|
|
"lightTheme",
|
|
|
|
JSON5.parse(instance.defaultLightTheme),
|
|
|
|
);
|
|
|
|
if (instance.defaultDarkTheme != null)
|
|
|
|
ColdDeviceStorage.set(
|
|
|
|
"darkTheme",
|
|
|
|
JSON5.parse(instance.defaultDarkTheme),
|
|
|
|
);
|
|
|
|
defaultStore.set("themeInitial", false);
|
2022-07-14 13:14:42 +00:00
|
|
|
}
|
|
|
|
});
|
2020-04-02 13:17:17 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
watch(
|
|
|
|
defaultStore.reactiveState.useBlurEffectForModal,
|
|
|
|
(v) => {
|
|
|
|
document.documentElement.style.setProperty(
|
|
|
|
"--modalBgFilter",
|
|
|
|
v ? "blur(4px)" : "none",
|
|
|
|
);
|
|
|
|
},
|
|
|
|
{ immediate: true },
|
|
|
|
);
|
2022-07-14 13:14:42 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
watch(
|
|
|
|
defaultStore.reactiveState.useBlurEffect,
|
|
|
|
(v) => {
|
|
|
|
if (v && deviceKind !== "smartphone") {
|
|
|
|
document.documentElement.style.removeProperty("--blur");
|
|
|
|
} else {
|
|
|
|
document.documentElement.style.setProperty("--blur", "none");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ immediate: true },
|
|
|
|
);
|
2022-07-14 12:06:07 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
let reloadDialogShowing = false;
|
2023-01-13 04:40:33 +00:00
|
|
|
stream.on("_disconnected_", async () => {
|
|
|
|
if (defaultStore.state.serverDisconnectedBehavior === "reload") {
|
2022-07-14 13:14:42 +00:00
|
|
|
location.reload();
|
2023-01-13 04:40:33 +00:00
|
|
|
} else if (defaultStore.state.serverDisconnectedBehavior === "dialog") {
|
2022-07-14 13:14:42 +00:00
|
|
|
if (reloadDialogShowing) return;
|
|
|
|
reloadDialogShowing = true;
|
|
|
|
const { canceled } = await confirm({
|
2023-01-13 04:40:33 +00:00
|
|
|
type: "warning",
|
2022-07-14 13:14:42 +00:00
|
|
|
title: i18n.ts.disconnectedFromServer,
|
|
|
|
text: i18n.ts.reloadConfirm,
|
|
|
|
});
|
|
|
|
reloadDialogShowing = false;
|
|
|
|
if (!canceled) {
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2020-07-11 15:38:55 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
stream.on("emojiAdded", (emojiData) => {
|
2022-07-14 13:14:42 +00:00
|
|
|
// TODO
|
|
|
|
//store.commit('instance/set', );
|
2020-10-17 11:12:00 +00:00
|
|
|
});
|
2020-07-11 15:38:55 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
for (const plugin of ColdDeviceStorage.get("plugins").filter(
|
|
|
|
(p) => p.active,
|
|
|
|
)) {
|
|
|
|
import("./plugin").then(({ install }) => {
|
2022-07-14 13:14:42 +00:00
|
|
|
install(plugin);
|
2021-08-21 03:41:56 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
const hotkeys = {
|
2023-01-13 04:40:33 +00:00
|
|
|
d: (): void => {
|
|
|
|
defaultStore.set("darkMode", !defaultStore.state.darkMode);
|
2022-07-14 13:14:42 +00:00
|
|
|
},
|
2023-01-13 04:40:33 +00:00
|
|
|
s: search,
|
2022-07-14 13:14:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if ($i) {
|
|
|
|
// only add post shortcuts if logged in
|
2023-01-13 04:40:33 +00:00
|
|
|
hotkeys["p|n"] = post;
|
2022-07-14 13:14:42 +00:00
|
|
|
|
|
|
|
if ($i.isDeleted) {
|
|
|
|
alert({
|
2023-01-13 04:40:33 +00:00
|
|
|
type: "warning",
|
2022-07-14 13:14:42 +00:00
|
|
|
text: i18n.ts.accountDeletionInProgress,
|
|
|
|
});
|
2021-12-18 05:55:53 +00:00
|
|
|
}
|
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
const lastUsed = localStorage.getItem("lastUsed");
|
2022-07-14 13:14:42 +00:00
|
|
|
if (lastUsed) {
|
|
|
|
const lastUsedDate = parseInt(lastUsed, 10);
|
|
|
|
// 二時間以上前なら
|
|
|
|
if (Date.now() - lastUsedDate > 1000 * 60 * 60 * 2) {
|
2023-01-13 04:40:33 +00:00
|
|
|
toast(
|
|
|
|
i18n.t("welcomeBackWithName", {
|
|
|
|
name: $i.name || $i.username,
|
|
|
|
}),
|
|
|
|
);
|
2022-07-14 13:14:42 +00:00
|
|
|
}
|
2022-07-13 12:17:19 +00:00
|
|
|
}
|
2023-01-13 04:40:33 +00:00
|
|
|
localStorage.setItem("lastUsed", Date.now().toString());
|
2020-07-12 09:14:59 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
if ("Notification" in window) {
|
2022-07-14 13:14:42 +00:00
|
|
|
// 許可を得ていなかったらリクエスト
|
2023-01-13 04:40:33 +00:00
|
|
|
if (Notification.permission === "default") {
|
2022-07-14 13:14:42 +00:00
|
|
|
Notification.requestPermission();
|
|
|
|
}
|
|
|
|
}
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
const main = markRaw(stream.useChannel("main", null, "System"));
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
// 自分の情報が更新されたとき
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("meUpdated", (i) => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount(i);
|
|
|
|
});
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("readAllNotifications", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadNotification: false });
|
|
|
|
});
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("unreadNotification", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadNotification: true });
|
|
|
|
});
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("unreadMention", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadMentions: true });
|
|
|
|
});
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("readAllUnreadMentions", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadMentions: false });
|
|
|
|
});
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("unreadSpecifiedNote", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadSpecifiedNotes: true });
|
|
|
|
});
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("readAllUnreadSpecifiedNotes", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadSpecifiedNotes: false });
|
|
|
|
});
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("readAllMessagingMessages", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadMessagingMessage: false });
|
|
|
|
});
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("unreadMessagingMessage", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadMessagingMessage: true });
|
2023-01-13 04:40:33 +00:00
|
|
|
sound.play("chatBg");
|
2022-07-14 13:14:42 +00:00
|
|
|
});
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("readAllAntennas", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadAntenna: false });
|
|
|
|
});
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("unreadAntenna", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadAntenna: true });
|
2023-01-13 04:40:33 +00:00
|
|
|
sound.play("antenna");
|
2022-07-14 13:14:42 +00:00
|
|
|
});
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("readAllAnnouncements", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadAnnouncement: false });
|
|
|
|
});
|
2020-02-19 21:08:49 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("readAllChannels", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadChannel: false });
|
|
|
|
});
|
2022-06-25 05:25:22 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("unreadChannel", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
updateAccount({ hasUnreadChannel: true });
|
2023-01-13 04:40:33 +00:00
|
|
|
sound.play("channel");
|
2022-07-14 13:14:42 +00:00
|
|
|
});
|
2022-07-13 12:17:19 +00:00
|
|
|
|
2022-07-14 13:14:42 +00:00
|
|
|
// トークンが再生成されたとき
|
|
|
|
// このままではMisskeyが利用できないので強制的にサインアウトさせる
|
2023-01-13 04:40:33 +00:00
|
|
|
main.on("myTokenRegenerated", () => {
|
2022-07-14 13:14:42 +00:00
|
|
|
signout();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// shortcut
|
2023-01-13 04:40:33 +00:00
|
|
|
document.addEventListener("keydown", makeHotkey(hotkeys));
|
2022-07-14 13:14:42 +00:00
|
|
|
})();
|