2020-10-17 13:12:00 +02:00
|
|
|
<template>
|
2021-11-28 12:07:37 +01:00
|
|
|
<div class="_formRoot">
|
2022-07-20 15:24:26 +02:00
|
|
|
<FormSwitch v-model="isLocked" class="_formBlock" @update:modelValue="save()">{{ i18n.ts.makeFollowManuallyApprove }}<template #caption>{{ i18n.ts.lockedAccountInfo }}</template></FormSwitch>
|
|
|
|
<FormSwitch v-if="isLocked" v-model="autoAcceptFollowed" class="_formBlock" @update:modelValue="save()">{{ i18n.ts.autoAcceptFollowed }}</FormSwitch>
|
2021-11-28 12:07:37 +01:00
|
|
|
|
|
|
|
<FormSwitch v-model="publicReactions" class="_formBlock" @update:modelValue="save()">
|
2022-07-20 15:24:26 +02:00
|
|
|
{{ i18n.ts.makeReactionsPublic }}
|
|
|
|
<template #caption>{{ i18n.ts.makeReactionsPublicDescription }}</template>
|
2021-10-17 18:16:59 +02:00
|
|
|
</FormSwitch>
|
2022-09-08 00:09:23 +02:00
|
|
|
|
2022-02-09 04:43:59 +01:00
|
|
|
<FormSelect v-model="ffVisibility" class="_formBlock" @update:modelValue="save()">
|
2022-07-20 15:24:26 +02:00
|
|
|
<template #label>{{ i18n.ts.ffVisibility }}</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>
|
|
|
|
<template #caption>{{ i18n.ts.ffVisibilityDescription }}</template>
|
2021-11-28 12:07:37 +01:00
|
|
|
</FormSelect>
|
2022-09-08 00:09:23 +02:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormSwitch v-model="hideOnlineStatus" class="_formBlock" @update:modelValue="save()">
|
2022-07-20 15:24:26 +02:00
|
|
|
{{ i18n.ts.hideOnlineStatus }}
|
|
|
|
<template #caption>{{ i18n.ts.hideOnlineStatusDescription }}</template>
|
2021-04-17 08:30:26 +02:00
|
|
|
</FormSwitch>
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormSwitch v-model="noCrawle" class="_formBlock" @update:modelValue="save()">
|
2022-07-20 15:24:26 +02:00
|
|
|
{{ i18n.ts.noCrawle }}
|
|
|
|
<template #caption>{{ i18n.ts.noCrawleDescription }}</template>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormSwitch>
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormSwitch v-model="isExplorable" class="_formBlock" @update:modelValue="save()">
|
2022-07-20 15:24:26 +02:00
|
|
|
{{ i18n.ts.makeExplorable }}
|
|
|
|
<template #caption>{{ i18n.ts.makeExplorableDescription }}</template>
|
2020-12-11 13:16:20 +01:00
|
|
|
</FormSwitch>
|
2021-11-28 12:07:37 +01:00
|
|
|
|
|
|
|
<FormSection>
|
2022-07-20 15:24:26 +02:00
|
|
|
<FormSwitch v-model="rememberNoteVisibility" class="_formBlock" @update:modelValue="save()">{{ i18n.ts.rememberNoteVisibility }}</FormSwitch>
|
2022-06-24 03:51:45 +02:00
|
|
|
<FormFolder v-if="!rememberNoteVisibility" class="_formBlock">
|
2022-07-20 15:24:26 +02:00
|
|
|
<template #label>{{ i18n.ts.defaultNoteVisibility }}</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>
|
2022-06-24 03:51:45 +02:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormSelect v-model="defaultNoteVisibility" class="_formBlock">
|
2022-07-20 15:24:26 +02:00
|
|
|
<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>
|
2021-11-28 12:07:37 +01:00
|
|
|
</FormSelect>
|
2022-07-20 15:24:26 +02:00
|
|
|
<FormSwitch v-model="defaultNoteLocalOnly" class="_formBlock">{{ i18n.ts._visibility.localOnly }}</FormSwitch>
|
2022-06-24 03:51:45 +02:00
|
|
|
</FormFolder>
|
2021-11-28 12:07:37 +01:00
|
|
|
</FormSection>
|
|
|
|
|
2022-07-20 15:24:26 +02:00
|
|
|
<FormSwitch v-model="keepCw" class="_formBlock" @update:modelValue="save()">{{ i18n.ts.keepCw }}</FormSwitch>
|
2021-11-28 12:07:37 +01:00
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 12:35:10 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } 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 FormSection from '@/components/form/section.vue';
|
2022-06-24 03:51:45 +02:00
|
|
|
import FormFolder from '@/components/form/folder.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { defaultStore } from '@/store';
|
2022-01-15 12:35:10 +01:00
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { $i } from '@/account';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2022-01-15 12:35:10 +01:00
|
|
|
let isLocked = $ref($i.isLocked);
|
|
|
|
let autoAcceptFollowed = $ref($i.autoAcceptFollowed);
|
|
|
|
let noCrawle = $ref($i.noCrawle);
|
|
|
|
let isExplorable = $ref($i.isExplorable);
|
|
|
|
let hideOnlineStatus = $ref($i.hideOnlineStatus);
|
|
|
|
let publicReactions = $ref($i.publicReactions);
|
|
|
|
let ffVisibility = $ref($i.ffVisibility);
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2022-01-15 12:35:10 +01:00
|
|
|
let defaultNoteVisibility = $computed(defaultStore.makeGetterSetter('defaultNoteVisibility'));
|
|
|
|
let defaultNoteLocalOnly = $computed(defaultStore.makeGetterSetter('defaultNoteLocalOnly'));
|
|
|
|
let rememberNoteVisibility = $computed(defaultStore.makeGetterSetter('rememberNoteVisibility'));
|
|
|
|
let keepCw = $computed(defaultStore.makeGetterSetter('keepCw'));
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2022-01-15 12:35:10 +01:00
|
|
|
function save() {
|
|
|
|
os.api('i/update', {
|
|
|
|
isLocked: !!isLocked,
|
|
|
|
autoAcceptFollowed: !!autoAcceptFollowed,
|
|
|
|
noCrawle: !!noCrawle,
|
|
|
|
isExplorable: !!isExplorable,
|
|
|
|
hideOnlineStatus: !!hideOnlineStatus,
|
|
|
|
publicReactions: !!publicReactions,
|
|
|
|
ffVisibility: ffVisibility,
|
|
|
|
});
|
|
|
|
}
|
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.privacy,
|
2022-11-07 03:49:47 +01:00
|
|
|
icon: 'ph-lock-open-bold ph-lg',
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
|
|
|
</script>
|