2020-10-17 13:12:00 +02:00
|
|
|
<template>
|
2021-11-28 12:07:37 +01:00
|
|
|
<div class="_formRoot">
|
|
|
|
<FormSelect v-model="lang" class="_formBlock">
|
2022-05-04 03:13:51 +02:00
|
|
|
<template #label>{{ i18n.ts.uiLanguage }}</template>
|
2021-11-19 11:36:12 +01:00
|
|
|
<option v-for="x in langs" :key="x[0]" :value="x[0]">{{ x[1] }}</option>
|
2020-11-25 13:31:34 +01:00
|
|
|
<template #caption>
|
2022-05-04 03:13:51 +02:00
|
|
|
<I18n :src="i18n.ts.i18nInfo" tag="span">
|
2020-11-25 13:31:34 +01:00
|
|
|
<template #link>
|
|
|
|
<MkLink url="https://crowdin.com/project/misskey">Crowdin</MkLink>
|
|
|
|
</template>
|
2020-12-26 02:01:32 +01:00
|
|
|
</I18n>
|
2020-11-25 13:31:34 +01:00
|
|
|
</template>
|
|
|
|
</FormSelect>
|
|
|
|
|
2022-02-08 10:46:39 +01:00
|
|
|
<FormRadios v-model="overridedDeviceKind" class="_formBlock">
|
2022-05-04 03:13:51 +02:00
|
|
|
<template #label>{{ i18n.ts.overridedDeviceKind }}</template>
|
|
|
|
<option :value="null">{{ i18n.ts.auto }}</option>
|
|
|
|
<option value="smartphone"><i class="fas fa-mobile-alt"/> {{ i18n.ts.smartphone }}</option>
|
|
|
|
<option value="tablet"><i class="fas fa-tablet-alt"/> {{ i18n.ts.tablet }}</option>
|
|
|
|
<option value="desktop"><i class="fas fa-desktop"/> {{ i18n.ts.desktop }}</option>
|
2022-02-08 10:46:39 +01:00
|
|
|
</FormRadios>
|
|
|
|
|
2022-05-04 03:13:51 +02:00
|
|
|
<FormSwitch v-model="showFixedPostForm" class="_formBlock">{{ i18n.ts.showFixedPostForm }}</FormSwitch>
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormSection>
|
2022-05-04 03:13:51 +02:00
|
|
|
<template #label>{{ i18n.ts.behavior }}</template>
|
|
|
|
<FormSwitch v-model="imageNewTab" class="_formBlock">{{ i18n.ts.openImageInNewTab }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="enableInfiniteScroll" class="_formBlock">{{ i18n.ts.enableInfiniteScroll }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="useReactionPickerForContextMenu" class="_formBlock">{{ i18n.ts.useReactionPickerForContextMenu }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="disablePagesScript" class="_formBlock">{{ i18n.ts.disablePagesScript }}</FormSwitch>
|
2021-11-28 12:07:37 +01:00
|
|
|
|
|
|
|
<FormSelect v-model="serverDisconnectedBehavior" class="_formBlock">
|
2022-05-04 03:13:51 +02:00
|
|
|
<template #label>{{ i18n.ts.whenServerDisconnected }}</template>
|
|
|
|
<option value="reload">{{ i18n.ts._serverDisconnectedBehavior.reload }}</option>
|
|
|
|
<option value="dialog">{{ i18n.ts._serverDisconnectedBehavior.dialog }}</option>
|
|
|
|
<option value="quiet">{{ i18n.ts._serverDisconnectedBehavior.quiet }}</option>
|
2021-11-28 12:07:37 +01:00
|
|
|
</FormSelect>
|
|
|
|
</FormSection>
|
|
|
|
|
|
|
|
<FormSection>
|
2022-05-04 03:13:51 +02:00
|
|
|
<template #label>{{ i18n.ts.appearance }}</template>
|
|
|
|
<FormSwitch v-model="disableAnimatedMfm" class="_formBlock">{{ i18n.ts.disableAnimatedMfm }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="reduceAnimation" class="_formBlock">{{ i18n.ts.reduceUiAnimation }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="useBlurEffect" class="_formBlock">{{ i18n.ts.useBlurEffect }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="useBlurEffectForModal" class="_formBlock">{{ i18n.ts.useBlurEffectForModal }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="showGapBetweenNotesInTimeline" class="_formBlock">{{ i18n.ts.showGapBetweenNotesInTimeline }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="loadRawImages" class="_formBlock">{{ i18n.ts.loadRawImages }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="disableShowingAnimatedImages" class="_formBlock">{{ i18n.ts.disableShowingAnimatedImages }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="squareAvatars" class="_formBlock">{{ i18n.ts.squareAvatars }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="useSystemFont" class="_formBlock">{{ i18n.ts.useSystemFont }}</FormSwitch>
|
2022-06-20 10:38:49 +02:00
|
|
|
<FormSwitch v-model="useOsNativeEmojis" class="_formBlock">
|
|
|
|
{{ i18n.ts.useOsNativeEmojis }}
|
2021-11-19 11:36:12 +01:00
|
|
|
<div><Mfm :key="useOsNativeEmojis" text="🍮🍦🍭🍩🍰🍫🍬🥞🍪"/></div>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormSwitch>
|
2022-05-04 03:13:51 +02:00
|
|
|
<FormSwitch v-model="disableDrawer" class="_formBlock">{{ i18n.ts.disableDrawer }}</FormSwitch>
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormRadios v-model="fontSize" class="_formBlock">
|
2022-05-04 03:13:51 +02:00
|
|
|
<template #label>{{ i18n.ts.fontSize }}</template>
|
2021-11-28 12:07:37 +01:00
|
|
|
<option value="small"><span style="font-size: 14px;">Aa</span></option>
|
|
|
|
<option :value="null"><span style="font-size: 16px;">Aa</span></option>
|
|
|
|
<option value="large"><span style="font-size: 18px;">Aa</span></option>
|
|
|
|
<option value="veryLarge"><span style="font-size: 20px;">Aa</span></option>
|
|
|
|
</FormRadios>
|
|
|
|
</FormSection>
|
2021-09-04 10:54:24 +02:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormSection>
|
2022-05-04 03:13:51 +02:00
|
|
|
<FormSwitch v-model="aiChanMode">{{ i18n.ts.aiChanMode }}</FormSwitch>
|
2021-11-28 12:07:37 +01:00
|
|
|
</FormSection>
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormSelect v-model="instanceTicker" class="_formBlock">
|
2022-05-04 03:13:51 +02:00
|
|
|
<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>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormSelect>
|
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormSelect v-model="nsfw" class="_formBlock">
|
2022-05-04 03:13:51 +02:00
|
|
|
<template #label>{{ i18n.ts.nsfw }}</template>
|
|
|
|
<option value="respect">{{ i18n.ts._nsfw.respect }}</option>
|
|
|
|
<option value="ignore">{{ i18n.ts._nsfw.ignore }}</option>
|
|
|
|
<option value="force">{{ i18n.ts._nsfw.force }}</option>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormSelect>
|
|
|
|
|
2022-06-30 03:53:40 +02:00
|
|
|
<FormRange v-model="numberOfPageCache" :min="1" :max="10" :step="1" class="_formBlock">
|
|
|
|
<template #label>{{ i18n.ts.numberOfPageCache }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.numberOfPageCacheDescription }}</template>
|
|
|
|
</FormRange>
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-05-04 03:13:51 +02:00
|
|
|
<FormLink to="/settings/deck" class="_formBlock">{{ i18n.ts.deck }}</FormLink>
|
2021-07-13 17:11:05 +02:00
|
|
|
|
2022-05-04 03:13:51 +02:00
|
|
|
<FormLink to="/settings/custom-css" class="_formBlock"><template #icon><i class="fas fa-code"></i></template>{{ i18n.ts.customCss }}</FormLink>
|
2021-11-28 12:07:37 +01:00
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</template>
|
|
|
|
|
2022-05-04 03:13:51 +02:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 10:38:49 +02:00
|
|
|
import { computed, ref, watch } from 'vue';
|
2021-11-28 12:07:37 +01:00
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
|
|
import FormSelect from '@/components/form/select.vue';
|
|
|
|
import FormRadios from '@/components/form/radios.vue';
|
2022-06-30 03:53:40 +02:00
|
|
|
import FormRange from '@/components/form/range.vue';
|
2021-11-28 12:07:37 +01:00
|
|
|
import FormSection from '@/components/form/section.vue';
|
|
|
|
import FormLink from '@/components/form/link.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkLink from '@/components/link.vue';
|
|
|
|
import { langs } from '@/config';
|
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
2022-05-04 03:13:51 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-05-04 03:13:51 +02:00
|
|
|
|
|
|
|
const lang = ref(localStorage.getItem('lang'));
|
|
|
|
const fontSize = ref(localStorage.getItem('fontSize'));
|
|
|
|
const useSystemFont = ref(localStorage.getItem('useSystemFont') != null);
|
|
|
|
|
|
|
|
async function reloadAsk() {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'info',
|
|
|
|
text: i18n.ts.reloadToApplySetting,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
unisonReload();
|
|
|
|
}
|
|
|
|
|
|
|
|
const overridedDeviceKind = computed(defaultStore.makeGetterSetter('overridedDeviceKind'));
|
|
|
|
const serverDisconnectedBehavior = computed(defaultStore.makeGetterSetter('serverDisconnectedBehavior'));
|
|
|
|
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 disableAnimatedMfm = computed(defaultStore.makeGetterSetter('animatedMfm', v => !v, v => !v));
|
|
|
|
const useOsNativeEmojis = computed(defaultStore.makeGetterSetter('useOsNativeEmojis'));
|
|
|
|
const disableDrawer = computed(defaultStore.makeGetterSetter('disableDrawer'));
|
|
|
|
const disableShowingAnimatedImages = computed(defaultStore.makeGetterSetter('disableShowingAnimatedImages'));
|
|
|
|
const loadRawImages = computed(defaultStore.makeGetterSetter('loadRawImages'));
|
|
|
|
const imageNewTab = computed(defaultStore.makeGetterSetter('imageNewTab'));
|
|
|
|
const nsfw = computed(defaultStore.makeGetterSetter('nsfw'));
|
|
|
|
const disablePagesScript = computed(defaultStore.makeGetterSetter('disablePagesScript'));
|
|
|
|
const showFixedPostForm = computed(defaultStore.makeGetterSetter('showFixedPostForm'));
|
2022-06-30 03:53:40 +02:00
|
|
|
const numberOfPageCache = computed(defaultStore.makeGetterSetter('numberOfPageCache'));
|
2022-05-04 03:13:51 +02:00
|
|
|
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 aiChanMode = computed(defaultStore.makeGetterSetter('aiChanMode'));
|
|
|
|
|
|
|
|
watch(lang, () => {
|
|
|
|
localStorage.setItem('lang', lang.value as string);
|
|
|
|
localStorage.removeItem('locale');
|
|
|
|
});
|
|
|
|
|
|
|
|
watch(fontSize, () => {
|
|
|
|
if (fontSize.value == null) {
|
|
|
|
localStorage.removeItem('fontSize');
|
|
|
|
} else {
|
|
|
|
localStorage.setItem('fontSize', fontSize.value);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
watch(useSystemFont, () => {
|
|
|
|
if (useSystemFont.value) {
|
|
|
|
localStorage.setItem('useSystemFont', 't');
|
|
|
|
} else {
|
|
|
|
localStorage.removeItem('useSystemFont');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
watch([
|
|
|
|
lang,
|
|
|
|
fontSize,
|
|
|
|
useSystemFont,
|
|
|
|
enableInfiniteScroll,
|
|
|
|
squareAvatars,
|
|
|
|
aiChanMode,
|
|
|
|
showGapBetweenNotesInTimeline,
|
|
|
|
instanceTicker,
|
2022-06-20 10:38:49 +02:00
|
|
|
overridedDeviceKind,
|
2022-05-04 03:13:51 +02:00
|
|
|
], async () => {
|
|
|
|
await reloadAsk();
|
|
|
|
});
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.general,
|
|
|
|
icon: 'fas fa-cogs',
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
|
|
|
</script>
|