mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-01 19:16:59 +00:00
626 lines
27 KiB
Vue
626 lines
27 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="_gaps_m">
|
|
<MkSelect v-model="lang">
|
|
<template #label>{{ i18n.ts.uiLanguage }}</template>
|
|
<option v-for="x in langs" :key="x[0]" :value="x[0]">{{ x[1] }}</option>
|
|
<template #caption>
|
|
<I18n :src="i18n.ts.i18nInfo" tag="span">
|
|
<template #link>
|
|
<MkLink url="https://crowdin.com/project/misskey">Crowdin</MkLink>
|
|
</template>
|
|
</I18n>
|
|
</template>
|
|
</MkSelect>
|
|
|
|
<MkRadios v-model="hemisphere">
|
|
<template #label>{{ i18n.ts.hemisphere }}</template>
|
|
<option value="N">{{ i18n.ts._hemisphere.N }}</option>
|
|
<option value="S">{{ i18n.ts._hemisphere.S }}</option>
|
|
<template #caption>{{ i18n.ts._hemisphere.caption }}</template>
|
|
</MkRadios>
|
|
|
|
<MkRadios v-model="overridedDeviceKind">
|
|
<template #label>{{ i18n.ts.overridedDeviceKind }}</template>
|
|
<option :value="null">{{ i18n.ts.auto }}</option>
|
|
<option value="smartphone"><i class="ti ti-device-mobile"/> {{ i18n.ts.smartphone }}</option>
|
|
<option value="tablet"><i class="ti ti-device-tablet"/> {{ i18n.ts.tablet }}</option>
|
|
<option value="desktop"><i class="ti ti-device-desktop"/> {{ i18n.ts.desktop }}</option>
|
|
</MkRadios>
|
|
|
|
<FormSection>
|
|
<div class="_gaps_s">
|
|
<MkSwitch v-model="showFixedPostForm">{{ i18n.ts.showFixedPostForm }}</MkSwitch>
|
|
<MkSwitch v-model="showFixedPostFormInChannel">{{ i18n.ts.showFixedPostFormInChannel }}</MkSwitch>
|
|
<MkFolder>
|
|
<template #label>{{ i18n.ts.pinnedList }}</template>
|
|
<!-- 複数ピン止め管理できるようにしたいけどめんどいので一旦ひとつのみ -->
|
|
<MkButton v-if="defaultStore.reactiveState.pinnedUserLists.value.length === 0" @click="setPinnedList()">{{ i18n.ts.add }}</MkButton>
|
|
<MkButton v-else danger @click="removePinnedList()"><i class="ti ti-trash"></i> {{ i18n.ts.remove }}</MkButton>
|
|
</MkFolder>
|
|
</div>
|
|
</FormSection>
|
|
|
|
<FormSection>
|
|
<template #label>{{ i18n.ts.displayOfNote }}</template>
|
|
|
|
<div class="_gaps_m">
|
|
<div class="_gaps_s">
|
|
<MkSwitch v-model="collapseRenotes">
|
|
<template #label>{{ i18n.ts.collapseRenotes }}</template>
|
|
<template #caption>{{ i18n.ts.collapseRenotesDescription }}</template>
|
|
</MkSwitch>
|
|
<MkSwitch v-model="collapseNotesRepliedTo">{{ i18n.ts.collapseNotesRepliedTo }}</MkSwitch>
|
|
<MkSwitch v-model="collapseFiles">{{ i18n.ts.collapseFiles }}</MkSwitch>
|
|
<MkSwitch v-model="uncollapseCW">{{ i18n.ts.uncollapseCW }}</MkSwitch>
|
|
<MkSwitch v-model="expandLongNote">{{ i18n.ts.expandLongNote }}</MkSwitch>
|
|
<MkSwitch v-model="showNoteActionsOnlyHover">{{ i18n.ts.showNoteActionsOnlyHover }}</MkSwitch>
|
|
<MkSwitch v-model="showClipButtonInNoteFooter">{{ i18n.ts.showClipButtonInNoteFooter }}</MkSwitch>
|
|
<MkSwitch v-model="autoloadConversation">{{ i18n.ts.autoloadConversation }}</MkSwitch>
|
|
<MkSwitch v-model="advancedMfm">{{ i18n.ts.enableAdvancedMfm }}</MkSwitch>
|
|
<MkSwitch v-if="advancedMfm" v-model="animatedMfm">{{ i18n.ts.enableAnimatedMfm }}</MkSwitch>
|
|
<MkSwitch v-if="advancedMfm" v-model="enableQuickAddMfmFunction">{{ i18n.ts.enableQuickAddMfmFunction }}</MkSwitch>
|
|
<MkSwitch v-model="showReactionsCount">{{ i18n.ts.showReactionsCount }}</MkSwitch>
|
|
<MkSwitch v-model="showGapBetweenNotesInTimeline">{{ i18n.ts.showGapBetweenNotesInTimeline }}</MkSwitch>
|
|
<MkSwitch v-model="loadRawImages">{{ i18n.ts.loadRawImages }}</MkSwitch>
|
|
<MkSwitch v-model="showTickerOnReplies">{{ i18n.ts.showTickerOnReplies }}</MkSwitch>
|
|
<MkSwitch v-model="disableCatSpeak">{{ i18n.ts.disableCatSpeak }}</MkSwitch>
|
|
<MkSelect v-model="searchEngine" placeholder="Other">
|
|
<template #label>{{ i18n.ts.searchEngine }}</template>
|
|
<option
|
|
v-for="[key, value] in Object.entries(searchEngineMap)" :key="key" :value="key"
|
|
>
|
|
{{ value }}
|
|
</option>
|
|
<!-- If the user is on Other and enters a domain add this one so that the dropdown doesnt go blank -->
|
|
<option v-if="useCustomSearchEngine" :value="searchEngine">
|
|
{{ i18n.ts.searchEngineOther }}
|
|
</option>
|
|
<!-- If one of the other options is selected show this as a blank other -->
|
|
<option v-if="!useCustomSearchEngine" value="">{{ i18n.ts.searchEngineOther }}</option>
|
|
</MkSelect>
|
|
|
|
<div v-if="useCustomSearchEngine">
|
|
<MkInput v-model="searchEngine" :max="300">
|
|
<template #label>{{ i18n.ts.searchEngineCusomURI }}</template>
|
|
<template #caption>{{ i18n.ts.searchEngineCustomURIDescription }}</template>
|
|
</MkInput>
|
|
</div>
|
|
|
|
<MkRadios v-model="reactionsDisplaySize">
|
|
<template #label>{{ i18n.ts.reactionsDisplaySize }}</template>
|
|
<option value="small">{{ i18n.ts.small }}</option>
|
|
<option value="medium">{{ i18n.ts.medium }}</option>
|
|
<option value="large">{{ i18n.ts.large }}</option>
|
|
</MkRadios>
|
|
<MkRadios v-model="noteDesign">
|
|
<template #label>Note Design</template>
|
|
<option value="sharkey"><i class="sk-icons sk-shark sk-icons-lg" style="top: 2px;position: relative;"></i> Sharkey</option>
|
|
<option value="misskey"><i class="sk-icons sk-misskey sk-icons-lg" style="top: 2px;position: relative;"></i> Misskey</option>
|
|
</MkRadios>
|
|
<MkSwitch v-model="limitWidthOfReaction">{{ i18n.ts.limitWidthOfReaction }}</MkSwitch>
|
|
</div>
|
|
|
|
<MkSelect v-model="instanceTicker">
|
|
<template #label>{{ i18n.ts.instanceTicker }}</template>
|
|
<option value="none">{{ i18n.ts._instanceTicker.none }}</option>
|
|
<option value="remote">{{ i18n.ts._instanceTicker.remote }}</option>
|
|
<option value="always">{{ i18n.ts._instanceTicker.always }}</option>
|
|
</MkSelect>
|
|
|
|
<MkSelect v-model="nsfw">
|
|
<template #label>{{ i18n.ts.displayOfSensitiveMedia }}</template>
|
|
<option value="respect">{{ i18n.ts._displayOfSensitiveMedia.respect }}</option>
|
|
<option value="ignore">{{ i18n.ts._displayOfSensitiveMedia.ignore }}</option>
|
|
<option value="force">{{ i18n.ts._displayOfSensitiveMedia.force }}</option>
|
|
</MkSelect>
|
|
|
|
<MkRadios v-model="mediaListWithOneImageAppearance">
|
|
<template #label>{{ i18n.ts.mediaListWithOneImageAppearance }}</template>
|
|
<option value="expand">{{ i18n.ts.default }}</option>
|
|
<option value="16_9">{{ i18n.tsx.limitTo({ x: '16:9' }) }}</option>
|
|
<option value="1_1">{{ i18n.tsx.limitTo({ x: '1:1' }) }}</option>
|
|
<option value="2_3">{{ i18n.tsx.limitTo({ x: '2:3' }) }}</option>
|
|
</MkRadios>
|
|
|
|
<MkRange v-model="numberOfReplies" :min="2" :max="20" :step="1" easing>
|
|
<template #label>{{ i18n.ts.numberOfReplies }}</template>
|
|
<template #caption>{{ i18n.ts.numberOfRepliesDescription }}</template>
|
|
</MkRange>
|
|
</div>
|
|
</FormSection>
|
|
|
|
<FormSection>
|
|
<template #label>{{ i18n.ts.notificationDisplay }}</template>
|
|
|
|
<div class="_gaps_m">
|
|
<MkSwitch v-model="useGroupedNotifications">{{ i18n.ts.useGroupedNotifications }}</MkSwitch>
|
|
|
|
<MkSwitch v-model="enableFaviconNotificationDot">
|
|
{{ i18n.ts.enableFaviconNotificationDot }}
|
|
<template #caption>
|
|
<I18n :src="i18n.ts.notificationDotNotWorkingAdvice" tag="span">
|
|
<template #link>
|
|
<MkLink url="https://docs.joinsharkey.org/docs/install/faqs/#ive-enabled-the-notification-dot-but-it-doesnt-show">{{ i18n.ts._mfm.link }}</MkLink>
|
|
</template>
|
|
</I18n>
|
|
</template>
|
|
</MkSwitch>
|
|
|
|
<!-- {{ i18n.ts.notificationDotNotWorkingAdvice }} -->
|
|
|
|
<!-- notificationDotNotWorkingAdvice -->
|
|
<MkButton @click="testNotificationDot">{{ i18n.ts.verifyNotificationDotWorkingButton }}</MkButton>
|
|
<!-- <p class="caption">Testing Testing</p> -->
|
|
<MkRadios v-model="notificationPosition">
|
|
<template #label>{{ i18n.ts.position }}</template>
|
|
<option value="leftTop"><i class="ti ti-align-box-left-top"></i> {{ i18n.ts.leftTop }}</option>
|
|
<option value="rightTop"><i class="ti ti-align-box-right-top"></i> {{ i18n.ts.rightTop }}</option>
|
|
<option value="leftBottom"><i class="ti ti-align-box-left-bottom"></i> {{ i18n.ts.leftBottom }}</option>
|
|
<option value="rightBottom"><i class="ti ti-align-box-right-bottom"></i> {{ i18n.ts.rightBottom }}</option>
|
|
</MkRadios>
|
|
|
|
<MkRadios v-model="notificationStackAxis">
|
|
<template #label>{{ i18n.ts.stackAxis }}</template>
|
|
<option value="vertical"><i class="ti ti-carousel-vertical"></i> {{ i18n.ts.vertical }}</option>
|
|
<option value="horizontal"><i class="ti ti-carousel-horizontal"></i> {{ i18n.ts.horizontal }}</option>
|
|
</MkRadios>
|
|
|
|
<MkButton @click="testNotification">{{ i18n.ts._notification.checkNotificationBehavior }}</MkButton>
|
|
</div>
|
|
</FormSection>
|
|
|
|
<FormSection>
|
|
<template #label>{{ i18n.ts.appearance }}</template>
|
|
|
|
<div class="_gaps_m">
|
|
<div class="_gaps_s">
|
|
<MkSwitch v-model="reduceAnimation">{{ i18n.ts.reduceUiAnimation }}</MkSwitch>
|
|
<MkSwitch v-model="useBlurEffect">{{ i18n.ts.useBlurEffect }}</MkSwitch>
|
|
<MkSwitch v-model="useBlurEffectForModal">{{ i18n.ts.useBlurEffectForModal }}</MkSwitch>
|
|
<MkSwitch v-model="disableShowingAnimatedImages">{{ i18n.ts.disableShowingAnimatedImages }}</MkSwitch>
|
|
<MkSwitch v-model="highlightSensitiveMedia">{{ i18n.ts.highlightSensitiveMedia }}</MkSwitch>
|
|
<MkSwitch v-model="squareAvatars">{{ i18n.ts.squareAvatars }}</MkSwitch>
|
|
<MkSwitch v-model="showAvatarDecorations">{{ i18n.ts.showAvatarDecorations }}</MkSwitch>
|
|
<MkSwitch v-model="useSystemFont">{{ i18n.ts.useSystemFont }}</MkSwitch>
|
|
<MkSwitch v-model="disableDrawer">{{ i18n.ts.disableDrawer }}</MkSwitch>
|
|
<MkSwitch v-model="forceShowAds">{{ i18n.ts.forceShowAds }}</MkSwitch>
|
|
<MkSwitch v-model="oneko">{{ i18n.ts.oneko }}</MkSwitch>
|
|
<MkSwitch v-model="enableSeasonalScreenEffect">{{ i18n.ts.seasonalScreenEffect }}</MkSwitch>
|
|
<MkSwitch v-model="useNativeUIForVideoAudioPlayer">{{ i18n.ts.useNativeUIForVideoAudioPlayer }}</MkSwitch>
|
|
</div>
|
|
<div>
|
|
<MkRadios v-model="emojiStyle">
|
|
<template #label>{{ i18n.ts.emojiStyle }}</template>
|
|
<option value="native">{{ i18n.ts.native }}</option>
|
|
<option value="fluentEmoji">Fluent Emoji</option>
|
|
<option value="twemoji">Twemoji</option>
|
|
<option value="tossface">Tossface</option>
|
|
</MkRadios>
|
|
<div style="margin: 8px 0 0 0; font-size: 1.5em;"><Mfm :key="emojiStyle" text="🍮🍦🍭🍩🍰🍫🍬🥞🍪"/></div>
|
|
</div>
|
|
|
|
<MkRadios v-model="fontSize">
|
|
<template #label>{{ i18n.ts.fontSize }}</template>
|
|
<option :value="null"><span style="font-size: 14px;">Aa</span></option>
|
|
<option value="1"><span style="font-size: 15px;">Aa</span></option>
|
|
<option value="2"><span style="font-size: 16px;">Aa</span></option>
|
|
<option value="3"><span style="font-size: 17px;">Aa</span></option>
|
|
</MkRadios>
|
|
|
|
<MkRadios v-model="cornerRadius">
|
|
<template #label>{{ i18n.ts.cornerRadius }}</template>
|
|
<option :value="null"><i class="sk-icons sk-shark sk-icons-lg" style="top: 2px;position: relative;"></i> Sharkey</option>
|
|
<option value="misskey"><i class="sk-icons sk-misskey sk-icons-lg" style="top: 2px;position: relative;"></i> Misskey</option>
|
|
</MkRadios>
|
|
</div>
|
|
</FormSection>
|
|
|
|
<FormSection>
|
|
<template #label>{{ i18n.ts.behavior }}</template>
|
|
|
|
<div class="_gaps_m">
|
|
<div class="_gaps_s">
|
|
<MkSwitch v-model="warnMissingAltText">{{ i18n.ts.warnForMissingAltText }}</MkSwitch>
|
|
<MkSwitch v-model="imageNewTab">{{ i18n.ts.openImageInNewTab }}</MkSwitch>
|
|
<MkSwitch v-model="useReactionPickerForContextMenu">{{ i18n.ts.useReactionPickerForContextMenu }}</MkSwitch>
|
|
<MkSwitch v-model="enableInfiniteScroll">{{ i18n.ts.enableInfiniteScroll }}</MkSwitch>
|
|
<MkSwitch v-model="keepScreenOn">{{ i18n.ts.keepScreenOn }}</MkSwitch>
|
|
<MkSwitch v-model="clickToOpen">{{ i18n.ts.clickToOpen }}</MkSwitch>
|
|
<MkSwitch v-model="disableStreamingTimeline">{{ i18n.ts.disableStreamingTimeline }}</MkSwitch>
|
|
<MkSwitch v-model="enableHorizontalSwipe">{{ i18n.ts.enableHorizontalSwipe }}</MkSwitch>
|
|
<MkSwitch v-model="alwaysConfirmFollow">{{ i18n.ts.alwaysConfirmFollow }}</MkSwitch>
|
|
<MkSwitch v-model="confirmWhenRevealingSensitiveMedia">{{ i18n.ts.confirmWhenRevealingSensitiveMedia }}</MkSwitch>
|
|
</div>
|
|
<MkSelect v-model="serverDisconnectedBehavior">
|
|
<template #label>{{ i18n.ts.whenServerDisconnected }}</template>
|
|
<option value="dialog">{{ i18n.ts._serverDisconnectedBehavior.dialog }}</option>
|
|
<option value="quiet">{{ i18n.ts._serverDisconnectedBehavior.quiet }}</option>
|
|
<option value="disabled">{{ i18n.ts._serverDisconnectedBehavior.disabled }}</option>
|
|
</MkSelect>
|
|
<MkSelect v-model="contextMenu">
|
|
<template #label>{{ i18n.ts._contextMenu.title }}</template>
|
|
<option value="app">{{ i18n.ts._contextMenu.app }}</option>
|
|
<option value="appWithShift">{{ i18n.ts._contextMenu.appWithShift }}</option>
|
|
<option value="native">{{ i18n.ts._contextMenu.native }}</option>
|
|
</MkSelect>
|
|
<MkRange v-model="numberOfPageCache" :min="1" :max="10" :step="1" easing>
|
|
<template #label>{{ i18n.ts.numberOfPageCache }}</template>
|
|
<template #caption>{{ i18n.ts.numberOfPageCacheDescription }}</template>
|
|
</MkRange>
|
|
|
|
<MkFolder>
|
|
<template #label>{{ i18n.ts.boostSettings }}</template>
|
|
<div class="_gaps_m">
|
|
<MkSwitch v-model="showVisibilitySelectorOnBoost">
|
|
{{ i18n.ts.showVisibilitySelectorOnBoost }}
|
|
<template #caption>{{ i18n.ts.showVisibilitySelectorOnBoostDescription }}</template>
|
|
</MkSwitch>
|
|
<MkSelect v-model="visibilityOnBoost">
|
|
<template #label>{{ i18n.ts.visibilityOnBoost }}</template>
|
|
<option value="public">{{ i18n.ts._visibility['public'] }}</option>
|
|
<option value="home">{{ i18n.ts._visibility['home'] }}</option>
|
|
<option value="followers">{{ i18n.ts._visibility['followers'] }}</option>
|
|
</MkSelect>
|
|
</div>
|
|
</MkFolder>
|
|
|
|
<MkFolder>
|
|
<template #label>{{ i18n.ts.dataSaver }}</template>
|
|
|
|
<div class="_gaps_m">
|
|
<MkInfo>{{ i18n.ts.reloadRequiredToApplySettings }}</MkInfo>
|
|
|
|
<div class="_buttons">
|
|
<MkButton inline @click="enableAllDataSaver">{{ i18n.ts.enableAll }}</MkButton>
|
|
<MkButton inline @click="disableAllDataSaver">{{ i18n.ts.disableAll }}</MkButton>
|
|
</div>
|
|
<div class="_gaps_m">
|
|
<MkSwitch v-model="dataSaver.media">
|
|
{{ i18n.ts._dataSaver._media.title }}
|
|
<template #caption>{{ i18n.ts._dataSaver._media.description }}</template>
|
|
</MkSwitch>
|
|
<MkSwitch v-model="dataSaver.avatar">
|
|
{{ i18n.ts._dataSaver._avatar.title }}
|
|
<template #caption>{{ i18n.ts._dataSaver._avatar.description }}</template>
|
|
</MkSwitch>
|
|
<MkSwitch v-model="dataSaver.urlPreview">
|
|
{{ i18n.ts._dataSaver._urlPreview.title }}
|
|
<template #caption>{{ i18n.ts._dataSaver._urlPreview.description }}</template>
|
|
</MkSwitch>
|
|
<MkSwitch v-model="dataSaver.code">
|
|
{{ i18n.ts._dataSaver._code.title }}
|
|
<template #caption>{{ i18n.ts._dataSaver._code.description }}</template>
|
|
</MkSwitch>
|
|
</div>
|
|
</div>
|
|
</MkFolder>
|
|
</div>
|
|
</FormSection>
|
|
|
|
<FormSection>
|
|
<template #label>{{ i18n.ts.other }}</template>
|
|
|
|
<div class="_gaps">
|
|
<MkFolder>
|
|
<template #label>{{ i18n.ts.additionalEmojiDictionary }}</template>
|
|
<div class="_buttons">
|
|
<template v-for="lang in emojiIndexLangs" :key="lang">
|
|
<MkButton v-if="defaultStore.reactiveState.additionalUnicodeEmojiIndexes.value[lang]" danger @click="removeEmojiIndex(lang)"><i class="ti ti-trash"></i> {{ i18n.ts.remove }} ({{ getEmojiIndexLangName(lang) }})</MkButton>
|
|
<MkButton v-else @click="downloadEmojiIndex(lang)"><i class="ti ti-download"></i> {{ getEmojiIndexLangName(lang) }}{{ defaultStore.reactiveState.additionalUnicodeEmojiIndexes.value[lang] ? ` (${ i18n.ts.installed })` : '' }}</MkButton>
|
|
</template>
|
|
</div>
|
|
</MkFolder>
|
|
<FormLink to="/settings/deck">{{ i18n.ts.deck }}</FormLink>
|
|
<FormLink to="/settings/custom-css"><template #icon><i class="ti ti-code"></i></template>{{ i18n.ts.customCss }}</FormLink>
|
|
</div>
|
|
</FormSection>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, reactive, ref, watch } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
import MkSelect from '@/components/MkSelect.vue';
|
|
import MkRadios from '@/components/MkRadios.vue';
|
|
import MkInput from '@/components/MkInput.vue';
|
|
import MkRange from '@/components/MkRange.vue';
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import FormSection from '@/components/form/section.vue';
|
|
import FormLink from '@/components/form/link.vue';
|
|
import MkLink from '@/components/MkLink.vue';
|
|
import MkInfo from '@/components/MkInfo.vue';
|
|
import { langs } from '@/config.js';
|
|
import { searchEngineMap } from '@/scripts/search-engine-map.js';
|
|
import { defaultStore } from '@/store.js';
|
|
import * as os from '@/os.js';
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
|
import { unisonReload } from '@/scripts/unison-reload.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { miLocalStorage } from '@/local-storage.js';
|
|
import { globalEvents } from '@/events.js';
|
|
import { claimAchievement } from '@/scripts/achievements.js';
|
|
import { deepMerge } from '@/scripts/merge.js';
|
|
import { worksOnInstance } from '@/scripts/favicon-dot.js';
|
|
|
|
const lang = ref(miLocalStorage.getItem('lang'));
|
|
const fontSize = ref(miLocalStorage.getItem('fontSize'));
|
|
const cornerRadius = ref(miLocalStorage.getItem('cornerRadius'));
|
|
const useSystemFont = ref(miLocalStorage.getItem('useSystemFont') != null);
|
|
const dataSaver = ref(defaultStore.state.dataSaver);
|
|
|
|
async function reloadAsk() {
|
|
const { canceled } = await os.confirm({
|
|
type: 'info',
|
|
text: i18n.ts.reloadToApplySetting,
|
|
});
|
|
if (canceled) return;
|
|
|
|
unisonReload();
|
|
}
|
|
|
|
const hemisphere = computed(defaultStore.makeGetterSetter('hemisphere'));
|
|
const overridedDeviceKind = computed(defaultStore.makeGetterSetter('overridedDeviceKind'));
|
|
const serverDisconnectedBehavior = computed(defaultStore.makeGetterSetter('serverDisconnectedBehavior'));
|
|
const showNoteActionsOnlyHover = computed(defaultStore.makeGetterSetter('showNoteActionsOnlyHover'));
|
|
const showClipButtonInNoteFooter = computed(defaultStore.makeGetterSetter('showClipButtonInNoteFooter'));
|
|
const reactionsDisplaySize = computed(defaultStore.makeGetterSetter('reactionsDisplaySize'));
|
|
const limitWidthOfReaction = computed(defaultStore.makeGetterSetter('limitWidthOfReaction'));
|
|
const collapseRenotes = computed(defaultStore.makeGetterSetter('collapseRenotes'));
|
|
const collapseNotesRepliedTo = computed(defaultStore.makeGetterSetter('collapseNotesRepliedTo'));
|
|
const clickToOpen = computed(defaultStore.makeGetterSetter('clickToOpen'));
|
|
const collapseFiles = computed(defaultStore.makeGetterSetter('collapseFiles'));
|
|
const autoloadConversation = computed(defaultStore.makeGetterSetter('autoloadConversation'));
|
|
const reduceAnimation = computed(defaultStore.makeGetterSetter('animation', v => !v, v => !v));
|
|
const useBlurEffectForModal = computed(defaultStore.makeGetterSetter('useBlurEffectForModal'));
|
|
const useBlurEffect = computed(defaultStore.makeGetterSetter('useBlurEffect'));
|
|
const showGapBetweenNotesInTimeline = computed(defaultStore.makeGetterSetter('showGapBetweenNotesInTimeline'));
|
|
const animatedMfm = computed(defaultStore.makeGetterSetter('animatedMfm'));
|
|
const advancedMfm = computed(defaultStore.makeGetterSetter('advancedMfm'));
|
|
const showReactionsCount = computed(defaultStore.makeGetterSetter('showReactionsCount'));
|
|
const enableQuickAddMfmFunction = computed(defaultStore.makeGetterSetter('enableQuickAddMfmFunction'));
|
|
const emojiStyle = computed(defaultStore.makeGetterSetter('emojiStyle'));
|
|
const disableDrawer = computed(defaultStore.makeGetterSetter('disableDrawer'));
|
|
const disableShowingAnimatedImages = computed(defaultStore.makeGetterSetter('disableShowingAnimatedImages'));
|
|
const forceShowAds = computed(defaultStore.makeGetterSetter('forceShowAds'));
|
|
const oneko = computed(defaultStore.makeGetterSetter('oneko'));
|
|
const loadRawImages = computed(defaultStore.makeGetterSetter('loadRawImages'));
|
|
const disableCatSpeak = computed(defaultStore.makeGetterSetter('disableCatSpeak'));
|
|
const highlightSensitiveMedia = computed(defaultStore.makeGetterSetter('highlightSensitiveMedia'));
|
|
const imageNewTab = computed(defaultStore.makeGetterSetter('imageNewTab'));
|
|
const enableFaviconNotificationDot = computed(defaultStore.makeGetterSetter('enableFaviconNotificationDot'));
|
|
const warnMissingAltText = computed(defaultStore.makeGetterSetter('warnMissingAltText'));
|
|
const nsfw = computed(defaultStore.makeGetterSetter('nsfw'));
|
|
const showFixedPostForm = computed(defaultStore.makeGetterSetter('showFixedPostForm'));
|
|
const showFixedPostFormInChannel = computed(defaultStore.makeGetterSetter('showFixedPostFormInChannel'));
|
|
const numberOfPageCache = computed(defaultStore.makeGetterSetter('numberOfPageCache'));
|
|
const numberOfReplies = computed(defaultStore.makeGetterSetter('numberOfReplies'));
|
|
const instanceTicker = computed(defaultStore.makeGetterSetter('instanceTicker'));
|
|
const enableInfiniteScroll = computed(defaultStore.makeGetterSetter('enableInfiniteScroll'));
|
|
const useReactionPickerForContextMenu = computed(defaultStore.makeGetterSetter('useReactionPickerForContextMenu'));
|
|
const squareAvatars = computed(defaultStore.makeGetterSetter('squareAvatars'));
|
|
const showAvatarDecorations = computed(defaultStore.makeGetterSetter('showAvatarDecorations'));
|
|
const mediaListWithOneImageAppearance = computed(defaultStore.makeGetterSetter('mediaListWithOneImageAppearance'));
|
|
const notificationPosition = computed(defaultStore.makeGetterSetter('notificationPosition'));
|
|
const notificationStackAxis = computed(defaultStore.makeGetterSetter('notificationStackAxis'));
|
|
const keepScreenOn = computed(defaultStore.makeGetterSetter('keepScreenOn'));
|
|
const disableStreamingTimeline = computed(defaultStore.makeGetterSetter('disableStreamingTimeline'));
|
|
const useGroupedNotifications = computed(defaultStore.makeGetterSetter('useGroupedNotifications'));
|
|
const showTickerOnReplies = computed(defaultStore.makeGetterSetter('showTickerOnReplies'));
|
|
//const searchEngine = computed(defaultStore.makeGetterSetter('searchEngine'));
|
|
const searchEngine = computed(defaultStore.makeGetterSetter('searchEngine'));
|
|
|
|
const noteDesign = computed(defaultStore.makeGetterSetter('noteDesign'));
|
|
const uncollapseCW = computed(defaultStore.makeGetterSetter('uncollapseCW'));
|
|
const expandLongNote = computed(defaultStore.makeGetterSetter('expandLongNote'));
|
|
const enableSeasonalScreenEffect = computed(defaultStore.makeGetterSetter('enableSeasonalScreenEffect'));
|
|
const showVisibilitySelectorOnBoost = computed(defaultStore.makeGetterSetter('showVisibilitySelectorOnBoost'));
|
|
const visibilityOnBoost = computed(defaultStore.makeGetterSetter('visibilityOnBoost'));
|
|
const enableHorizontalSwipe = computed(defaultStore.makeGetterSetter('enableHorizontalSwipe'));
|
|
const useNativeUIForVideoAudioPlayer = computed(defaultStore.makeGetterSetter('useNativeUIForVideoAudioPlayer'));
|
|
const alwaysConfirmFollow = computed(defaultStore.makeGetterSetter('alwaysConfirmFollow'));
|
|
const confirmWhenRevealingSensitiveMedia = computed(defaultStore.makeGetterSetter('confirmWhenRevealingSensitiveMedia'));
|
|
const contextMenu = computed(defaultStore.makeGetterSetter('contextMenu'));
|
|
|
|
watch(lang, () => {
|
|
miLocalStorage.setItem('lang', lang.value as string);
|
|
miLocalStorage.removeItem('locale');
|
|
miLocalStorage.removeItem('localeVersion');
|
|
});
|
|
|
|
watch(fontSize, () => {
|
|
if (fontSize.value == null) {
|
|
miLocalStorage.removeItem('fontSize');
|
|
} else {
|
|
miLocalStorage.setItem('fontSize', fontSize.value);
|
|
}
|
|
});
|
|
|
|
watch(cornerRadius, () => {
|
|
if (cornerRadius.value == null) {
|
|
miLocalStorage.removeItem('cornerRadius');
|
|
} else {
|
|
miLocalStorage.setItem('cornerRadius', cornerRadius.value);
|
|
}
|
|
});
|
|
|
|
watch(useSystemFont, () => {
|
|
if (useSystemFont.value) {
|
|
miLocalStorage.setItem('useSystemFont', 't');
|
|
} else {
|
|
miLocalStorage.removeItem('useSystemFont');
|
|
}
|
|
});
|
|
|
|
watch(noteDesign, async (newval) => {
|
|
if (noteDesign.value === newval) {
|
|
await reloadAsk();
|
|
}
|
|
});
|
|
|
|
watch([
|
|
hemisphere,
|
|
lang,
|
|
fontSize,
|
|
cornerRadius,
|
|
useSystemFont,
|
|
enableInfiniteScroll,
|
|
squareAvatars,
|
|
showNoteActionsOnlyHover,
|
|
showGapBetweenNotesInTimeline,
|
|
instanceTicker,
|
|
overridedDeviceKind,
|
|
mediaListWithOneImageAppearance,
|
|
reactionsDisplaySize,
|
|
limitWidthOfReaction,
|
|
highlightSensitiveMedia,
|
|
keepScreenOn,
|
|
disableStreamingTimeline,
|
|
enableSeasonalScreenEffect,
|
|
showVisibilitySelectorOnBoost,
|
|
visibilityOnBoost,
|
|
alwaysConfirmFollow,
|
|
confirmWhenRevealingSensitiveMedia,
|
|
contextMenu,
|
|
], async () => {
|
|
await reloadAsk();
|
|
});
|
|
|
|
const emojiIndexLangs = ['en-US', 'ja-JP', 'ja-JP_hira'] as const;
|
|
|
|
function getEmojiIndexLangName(targetLang: typeof emojiIndexLangs[number]) {
|
|
if (langs.find(x => x[0] === targetLang)) {
|
|
return langs.find(x => x[0] === targetLang)![1];
|
|
} else {
|
|
// 絵文字辞書限定の言語定義
|
|
switch (targetLang) {
|
|
case 'ja-JP_hira': return 'ひらがな';
|
|
default: return targetLang;
|
|
}
|
|
}
|
|
}
|
|
|
|
function downloadEmojiIndex(lang: typeof emojiIndexLangs[number]) {
|
|
async function main() {
|
|
const currentIndexes = defaultStore.state.additionalUnicodeEmojiIndexes;
|
|
|
|
function download() {
|
|
switch (lang) {
|
|
case 'en-US': return import('../../unicode-emoji-indexes/en-US.json').then(x => x.default);
|
|
case 'ja-JP': return import('../../unicode-emoji-indexes/ja-JP.json').then(x => x.default);
|
|
case 'ja-JP_hira': return import('../../unicode-emoji-indexes/ja-JP_hira.json').then(x => x.default);
|
|
default: throw new Error('unrecognized lang: ' + lang);
|
|
}
|
|
}
|
|
|
|
currentIndexes[lang] = await download();
|
|
await defaultStore.set('additionalUnicodeEmojiIndexes', currentIndexes);
|
|
}
|
|
|
|
os.promiseDialog(main());
|
|
}
|
|
|
|
function removeEmojiIndex(lang: string) {
|
|
async function main() {
|
|
const currentIndexes = defaultStore.state.additionalUnicodeEmojiIndexes;
|
|
delete currentIndexes[lang];
|
|
await defaultStore.set('additionalUnicodeEmojiIndexes', currentIndexes);
|
|
}
|
|
|
|
os.promiseDialog(main());
|
|
}
|
|
|
|
async function setPinnedList() {
|
|
const lists = await misskeyApi('users/lists/list');
|
|
const { canceled, result: list } = await os.select({
|
|
title: i18n.ts.selectList,
|
|
items: lists.map(x => ({
|
|
value: x, text: x.name,
|
|
})),
|
|
});
|
|
if (canceled) return;
|
|
|
|
defaultStore.set('pinnedUserLists', [list]);
|
|
}
|
|
|
|
function removePinnedList() {
|
|
defaultStore.set('pinnedUserLists', []);
|
|
}
|
|
|
|
let smashCount = 0;
|
|
let smashTimer: number | null = null;
|
|
|
|
function testNotification(): void {
|
|
const notification: Misskey.entities.Notification = {
|
|
id: Math.random().toString(),
|
|
createdAt: new Date().toUTCString(),
|
|
isRead: false,
|
|
type: 'test',
|
|
};
|
|
|
|
globalEvents.emit('clientNotification', notification);
|
|
|
|
// セルフ通知破壊 実績関連
|
|
smashCount++;
|
|
if (smashCount >= 10) {
|
|
claimAchievement('smashTestNotificationButton');
|
|
smashCount = 0;
|
|
}
|
|
if (smashTimer) {
|
|
clearTimeout(smashTimer);
|
|
}
|
|
smashTimer = window.setTimeout(() => {
|
|
smashCount = 0;
|
|
}, 300);
|
|
}
|
|
|
|
async function testNotificationDot() {
|
|
const success = await worksOnInstance();
|
|
|
|
if (success) {
|
|
os.toast(i18n.ts.notificationDotWorking);
|
|
} else {
|
|
os.toast(i18n.ts.notificationDotNotWorking);
|
|
}
|
|
}
|
|
|
|
function enableAllDataSaver() {
|
|
const g = { ...defaultStore.state.dataSaver };
|
|
|
|
Object.keys(g).forEach((key) => { g[key] = true; });
|
|
|
|
dataSaver.value = g;
|
|
}
|
|
|
|
function disableAllDataSaver() {
|
|
const g = { ...defaultStore.state.dataSaver };
|
|
|
|
Object.keys(g).forEach((key) => { g[key] = false; });
|
|
|
|
dataSaver.value = g;
|
|
}
|
|
|
|
watch(dataSaver, (to) => {
|
|
defaultStore.set('dataSaver', to);
|
|
}, {
|
|
deep: true,
|
|
});
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
const headerTabs = computed(() => []);
|
|
|
|
definePageMetadata(() => ({
|
|
title: i18n.ts.general,
|
|
icon: 'ti ti-adjustments',
|
|
}));
|
|
|
|
const useCustomSearchEngine = computed(() => !Object.keys(searchEngineMap).includes(searchEngine.value));
|
|
</script>
|