2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2020-01-29 20:10:42 -06:00
|
|
|
<section class="_card">
|
2020-01-29 13:37:25 -06:00
|
|
|
<div class="_title"><fa :icon="faLock"/> {{ $t('privacy') }}</div>
|
|
|
|
<div class="_content">
|
|
|
|
<mk-switch v-model="isLocked" @change="save()">{{ $t('makeFollowManuallyApprove') }}</mk-switch>
|
|
|
|
<mk-switch v-model="autoAcceptFollowed" :disabled="!isLocked" @change="save()">{{ $t('autoAcceptFollowed') }}</mk-switch>
|
|
|
|
</div>
|
|
|
|
<div class="_content">
|
2020-02-04 18:42:58 -06:00
|
|
|
<mk-switch v-model="rememberNoteVisibility" @change="save()">{{ $t('rememberNoteVisibility') }}</mk-switch>
|
|
|
|
<mk-select v-model="defaultNoteVisibility" style="margin-bottom: 8px;" v-if="!rememberNoteVisibility">
|
2020-01-29 13:37:25 -06:00
|
|
|
<template #label>{{ $t('defaultNoteVisibility') }}</template>
|
|
|
|
<option value="public">{{ $t('_visibility.public') }}</option>
|
|
|
|
<option value="followers">{{ $t('_visibility.followers') }}</option>
|
|
|
|
<option value="specified">{{ $t('_visibility.specified') }}</option>
|
|
|
|
</mk-select>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import { faLock } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import MkSelect from '../../components/ui/select.vue';
|
|
|
|
import MkSwitch from '../../components/ui/switch.vue';
|
|
|
|
import i18n from '../../i18n';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
i18n,
|
|
|
|
|
|
|
|
components: {
|
|
|
|
MkSelect,
|
|
|
|
MkSwitch,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isLocked: false,
|
|
|
|
autoAcceptFollowed: false,
|
|
|
|
faLock
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
defaultNoteVisibility: {
|
|
|
|
get() { return this.$store.state.settings.defaultNoteVisibility; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'defaultNoteVisibility', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
rememberNoteVisibility: {
|
|
|
|
get() { return this.$store.state.settings.rememberNoteVisibility; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'rememberNoteVisibility', value }); }
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
this.isLocked = this.$store.state.i.isLocked;
|
|
|
|
this.autoAcceptFollowed = this.$store.state.i.autoAcceptFollowed;
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
save() {
|
|
|
|
this.$root.api('i/update', {
|
|
|
|
isLocked: !!this.isLocked,
|
|
|
|
autoAcceptFollowed: !!this.autoAcceptFollowed,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|