From 40c471ff56d8d3ab1b7b59df306eab8991dc7335 Mon Sep 17 00:00:00 2001 From: Natty Date: Sun, 23 Jul 2023 14:19:12 +0200 Subject: [PATCH] Frontend: Removed the update check --- .../frontend/calckey-js/etc/calckey-js.api.md | 4 - .../markdown/calckey-js.endpoints.md | 4 - .../frontend/calckey-js/src/api.types.ts | 18 +- .../frontend/client/src/pages/admin/index.vue | 737 ++++++------ .../client/src/pages/settings/general.vue | 565 +++++---- .../pages/settings/preferences-backups.vue | 816 ++++++------- fe_calckey/frontend/client/src/store.ts | 824 +++++++------ .../client/src/ui/_common_/navbar.vue | 1067 ++++++++--------- 8 files changed, 1977 insertions(+), 2058 deletions(-) diff --git a/fe_calckey/frontend/calckey-js/etc/calckey-js.api.md b/fe_calckey/frontend/calckey-js/etc/calckey-js.api.md index c17648e..27ca443 100644 --- a/fe_calckey/frontend/calckey-js/etc/calckey-js.api.md +++ b/fe_calckey/frontend/calckey-js/etc/calckey-js.api.md @@ -2034,10 +2034,6 @@ export type Endpoints = { req: NoParams; res: ServerInfo; }; - "latest-version": { - req: NoParams; - res: TODO; - }; "sw/register": { req: TODO; res: TODO; diff --git a/fe_calckey/frontend/calckey-js/markdown/calckey-js.endpoints.md b/fe_calckey/frontend/calckey-js/markdown/calckey-js.endpoints.md index c6649c2..7d342ef 100644 --- a/fe_calckey/frontend/calckey-js/markdown/calckey-js.endpoints.md +++ b/fe_calckey/frontend/calckey-js/markdown/calckey-js.endpoints.md @@ -1698,10 +1698,6 @@ export declare type Endpoints = { req: NoParams; res: ServerInfo; }; - "latest-version": { - req: NoParams; - res: TODO; - }; "sw/register": { req: TODO; res: TODO; diff --git a/fe_calckey/frontend/calckey-js/src/api.types.ts b/fe_calckey/frontend/calckey-js/src/api.types.ts index 273fec3..95e4f75 100644 --- a/fe_calckey/frontend/calckey-js/src/api.types.ts +++ b/fe_calckey/frontend/calckey-js/src/api.types.ts @@ -5,7 +5,6 @@ import { App, AuthSession, Blocking, - Channel, Clip, DateString, DetailedInstanceMetadata, @@ -17,24 +16,23 @@ import { FollowRequest, GalleryPost, Instance, - InstanceMetadata, LiteInstanceMetadata, MeDetailed, + MessagingMessage, Note, NoteFavorite, + NoteReaction, + Notification, OriginType, Page, ServerInfo, + Signin, Stats, User, UserDetailed, UserGroup, UserList, UserSorting, - Notification, - NoteReaction, - Signin, - MessagingMessage, } from "./entities"; type TODO = Record | null; @@ -758,10 +756,7 @@ export type Endpoints = { $cases: [ [{ detail: true }, DetailedInstanceMetadata], [{ detail: false }, LiteInstanceMetadata], - [ - { detail: boolean }, - LiteInstanceMetadata | DetailedInstanceMetadata, - ], + [{ detail: boolean }, LiteInstanceMetadata | DetailedInstanceMetadata] ]; $default: LiteInstanceMetadata; }; @@ -977,9 +972,6 @@ export type Endpoints = { // server-info "server-info": { req: NoParams; res: ServerInfo }; - // ck specific - "latest-version": { req: NoParams; res: TODO }; - // sw "sw/register": { req: TODO; res: TODO }; diff --git a/fe_calckey/frontend/client/src/pages/admin/index.vue b/fe_calckey/frontend/client/src/pages/admin/index.vue index e6932fb..0de8e2f 100644 --- a/fe_calckey/frontend/client/src/pages/admin/index.vue +++ b/fe_calckey/frontend/client/src/pages/admin/index.vue @@ -1,93 +1,70 @@ diff --git a/fe_calckey/frontend/client/src/pages/settings/general.vue b/fe_calckey/frontend/client/src/pages/settings/general.vue index 36a4e2a..ca552f6 100644 --- a/fe_calckey/frontend/client/src/pages/settings/general.vue +++ b/fe_calckey/frontend/client/src/pages/settings/general.vue @@ -1,136 +1,136 @@ diff --git a/fe_calckey/frontend/client/src/pages/settings/preferences-backups.vue b/fe_calckey/frontend/client/src/pages/settings/preferences-backups.vue index 313024d..b891400 100644 --- a/fe_calckey/frontend/client/src/pages/settings/preferences-backups.vue +++ b/fe_calckey/frontend/client/src/pages/settings/preferences-backups.vue @@ -1,58 +1,58 @@ diff --git a/fe_calckey/frontend/client/src/store.ts b/fe_calckey/frontend/client/src/store.ts index d0b23d4..c8ba03f 100644 --- a/fe_calckey/frontend/client/src/store.ts +++ b/fe_calckey/frontend/client/src/store.ts @@ -1,6 +1,10 @@ import { markRaw, ref } from "vue"; import { Storage } from "./pizzax"; -import { Theme } from "./scripts/theme"; +/** + * 常にメモリにロードしておく必要がないような設定情報を保管するストレージ(非リアクティブ) + */ +import lightTheme from "@/themes/l-rosepinedawn.json5"; +import darkTheme from "@/themes/d-rosepine.json5"; export const postFormActions = []; export const userActions = []; @@ -9,334 +13,330 @@ export const noteViewInterruptors = []; export const notePostInterruptors = []; const menuOptions = [ - "notifications", - "followRequests", - "explore", - "favorites", - "search", + "notifications", + "followRequests", + "explore", + "favorites", + "search", ]; // TODO: それぞれいちいちwhereとかdefaultというキーを付けなきゃいけないの冗長なのでなんとかする(ただ型定義が面倒になりそう) // あと、現行の定義の仕方なら「whereが何であるかに関わらずキー名の重複不可」という制約を付けられるメリットもあるからそのメリットを引き継ぐ方法も考えないといけない export const defaultStore = markRaw( - new Storage("base", { - tutorial: { - where: "account", - default: 0, - }, - tlHomeHintClosed: { - where: "device", - default: false, - }, - tlLocalHintClosed: { - where: "device", - default: false, - }, - tlRecommendedHintClosed: { - where: "device", - default: false, - }, - tlSocialHintClosed: { - where: "device", - default: false, - }, - tlGlobalHintClosed: { - where: "device", - default: false, - }, - keepCw: { - where: "account", - default: true, - }, - showFullAcct: { - where: "account", - default: false, - }, - rememberNoteVisibility: { - where: "account", - default: false, - }, - defaultNoteVisibility: { - where: "account", - default: "public", - }, - defaultNoteLocalOnly: { - where: "account", - default: false, - }, - uploadFolder: { - where: "account", - default: null as string | null, - }, - pastedFileName: { - where: "account", - default: "yyyy-MM-dd HH-mm-ss [{{number}}]", - }, - keepOriginalUploading: { - where: "account", - default: false, - }, - memo: { - where: "account", - default: null, - }, - reactions: { - where: "account", - default: [ - "⭐", - "❤️", - "😆", - "🤔", - "😮", - "🎉", - "💢", - "😥", - "😇", - "🦋", - "🦊", - ], - }, - mutedWords: { - where: "account", - default: [], - }, - mutedAds: { - where: "account", - default: [] as string[], - }, - showAds: { - where: "account", - default: true, - }, - menu: { - where: "deviceAccount", - default: menuOptions, - }, - visibility: { - where: "deviceAccount", - default: "public" as "public" | "home" | "followers" | "specified", - }, - localOnly: { - where: "deviceAccount", - default: false, - }, - statusbars: { - where: "deviceAccount", - default: [] as { - name: string; - id: string; - type: string; - size: "verySmall" | "small" | "medium" | "large" | "veryLarge"; - black: boolean; - props: Record; - }[], - }, - widgets: { - where: "deviceAccount", - default: [] as { - name: string; - id: string; - place: string | null; - data: Record; - }[], - }, - tl: { - where: "deviceAccount", - default: { - src: "home" as "home" | "local" | "social" | "global", - arg: null, - }, - }, + new Storage("base", { + tutorial: { + where: "account", + default: 0, + }, + tlHomeHintClosed: { + where: "device", + default: false, + }, + tlLocalHintClosed: { + where: "device", + default: false, + }, + tlRecommendedHintClosed: { + where: "device", + default: false, + }, + tlSocialHintClosed: { + where: "device", + default: false, + }, + tlGlobalHintClosed: { + where: "device", + default: false, + }, + keepCw: { + where: "account", + default: true, + }, + showFullAcct: { + where: "account", + default: false, + }, + rememberNoteVisibility: { + where: "account", + default: false, + }, + defaultNoteVisibility: { + where: "account", + default: "public", + }, + defaultNoteLocalOnly: { + where: "account", + default: false, + }, + uploadFolder: { + where: "account", + default: null as string | null, + }, + pastedFileName: { + where: "account", + default: "yyyy-MM-dd HH-mm-ss [{{number}}]", + }, + keepOriginalUploading: { + where: "account", + default: false, + }, + memo: { + where: "account", + default: null, + }, + reactions: { + where: "account", + default: [ + "⭐", + "❤️", + "😆", + "🤔", + "😮", + "🎉", + "💢", + "😥", + "😇", + "🦋", + "🦊", + ], + }, + mutedWords: { + where: "account", + default: [], + }, + mutedAds: { + where: "account", + default: [] as string[], + }, + showAds: { + where: "account", + default: true, + }, + menu: { + where: "deviceAccount", + default: menuOptions, + }, + visibility: { + where: "deviceAccount", + default: "public" as "public" | "home" | "followers" | "specified", + }, + localOnly: { + where: "deviceAccount", + default: false, + }, + statusbars: { + where: "deviceAccount", + default: [] as { + name: string; + id: string; + type: string; + size: "verySmall" | "small" | "medium" | "large" | "veryLarge"; + black: boolean; + props: Record; + }[], + }, + widgets: { + where: "deviceAccount", + default: [] as { + name: string; + id: string; + place: string | null; + data: Record; + }[], + }, + tl: { + where: "deviceAccount", + default: { + src: "home" as "home" | "local" | "social" | "global", + arg: null, + }, + }, - overridedDeviceKind: { - where: "device", - default: null as null | "smartphone" | "tablet" | "desktop", - }, - serverDisconnectedBehavior: { - where: "device", - default: "nothing" as "nothing" | "quiet" | "reload" | "dialog", - }, - seperateRenoteQuote: { - where: "device", - default: true, - }, - expandOnNoteClick: { - where: "device", - default: true, - }, - nsfw: { - where: "device", - default: "respect" as "respect" | "force" | "ignore", - }, - animation: { - where: "device", - default: true, - }, - advancedMfm: { - where: "device", - default: true, - }, - animatedMfm: { - where: "device", - default: true, - }, - animatedMfmWarnShown: { - where: "device", - default: false, - }, - loadRawImages: { - where: "device", - default: false, - }, - imageNewTab: { - where: "device", - default: false, - }, - disableShowingAnimatedImages: { - where: "device", - default: false, - }, - disablePagesScript: { - where: "device", - default: false, - }, - useOsNativeEmojis: { - where: "device", - default: false, - }, - disableDrawer: { - where: "device", - default: false, - }, - useBlurEffectForModal: { - where: "device", - default: true, - }, - useBlurEffect: { - where: "device", - default: true, - }, - showFixedPostForm: { - where: "device", - default: false, - }, - enableInfiniteScroll: { - where: "device", - default: true, - }, - useReactionPickerForContextMenu: { - where: "device", - default: false, - }, - showGapBetweenNotesInTimeline: { - where: "device", - default: true, - }, - darkMode: { - where: "device", - default: false, - }, - instanceTicker: { - where: "device", - default: "remote" as "none" | "remote" | "always", - }, - reactionPickerSkinTone: { - where: "account", - default: 1, - }, - reactionPickerSize: { - where: "device", - default: 3, - }, - reactionPickerWidth: { - where: "device", - default: 3, - }, - reactionPickerHeight: { - where: "device", - default: 3, - }, - reactionPickerUseDrawerForMobile: { - where: "device", - default: true, - }, - recentlyUsedEmojis: { - where: "device", - default: [] as string[], - }, - recentlyUsedUsers: { - where: "device", - default: [] as string[], - }, - defaultSideView: { - where: "device", - default: false, - }, - menuDisplay: { - where: "device", - default: "sideFull" as "sideFull" | "sideIcon" | "top", - }, - reportError: { - where: "device", - default: false, - }, - squareAvatars: { - where: "device", - default: true, - }, - postFormWithHashtags: { - where: "device", - default: false, - }, - postFormHashtags: { - where: "device", - default: "", - }, - themeInitial: { - where: "device", - default: true, - }, - numberOfPageCache: { - where: "device", - default: 5, - }, - enterSendsMessage: { - where: "device", - default: true, - }, - showUpdates: { - where: "device", - default: true, - }, - swipeOnDesktop: { - where: "device", - default: false, - }, - showAdminUpdates: { - where: "account", - default: true, - }, - woozyMode: { - where: "device", - default: false, - }, - enableCustomKaTeXMacro: { - where: "device", - default: false, - }, - enableEmojiReactions: { - where: "account", - default: true, - }, - showEmojisInReactionNotifications: { - where: "account", - default: true, - }, - showTimelineReplies: { - where: "device", - default: true, - }, - }), + overridedDeviceKind: { + where: "device", + default: null as null | "smartphone" | "tablet" | "desktop", + }, + serverDisconnectedBehavior: { + where: "device", + default: "nothing" as "nothing" | "quiet" | "reload" | "dialog", + }, + seperateRenoteQuote: { + where: "device", + default: true, + }, + expandOnNoteClick: { + where: "device", + default: true, + }, + nsfw: { + where: "device", + default: "respect" as "respect" | "force" | "ignore", + }, + animation: { + where: "device", + default: true, + }, + advancedMfm: { + where: "device", + default: true, + }, + animatedMfm: { + where: "device", + default: true, + }, + animatedMfmWarnShown: { + where: "device", + default: false, + }, + loadRawImages: { + where: "device", + default: false, + }, + imageNewTab: { + where: "device", + default: false, + }, + disableShowingAnimatedImages: { + where: "device", + default: false, + }, + disablePagesScript: { + where: "device", + default: false, + }, + useOsNativeEmojis: { + where: "device", + default: false, + }, + disableDrawer: { + where: "device", + default: false, + }, + useBlurEffectForModal: { + where: "device", + default: true, + }, + useBlurEffect: { + where: "device", + default: true, + }, + showFixedPostForm: { + where: "device", + default: false, + }, + enableInfiniteScroll: { + where: "device", + default: true, + }, + useReactionPickerForContextMenu: { + where: "device", + default: false, + }, + showGapBetweenNotesInTimeline: { + where: "device", + default: true, + }, + darkMode: { + where: "device", + default: false, + }, + instanceTicker: { + where: "device", + default: "remote" as "none" | "remote" | "always", + }, + reactionPickerSkinTone: { + where: "account", + default: 1, + }, + reactionPickerSize: { + where: "device", + default: 3, + }, + reactionPickerWidth: { + where: "device", + default: 3, + }, + reactionPickerHeight: { + where: "device", + default: 3, + }, + reactionPickerUseDrawerForMobile: { + where: "device", + default: true, + }, + recentlyUsedEmojis: { + where: "device", + default: [] as string[], + }, + recentlyUsedUsers: { + where: "device", + default: [] as string[], + }, + defaultSideView: { + where: "device", + default: false, + }, + menuDisplay: { + where: "device", + default: "sideFull" as "sideFull" | "sideIcon" | "top", + }, + reportError: { + where: "device", + default: false, + }, + squareAvatars: { + where: "device", + default: true, + }, + postFormWithHashtags: { + where: "device", + default: false, + }, + postFormHashtags: { + where: "device", + default: "", + }, + themeInitial: { + where: "device", + default: true, + }, + numberOfPageCache: { + where: "device", + default: 5, + }, + enterSendsMessage: { + where: "device", + default: true, + }, + showUpdates: { + where: "device", + default: true, + }, + swipeOnDesktop: { + where: "device", + default: false, + }, + woozyMode: { + where: "device", + default: false, + }, + enableCustomKaTeXMacro: { + where: "device", + default: false, + }, + enableEmojiReactions: { + where: "account", + default: true, + }, + showEmojisInReactionNotifications: { + where: "account", + default: true, + }, + showTimelineReplies: { + where: "device", + default: true, + }, + }) ); // TODO: 他のタブと永続化されたstateを同期 @@ -344,110 +344,106 @@ export const defaultStore = markRaw( const PREFIX = "miux:"; type Plugin = { - id: string; - name: string; - active: boolean; - configData: Record; - token: string; - ast: any[]; + id: string; + name: string; + active: boolean; + configData: Record; + token: string; + ast: any[]; }; -/** - * 常にメモリにロードしておく必要がないような設定情報を保管するストレージ(非リアクティブ) - */ -import lightTheme from "@/themes/l-rosepinedawn.json5"; -import darkTheme from "@/themes/d-rosepine.json5"; - export class ColdDeviceStorage { - public static default = { - lightTheme, - darkTheme, - syncDeviceDarkMode: true, - plugins: [] as Plugin[], - mediaVolume: 0.5, - sound_masterVolume: 0.3, - sound_note: { type: "none", volume: 0 }, - sound_noteMy: { type: "syuilo/up", volume: 1 }, - sound_notification: { type: "syuilo/pope2", volume: 1 }, - sound_chat: { type: "syuilo/pope1", volume: 1 }, - sound_chatBg: { type: "syuilo/waon", volume: 1 }, - sound_antenna: { type: "syuilo/triple", volume: 1 }, - sound_channel: { type: "syuilo/square-pico", volume: 1 }, - }; + public static default = { + lightTheme, + darkTheme, + syncDeviceDarkMode: true, + plugins: [] as Plugin[], + mediaVolume: 0.5, + sound_masterVolume: 0.3, + sound_note: { type: "none", volume: 0 }, + sound_noteMy: { type: "syuilo/up", volume: 1 }, + sound_notification: { type: "syuilo/pope2", volume: 1 }, + sound_chat: { type: "syuilo/pope1", volume: 1 }, + sound_chatBg: { type: "syuilo/waon", volume: 1 }, + sound_antenna: { type: "syuilo/triple", volume: 1 }, + sound_channel: { type: "syuilo/square-pico", volume: 1 }, + }; - public static watchers = []; + public static watchers = []; - public static get( - key: T, - ): typeof ColdDeviceStorage.default[T] { - // TODO: indexedDBにする - // ただしその際はnullチェックではなくキー存在チェックにしないとダメ - // (indexedDBはnullを保存できるため、ユーザーが意図してnullを格納した可能性がある) - const value = localStorage.getItem(PREFIX + key); - if (value == null) { - return ColdDeviceStorage.default[key]; - } else { - return JSON.parse(value); - } - } + public static get( + key: T + ): (typeof ColdDeviceStorage.default)[T] { + // TODO: indexedDBにする + // ただしその際はnullチェックではなくキー存在チェックにしないとダメ + // (indexedDBはnullを保存できるため、ユーザーが意図してnullを格納した可能性がある) + const value = localStorage.getItem(PREFIX + key); + if (value == null) { + return ColdDeviceStorage.default[key]; + } else { + return JSON.parse(value); + } + } - public static set( - key: T, - value: typeof ColdDeviceStorage.default[T], - ): void { - // 呼び出し側のバグ等で undefined が来ることがある - // undefined を文字列として localStorage に入れると参照する際の JSON.parse でコケて不具合の元になるため無視 - if (value === undefined) { - console.error(`attempt to store undefined value for key '${key}'`); - return; - } + public static set( + key: T, + value: (typeof ColdDeviceStorage.default)[T] + ): void { + // 呼び出し側のバグ等で undefined が来ることがある + // undefined を文字列として localStorage に入れると参照する際の JSON.parse でコケて不具合の元になるため無視 + if (value === undefined) { + console.error(`attempt to store undefined value for key '${key}'`); + return; + } - localStorage.setItem(PREFIX + key, JSON.stringify(value)); + localStorage.setItem(PREFIX + key, JSON.stringify(value)); - for (const watcher of this.watchers) { - if (watcher.key === key) watcher.callback(value); - } - } + for (const watcher of this.watchers) { + if (watcher.key === key) watcher.callback(value); + } + } - public static watch(key, callback) { - this.watchers.push({ key, callback }); - } + public static watch(key, callback) { + this.watchers.push({ key, callback }); + } - // TODO: VueのcustomRef使うと良い感じになるかも - public static ref(key: T) { - const v = ColdDeviceStorage.get(key); - const r = ref(v); - // TODO: このままではwatcherがリークするので開放する方法を考える - this.watch(key, (v) => { - r.value = v; - }); - return r; - } + // TODO: VueのcustomRef使うと良い感じになるかも + public static ref( + key: T + ) { + const v = ColdDeviceStorage.get(key); + const r = ref(v); + // TODO: このままではwatcherがリークするので開放する方法を考える + this.watch(key, (v) => { + r.value = v; + }); + return r; + } - /** - * 特定のキーの、簡易的なgetter/setterを作ります - * 主にvue場で設定コントロールのmodelとして使う用 - */ - public static makeGetterSetter< - K extends keyof typeof ColdDeviceStorage.default, - >(key: K) { - // TODO: VueのcustomRef使うと良い感じになるかも - const valueRef = ColdDeviceStorage.ref(key); - return { - get: () => { - return valueRef.value; - }, - set: (value: unknown) => { - const val = value; - ColdDeviceStorage.set(key, val); - }, - }; - } + /** + * 特定のキーの、簡易的なgetter/setterを作ります + * 主にvue場で設定コントロールのmodelとして使う用 + */ + public static makeGetterSetter< + K extends keyof typeof ColdDeviceStorage.default + >(key: K) { + // TODO: VueのcustomRef使うと良い感じになるかも + const valueRef = ColdDeviceStorage.ref(key); + return { + get: () => { + return valueRef.value; + }, + set: (value: unknown) => { + const val = value; + ColdDeviceStorage.set(key, val); + }, + }; + } } // このファイルに書きたくないけどここに書かないと何故かVeturが認識しない declare module "@vue/runtime-core" { - interface ComponentCustomProperties { - $store: typeof defaultStore; - } + interface ComponentCustomProperties { + $store: typeof defaultStore; + } } diff --git a/fe_calckey/frontend/client/src/ui/_common_/navbar.vue b/fe_calckey/frontend/client/src/ui/_common_/navbar.vue index 7905c33..3a7a694 100644 --- a/fe_calckey/frontend/client/src/ui/_common_/navbar.vue +++ b/fe_calckey/frontend/client/src/ui/_common_/navbar.vue @@ -1,148 +1,147 @@