* wip * wip * wip * test * wip rollup pluginでsearchIndexの情報生成 * wip * SPDX * wip: markerIdを自動付与 * rollupでビルド時・devモード時に毎回uuidを生成するように * 開発サーバーでだけ必要な挙動は開発サーバーのみで * 条件が逆 * wip: childrenの生成 * update comment * update comment * rename auto generated file * hashをパスと行数から決定 * Update privacy.vue * Update privacy.vue * wip * Update general.vue * Update general.vue * wip * wip * Update SearchMarker.vue * wip * Update profile.vue * Update mute-block.vue * Update mute-block.vue * Update general.vue * Update general.vue * childrenがduplicate key errorを吐く問題をいったん解決 * マーカーの形を成形 * loggerを置きかえ * とりあえず省略記法に対応 * Refactor and Format codes * wip * Update settings-search-index.ts * wip * wip * とりあえず不確定要因の仮置きidを削除 * hashの生成を正規化(絶対パスになっていたのを緩和) * pathの入力を省略可能に * adminでもパス生成できるように * Update settings-search-index.ts * Update privacy.vue * wip * build searchIndex * wip * build * Update general.vue * build * Update sounds.vue * build * build * Update sounds.vue * 🎨 * 🎨 * Update privacy.vue * Update privacy.vue * Update security.vue * create-search-indexを多少改善 * build * Update 2fa.vue * wip * 必ずtransformCodeCacheを利用するように, キャッシュの明確な受け渡しを定義 * キャッシュはdevServerでなくても更新 * Revert "wip" This reverts commit 41bffd3a13f55618bf939dc1c9acb2a77ead4054. * inlining * wip * Update theme.vue * 🎨 * wip normalize * Update theme.vue * キャッシュのパス変換 * build * wip * wip * Update SearchMarker.vue * i18n.ts['key'] の形式が取り出せない問題のFix * build * 仮でpath入れ * 必ず絶対パスが使われるように * wip * 🎨 * storybookビルド時はcreateSearchIndexをしない * inliningの構造化 * format code * Update index.vue * wip * wip * 🎨 * wip * wip * wip * wip * wip * wip * wip * wip * clean up * Update navbar.vue * enhance: 検索で上下矢印を使用することで検索結果を移動できるように * refactor * fix(frontend): PageWindowでSearchMarkerが動作するように * enhance(frontend): SearchMarkerの点滅を一定時間で止める * lint fix * fix: 子要素監視が抜けていたのを修正 * アニメーションの回数はCSSで制御するように * refactor * enhance(frontend): 検索インデックス作成時のログを削減 * revert * fix * fix --------- Co-authored-by: tai-cha <dev@taichan.site> Co-authored-by: taichan <40626578+tai-cha@users.noreply.github.com> Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
312 lines
14 KiB
Vue
312 lines
14 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<SearchMarker path="/settings/privacy" :label="i18n.ts.privacy" :keywords="['privacy']" icon="ti ti-lock-open">
|
|
<div class="_gaps_m">
|
|
<SearchMarker :keywords="['follow', 'lock']">
|
|
<MkSwitch v-model="isLocked" @update:modelValue="save()">
|
|
<template #label><SearchLabel>{{ i18n.ts.makeFollowManuallyApprove }}</SearchLabel></template>
|
|
<template #caption><SearchKeyword>{{ i18n.ts.lockedAccountInfo }}</SearchKeyword></template>
|
|
</MkSwitch>
|
|
</SearchMarker>
|
|
|
|
<MkDisableSection :disabled="!isLocked">
|
|
<SearchMarker :keywords="['follow', 'auto', 'accept']">
|
|
<MkSwitch v-model="autoAcceptFollowed" @update:modelValue="save()">
|
|
<template #label><SearchLabel>{{ i18n.ts.autoAcceptFollowed }}</SearchLabel></template>
|
|
</MkSwitch>
|
|
</SearchMarker>
|
|
</MkDisableSection>
|
|
|
|
<SearchMarker :keywords="['reaction', 'public']">
|
|
<MkSwitch v-model="publicReactions" @update:modelValue="save()">
|
|
<template #label><SearchLabel>{{ i18n.ts.makeReactionsPublic }}</SearchLabel></template>
|
|
<template #caption><SearchKeyword>{{ i18n.ts.makeReactionsPublicDescription }}</SearchKeyword></template>
|
|
</MkSwitch>
|
|
</SearchMarker>
|
|
|
|
<SearchMarker :keywords="['following', 'visibility']">
|
|
<MkSelect v-model="followingVisibility" @update:modelValue="save()">
|
|
<template #label><SearchLabel>{{ i18n.ts.followingVisibility }}</SearchLabel></template>
|
|
<option value="public">{{ i18n.ts._ffVisibility.public }}</option>
|
|
<option value="followers">{{ i18n.ts._ffVisibility.followers }}</option>
|
|
<option value="private">{{ i18n.ts._ffVisibility.private }}</option>
|
|
</MkSelect>
|
|
</SearchMarker>
|
|
|
|
<SearchMarker :keywords="['follower', 'visibility']">
|
|
<MkSelect v-model="followersVisibility" @update:modelValue="save()">
|
|
<template #label><SearchLabel>{{ i18n.ts.followersVisibility }}</SearchLabel></template>
|
|
<option value="public">{{ i18n.ts._ffVisibility.public }}</option>
|
|
<option value="followers">{{ i18n.ts._ffVisibility.followers }}</option>
|
|
<option value="private">{{ i18n.ts._ffVisibility.private }}</option>
|
|
</MkSelect>
|
|
</SearchMarker>
|
|
|
|
<SearchMarker :keywords="['online', 'status']">
|
|
<MkSwitch v-model="hideOnlineStatus" @update:modelValue="save()">
|
|
<template #label><SearchLabel>{{ i18n.ts.hideOnlineStatus }}</SearchLabel></template>
|
|
<template #caption><SearchKeyword>{{ i18n.ts.hideOnlineStatusDescription }}</SearchKeyword></template>
|
|
</MkSwitch>
|
|
</SearchMarker>
|
|
|
|
<SearchMarker :keywords="['crawle', 'index', 'search']">
|
|
<MkSwitch v-model="noCrawle" @update:modelValue="save()">
|
|
<template #label><SearchLabel>{{ i18n.ts.noCrawle }}</SearchLabel></template>
|
|
<template #caption><SearchKeyword>{{ i18n.ts.noCrawleDescription }}</SearchKeyword></template>
|
|
</MkSwitch>
|
|
</SearchMarker>
|
|
|
|
<SearchMarker :keywords="['crawle', 'ai']">
|
|
<MkSwitch v-model="preventAiLearning" @update:modelValue="save()">
|
|
<template #label><SearchLabel>{{ i18n.ts.preventAiLearning }}</SearchLabel></template>
|
|
<template #caption><SearchKeyword>{{ i18n.ts.preventAiLearningDescription }}</SearchKeyword></template>
|
|
</MkSwitch>
|
|
</SearchMarker>
|
|
|
|
<SearchMarker :keywords="['explore']">
|
|
<MkSwitch v-model="isExplorable" @update:modelValue="save()">
|
|
<template #label><SearchLabel>{{ i18n.ts.makeExplorable }}</SearchLabel></template>
|
|
<template #caption><SearchKeyword>{{ i18n.ts.makeExplorableDescription }}</SearchKeyword></template>
|
|
</MkSwitch>
|
|
</SearchMarker>
|
|
|
|
<SearchMarker :keywords="['lockdown']">
|
|
<FormSection>
|
|
<template #label><SearchLabel>{{ i18n.ts.lockdown }}</SearchLabel><span class="_beta">{{ i18n.ts.beta }}</span></template>
|
|
|
|
<div class="_gaps_m">
|
|
<SearchMarker :keywords="['login', 'signin']">
|
|
<MkSwitch :modelValue="requireSigninToViewContents" @update:modelValue="update_requireSigninToViewContents">
|
|
<template #label><SearchLabel>{{ i18n.ts._accountSettings.requireSigninToViewContents }}</SearchLabel></template>
|
|
<template #caption>
|
|
<div>{{ i18n.ts._accountSettings.requireSigninToViewContentsDescription1 }}</div>
|
|
<div><i class="ti ti-alert-triangle" style="color: var(--MI_THEME-warn);"></i> {{ i18n.ts._accountSettings.requireSigninToViewContentsDescription2 }}</div>
|
|
<div v-if="instance.federation !== 'none'"><i class="ti ti-alert-triangle" style="color: var(--MI_THEME-warn);"></i> {{ i18n.ts._accountSettings.requireSigninToViewContentsDescription3 }}</div>
|
|
</template>
|
|
</MkSwitch>
|
|
</SearchMarker>
|
|
|
|
<SearchMarker :keywords="['follower']">
|
|
<FormSlot>
|
|
<template #label><SearchLabel>{{ i18n.ts._accountSettings.makeNotesFollowersOnlyBefore }}</SearchLabel></template>
|
|
|
|
<div class="_gaps_s">
|
|
<MkSelect :modelValue="makeNotesFollowersOnlyBefore_type" @update:modelValue="makeNotesFollowersOnlyBefore = $event === 'relative' ? -604800 : $event === 'absolute' ? Math.floor(Date.now() / 1000) : null">
|
|
<option :value="null">{{ i18n.ts.none }}</option>
|
|
<option value="relative">{{ i18n.ts._accountSettings.notesHavePassedSpecifiedPeriod }}</option>
|
|
<option value="absolute">{{ i18n.ts._accountSettings.notesOlderThanSpecifiedDateAndTime }}</option>
|
|
</MkSelect>
|
|
|
|
<MkSelect v-if="makeNotesFollowersOnlyBefore_type === 'relative'" v-model="makeNotesFollowersOnlyBefore">
|
|
<option :value="-3600">{{ i18n.ts.oneHour }}</option>
|
|
<option :value="-86400">{{ i18n.ts.oneDay }}</option>
|
|
<option :value="-259200">{{ i18n.ts.threeDays }}</option>
|
|
<option :value="-604800">{{ i18n.ts.oneWeek }}</option>
|
|
<option :value="-2592000">{{ i18n.ts.oneMonth }}</option>
|
|
<option :value="-7776000">{{ i18n.ts.threeMonths }}</option>
|
|
<option :value="-31104000">{{ i18n.ts.oneYear }}</option>
|
|
</MkSelect>
|
|
|
|
<MkInput
|
|
v-if="makeNotesFollowersOnlyBefore_type === 'absolute'"
|
|
:modelValue="formatDateTimeString(new Date(makeNotesFollowersOnlyBefore * 1000), 'yyyy-MM-dd')"
|
|
type="date"
|
|
:manualSave="true"
|
|
@update:modelValue="makeNotesFollowersOnlyBefore = Math.floor(new Date($event).getTime() / 1000)"
|
|
>
|
|
</MkInput>
|
|
</div>
|
|
|
|
<template #caption>
|
|
<div><SearchKeyword>{{ i18n.ts._accountSettings.makeNotesFollowersOnlyBeforeDescription }}</SearchKeyword></div>
|
|
<div v-if="instance.federation !== 'none'"><i class="ti ti-alert-triangle" style="color: var(--MI_THEME-warn);"></i> {{ i18n.ts._accountSettings.mayNotEffectForFederatedNotes }}</div>
|
|
</template>
|
|
</FormSlot>
|
|
</SearchMarker>
|
|
|
|
<SearchMarker :keywords="['hidden']">
|
|
<FormSlot>
|
|
<template #label><SearchLabel>{{ i18n.ts._accountSettings.makeNotesHiddenBefore }}</SearchLabel></template>
|
|
|
|
<div class="_gaps_s">
|
|
<MkSelect :modelValue="makeNotesHiddenBefore_type" @update:modelValue="makeNotesHiddenBefore = $event === 'relative' ? -604800 : $event === 'absolute' ? Math.floor(Date.now() / 1000) : null">
|
|
<option :value="null">{{ i18n.ts.none }}</option>
|
|
<option value="relative">{{ i18n.ts._accountSettings.notesHavePassedSpecifiedPeriod }}</option>
|
|
<option value="absolute">{{ i18n.ts._accountSettings.notesOlderThanSpecifiedDateAndTime }}</option>
|
|
</MkSelect>
|
|
|
|
<MkSelect v-if="makeNotesHiddenBefore_type === 'relative'" v-model="makeNotesHiddenBefore">
|
|
<option :value="-3600">{{ i18n.ts.oneHour }}</option>
|
|
<option :value="-86400">{{ i18n.ts.oneDay }}</option>
|
|
<option :value="-259200">{{ i18n.ts.threeDays }}</option>
|
|
<option :value="-604800">{{ i18n.ts.oneWeek }}</option>
|
|
<option :value="-2592000">{{ i18n.ts.oneMonth }}</option>
|
|
<option :value="-7776000">{{ i18n.ts.threeMonths }}</option>
|
|
<option :value="-31104000">{{ i18n.ts.oneYear }}</option>
|
|
</MkSelect>
|
|
|
|
<MkInput
|
|
v-if="makeNotesHiddenBefore_type === 'absolute'"
|
|
:modelValue="formatDateTimeString(new Date(makeNotesHiddenBefore * 1000), 'yyyy-MM-dd')"
|
|
type="date"
|
|
:manualSave="true"
|
|
@update:modelValue="makeNotesHiddenBefore = Math.floor(new Date($event).getTime() / 1000)"
|
|
>
|
|
</MkInput>
|
|
</div>
|
|
|
|
<template #caption>
|
|
<div><SearchKeyword>{{ i18n.ts._accountSettings.makeNotesHiddenBeforeDescription }}</SearchKeyword></div>
|
|
<div v-if="instance.federation !== 'none'"><i class="ti ti-alert-triangle" style="color: var(--MI_THEME-warn);"></i> {{ i18n.ts._accountSettings.mayNotEffectForFederatedNotes }}</div>
|
|
</template>
|
|
</FormSlot>
|
|
</SearchMarker>
|
|
</div>
|
|
</FormSection>
|
|
</SearchMarker>
|
|
|
|
<FormSection>
|
|
<div class="_gaps_m">
|
|
<SearchMarker :keywords="['remember', 'keep', 'note', 'visibility']">
|
|
<MkSwitch v-model="rememberNoteVisibility" @update:modelValue="save()">
|
|
<template #label><SearchLabel>{{ i18n.ts.rememberNoteVisibility }}</SearchLabel></template>
|
|
</MkSwitch>
|
|
</SearchMarker>
|
|
|
|
<SearchMarker :keywords="['default', 'note', 'visibility']">
|
|
<MkFolder v-if="!rememberNoteVisibility">
|
|
<template #label><SearchLabel>{{ i18n.ts.defaultNoteVisibility }}</SearchLabel></template>
|
|
<template v-if="defaultNoteVisibility === 'public'" #suffix>{{ i18n.ts._visibility.public }}</template>
|
|
<template v-else-if="defaultNoteVisibility === 'home'" #suffix>{{ i18n.ts._visibility.home }}</template>
|
|
<template v-else-if="defaultNoteVisibility === 'followers'" #suffix>{{ i18n.ts._visibility.followers }}</template>
|
|
<template v-else-if="defaultNoteVisibility === 'specified'" #suffix>{{ i18n.ts._visibility.specified }}</template>
|
|
|
|
<div class="_gaps_m">
|
|
<MkSelect v-model="defaultNoteVisibility">
|
|
<option value="public">{{ i18n.ts._visibility.public }}</option>
|
|
<option value="home">{{ i18n.ts._visibility.home }}</option>
|
|
<option value="followers">{{ i18n.ts._visibility.followers }}</option>
|
|
<option value="specified">{{ i18n.ts._visibility.specified }}</option>
|
|
</MkSelect>
|
|
<MkSwitch v-model="defaultNoteLocalOnly">{{ i18n.ts._visibility.disableFederation }}</MkSwitch>
|
|
</div>
|
|
</MkFolder>
|
|
</SearchMarker>
|
|
</div>
|
|
</FormSection>
|
|
|
|
<SearchMarker :keywords="['remember', 'keep', 'note', 'cw']">
|
|
<MkSwitch v-model="keepCw" @update:modelValue="save()">
|
|
<template #label><SearchLabel>{{ i18n.ts.keepCw }}</SearchLabel></template>
|
|
</MkSwitch>
|
|
</SearchMarker>
|
|
</div>
|
|
</SearchMarker>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, computed, watch } from 'vue';
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
import MkSelect from '@/components/MkSelect.vue';
|
|
import FormSection from '@/components/form/section.vue';
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
|
import { defaultStore } from '@/store.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { instance } from '@/instance.js';
|
|
import { signinRequired } from '@/account.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import FormSlot from '@/components/form/slot.vue';
|
|
import { formatDateTimeString } from '@/scripts/format-time-string.js';
|
|
import MkInput from '@/components/MkInput.vue';
|
|
import * as os from '@/os.js';
|
|
import MkDisableSection from '@/components/MkDisableSection.vue';
|
|
|
|
const $i = signinRequired();
|
|
|
|
const isLocked = ref($i.isLocked);
|
|
const autoAcceptFollowed = ref($i.autoAcceptFollowed);
|
|
const noCrawle = ref($i.noCrawle);
|
|
const preventAiLearning = ref($i.preventAiLearning);
|
|
const isExplorable = ref($i.isExplorable);
|
|
const requireSigninToViewContents = ref($i.requireSigninToViewContents ?? false);
|
|
const makeNotesFollowersOnlyBefore = ref($i.makeNotesFollowersOnlyBefore ?? null);
|
|
const makeNotesHiddenBefore = ref($i.makeNotesHiddenBefore ?? null);
|
|
const hideOnlineStatus = ref($i.hideOnlineStatus);
|
|
const publicReactions = ref($i.publicReactions);
|
|
const followingVisibility = ref($i.followingVisibility);
|
|
const followersVisibility = ref($i.followersVisibility);
|
|
|
|
const defaultNoteVisibility = computed(defaultStore.makeGetterSetter('defaultNoteVisibility'));
|
|
const defaultNoteLocalOnly = computed(defaultStore.makeGetterSetter('defaultNoteLocalOnly'));
|
|
const rememberNoteVisibility = computed(defaultStore.makeGetterSetter('rememberNoteVisibility'));
|
|
const keepCw = computed(defaultStore.makeGetterSetter('keepCw'));
|
|
|
|
const makeNotesFollowersOnlyBefore_type = computed(() => {
|
|
if (makeNotesFollowersOnlyBefore.value == null) {
|
|
return null;
|
|
} else if (makeNotesFollowersOnlyBefore.value >= 0) {
|
|
return 'absolute';
|
|
} else {
|
|
return 'relative';
|
|
}
|
|
});
|
|
|
|
const makeNotesHiddenBefore_type = computed(() => {
|
|
if (makeNotesHiddenBefore.value == null) {
|
|
return null;
|
|
} else if (makeNotesHiddenBefore.value >= 0) {
|
|
return 'absolute';
|
|
} else {
|
|
return 'relative';
|
|
}
|
|
});
|
|
|
|
watch([makeNotesFollowersOnlyBefore, makeNotesHiddenBefore], () => {
|
|
save();
|
|
});
|
|
|
|
async function update_requireSigninToViewContents(value: boolean) {
|
|
if (value === true && instance.federation !== 'none') {
|
|
const { canceled } = await os.confirm({
|
|
type: 'warning',
|
|
text: i18n.ts.acknowledgeNotesAndEnable,
|
|
});
|
|
if (canceled) return;
|
|
}
|
|
|
|
requireSigninToViewContents.value = value;
|
|
save();
|
|
}
|
|
|
|
function save() {
|
|
misskeyApi('i/update', {
|
|
isLocked: !!isLocked.value,
|
|
autoAcceptFollowed: !!autoAcceptFollowed.value,
|
|
noCrawle: !!noCrawle.value,
|
|
preventAiLearning: !!preventAiLearning.value,
|
|
isExplorable: !!isExplorable.value,
|
|
requireSigninToViewContents: !!requireSigninToViewContents.value,
|
|
makeNotesFollowersOnlyBefore: makeNotesFollowersOnlyBefore.value,
|
|
makeNotesHiddenBefore: makeNotesHiddenBefore.value,
|
|
hideOnlineStatus: !!hideOnlineStatus.value,
|
|
publicReactions: !!publicReactions.value,
|
|
followingVisibility: followingVisibility.value,
|
|
followersVisibility: followersVisibility.value,
|
|
});
|
|
}
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
const headerTabs = computed(() => []);
|
|
|
|
definePageMetadata(() => ({
|
|
title: i18n.ts.privacy,
|
|
icon: 'ti ti-lock-open',
|
|
}));
|
|
</script>
|