2017-02-16 21:25:29 +00:00
|
|
|
<template>
|
2018-08-13 14:07:45 +00:00
|
|
|
<div class="settings panel panel-default">
|
|
|
|
<div class="panel-heading">
|
2018-09-07 15:17:17 +00:00
|
|
|
<div class="title">
|
|
|
|
{{$t('settings.settings')}}
|
|
|
|
</div>
|
|
|
|
|
2018-09-09 16:36:13 +00:00
|
|
|
<transition name="fade">
|
|
|
|
<template v-if="currentSaveStateNotice">
|
2018-09-09 18:21:23 +00:00
|
|
|
<div @click.prevent class="alert error" v-if="currentSaveStateNotice.error">
|
2018-09-09 18:57:17 +00:00
|
|
|
{{ $t('settings.saving_err') }}
|
2018-09-09 16:36:13 +00:00
|
|
|
</div>
|
2018-09-07 15:17:17 +00:00
|
|
|
|
2018-09-09 18:57:17 +00:00
|
|
|
<div @click.prevent class="alert transparent" v-if="!currentSaveStateNotice.error">
|
|
|
|
{{ $t('settings.saving_ok') }}
|
2018-09-09 16:36:13 +00:00
|
|
|
</div>
|
2018-12-05 08:37:01 +00:00
|
|
|
</template>
|
2018-09-09 16:36:13 +00:00
|
|
|
</transition>
|
2018-08-13 14:07:45 +00:00
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
2018-10-02 18:43:58 +00:00
|
|
|
<keep-alive>
|
2018-08-28 11:28:05 +00:00
|
|
|
<tab-switcher>
|
2018-08-28 13:22:49 +00:00
|
|
|
<div :label="$t('settings.general')" >
|
2018-08-28 11:28:05 +00:00
|
|
|
<div class="setting-item">
|
2018-12-05 08:37:01 +00:00
|
|
|
<h2>{{ $t('settings.interface') }}</h2>
|
|
|
|
<ul class="setting-list">
|
|
|
|
<li>
|
|
|
|
<interface-language-switcher />
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="hideISP" v-model="hideISPLocal">
|
|
|
|
<label for="hideISP">{{$t('settings.hide_isp')}}</label>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2018-08-28 11:28:05 +00:00
|
|
|
</div>
|
|
|
|
<div class="setting-item">
|
|
|
|
<h2>{{$t('nav.timeline')}}</h2>
|
|
|
|
<ul class="setting-list">
|
2018-03-11 23:31:33 +00:00
|
|
|
<li>
|
2018-08-28 11:28:05 +00:00
|
|
|
<input type="checkbox" id="collapseMessageWithSubject" v-model="collapseMessageWithSubjectLocal">
|
2018-09-20 14:21:11 +00:00
|
|
|
<label for="collapseMessageWithSubject">
|
|
|
|
{{$t('settings.collapse_subject')}} {{$t('settings.instance_default', { value: collapseMessageWithSubjectDefault })}}
|
|
|
|
</label>
|
2018-08-28 11:28:05 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="streaming" v-model="streamingLocal">
|
|
|
|
<label for="streaming">{{$t('settings.streaming')}}</label>
|
|
|
|
<ul class="setting-list suboptions" :class="[{disabled: !streamingLocal}]">
|
|
|
|
<li>
|
|
|
|
<input :disabled="!streamingLocal" type="checkbox" id="pauseOnUnfocused" v-model="pauseOnUnfocusedLocal">
|
|
|
|
<label for="pauseOnUnfocused">{{$t('settings.pause_on_unfocused')}}</label>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="autoload" v-model="autoLoadLocal">
|
|
|
|
<label for="autoload">{{$t('settings.autoload')}}</label>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="hoverPreview" v-model="hoverPreviewLocal">
|
|
|
|
<label for="hoverPreview">{{$t('settings.reply_link_preview')}}</label>
|
|
|
|
</li>
|
2018-08-13 14:07:45 +00:00
|
|
|
</ul>
|
2018-08-28 11:28:05 +00:00
|
|
|
</div>
|
2018-09-25 11:47:02 +00:00
|
|
|
|
|
|
|
<div class="setting-item">
|
|
|
|
<h2>{{$t('settings.composing')}}</h2>
|
|
|
|
<ul class="setting-list">
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="scopeCopy" v-model="scopeCopyLocal">
|
|
|
|
<label for="scopeCopy">
|
|
|
|
{{$t('settings.scope_copy')}} {{$t('settings.instance_default', { value: scopeCopyDefault })}}
|
|
|
|
</label>
|
|
|
|
</li>
|
2018-12-03 03:47:35 +00:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="subjectHide" v-model="alwaysShowSubjectInputLocal">
|
|
|
|
<label for="subjectHide">
|
|
|
|
{{$t('settings.subject_input_always_show')}} {{$t('settings.instance_default', { value: alwaysShowSubjectInputDefault })}}
|
|
|
|
</label>
|
|
|
|
</li>
|
2018-09-25 11:47:02 +00:00
|
|
|
<li>
|
|
|
|
<div>
|
|
|
|
{{$t('settings.subject_line_behavior')}}
|
|
|
|
<label for="subjectLineBehavior" class="select">
|
|
|
|
<select id="subjectLineBehavior" v-model="subjectLineBehaviorLocal">
|
|
|
|
<option value="email">
|
|
|
|
{{$t('settings.subject_line_email')}}
|
2018-09-25 12:16:26 +00:00
|
|
|
{{subjectLineBehaviorDefault == 'email' ? $t('settings.instance_default_simple') : ''}}
|
2018-09-25 11:47:02 +00:00
|
|
|
</option>
|
|
|
|
<option value="masto">
|
|
|
|
{{$t('settings.subject_line_mastodon')}}
|
2018-09-25 12:16:26 +00:00
|
|
|
{{subjectLineBehaviorDefault == 'mastodon' ? $t('settings.instance_default_simple') : ''}}
|
2018-09-25 11:47:02 +00:00
|
|
|
</option>
|
|
|
|
<option value="noop">
|
|
|
|
{{$t('settings.subject_line_noop')}}
|
2018-09-25 12:16:26 +00:00
|
|
|
{{subjectLineBehaviorDefault == 'noop' ? $t('settings.instance_default_simple') : ''}}
|
2018-09-25 11:47:02 +00:00
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
<i class="icon-down-open"/>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2018-08-28 11:28:05 +00:00
|
|
|
<div class="setting-item">
|
|
|
|
<h2>{{$t('settings.attachments')}}</h2>
|
|
|
|
<ul class="setting-list">
|
2018-08-15 09:51:21 +00:00
|
|
|
<li>
|
2018-08-28 11:28:05 +00:00
|
|
|
<input type="checkbox" id="hideAttachments" v-model="hideAttachmentsLocal">
|
|
|
|
<label for="hideAttachments">{{$t('settings.hide_attachments_in_tl')}}</label>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="hideAttachmentsInConv" v-model="hideAttachmentsInConvLocal">
|
|
|
|
<label for="hideAttachmentsInConv">{{$t('settings.hide_attachments_in_convo')}}</label>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="hideNsfw" v-model="hideNsfwLocal">
|
|
|
|
<label for="hideNsfw">{{$t('settings.nsfw_clickthrough')}}</label>
|
|
|
|
</li>
|
2018-12-11 22:12:29 +00:00
|
|
|
<ul class="setting-list suboptions" >
|
|
|
|
<li>
|
2018-12-14 14:14:55 +00:00
|
|
|
<input :disabled="!hideNsfwLocal" type="checkbox" id="preloadImage" v-model="preloadImage">
|
2018-12-11 22:12:29 +00:00
|
|
|
<label for="preloadImage">{{$t('settings.preload_images')}}</label>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2018-08-28 11:28:05 +00:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="stopGifs" v-model="stopGifs">
|
|
|
|
<label for="stopGifs">{{$t('settings.stop_gifs')}}</label>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="loopVideo" v-model="loopVideoLocal">
|
|
|
|
<label for="loopVideo">{{$t('settings.loop_video')}}</label>
|
2018-08-15 09:51:21 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
2018-08-28 11:28:05 +00:00
|
|
|
</div>
|
2018-12-12 17:03:50 +00:00
|
|
|
|
|
|
|
<div class="setting-item">
|
|
|
|
<h2>{{$t('settings.notifications')}}</h2>
|
|
|
|
<ul class="setting-list">
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="webPushNotifications" v-model="webPushNotificationsLocal">
|
|
|
|
<label for="webPushNotifications">
|
|
|
|
{{$t('settings.enable_web_push_notifications')}}
|
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2018-08-28 11:28:05 +00:00
|
|
|
</div>
|
|
|
|
|
2018-08-28 13:22:49 +00:00
|
|
|
<div :label="$t('settings.theme')" >
|
2018-08-28 11:28:05 +00:00
|
|
|
<div class="setting-item">
|
|
|
|
<style-switcher></style-switcher>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-08-28 13:22:49 +00:00
|
|
|
<div :label="$t('settings.filtering')" >
|
2018-08-28 12:47:42 +00:00
|
|
|
<div class="setting-item">
|
2018-08-28 18:21:29 +00:00
|
|
|
<div class="select-multiple">
|
|
|
|
<span class="label">{{$t('settings.notification_visibility')}}</span>
|
|
|
|
<ul class="option-list">
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="notification-visibility-likes" v-model="notificationVisibilityLocal.likes">
|
|
|
|
<label for="notification-visibility-likes">
|
|
|
|
{{$t('settings.notification_visibility_likes')}}
|
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="notification-visibility-repeats" v-model="notificationVisibilityLocal.repeats">
|
|
|
|
<label for="notification-visibility-repeats">
|
|
|
|
{{$t('settings.notification_visibility_repeats')}}
|
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="notification-visibility-follows" v-model="notificationVisibilityLocal.follows">
|
|
|
|
<label for="notification-visibility-follows">
|
|
|
|
{{$t('settings.notification_visibility_follows')}}
|
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="notification-visibility-mentions" v-model="notificationVisibilityLocal.mentions">
|
|
|
|
<label for="notification-visibility-mentions">
|
|
|
|
{{$t('settings.notification_visibility_mentions')}}
|
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{{$t('settings.replies_in_timeline')}}
|
|
|
|
<label for="replyVisibility" class="select">
|
|
|
|
<select id="replyVisibility" v-model="replyVisibilityLocal">
|
|
|
|
<option value="all" selected>{{$t('settings.reply_visibility_all')}}</option>
|
|
|
|
<option value="following">{{$t('settings.reply_visibility_following')}}</option>
|
|
|
|
<option value="self">{{$t('settings.reply_visibility_self')}}</option>
|
|
|
|
</select>
|
|
|
|
<i class="icon-down-open"/>
|
|
|
|
</label>
|
|
|
|
</div>
|
2018-09-03 23:41:37 +00:00
|
|
|
<div>
|
|
|
|
<input type="checkbox" id="hidePostStats" v-model="hidePostStatsLocal">
|
2018-10-16 13:09:29 +00:00
|
|
|
<label for="hidePostStats">
|
|
|
|
{{$t('settings.hide_post_stats')}} {{$t('settings.instance_default', { value: hidePostStatsDefault })}}
|
|
|
|
</label>
|
2018-09-03 23:41:37 +00:00
|
|
|
</div>
|
2018-09-03 23:32:25 +00:00
|
|
|
<div>
|
|
|
|
<input type="checkbox" id="hideUserStats" v-model="hideUserStatsLocal">
|
2018-10-16 13:09:29 +00:00
|
|
|
<label for="hideUserStats">
|
|
|
|
{{$t('settings.hide_user_stats')}} {{$t('settings.instance_default', { value: hideUserStatsDefault })}}
|
|
|
|
</label>
|
2018-09-03 23:32:25 +00:00
|
|
|
</div>
|
2018-08-28 12:47:42 +00:00
|
|
|
</div>
|
2018-08-28 11:28:05 +00:00
|
|
|
<div class="setting-item">
|
|
|
|
<p>{{$t('settings.filtering_explanation')}}</p>
|
|
|
|
<textarea id="muteWords" v-model="muteWordsString"></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</tab-switcher>
|
2018-10-02 18:43:58 +00:00
|
|
|
</keep-alive>
|
2017-02-16 21:25:29 +00:00
|
|
|
</div>
|
2018-08-13 14:07:45 +00:00
|
|
|
</div>
|
2017-02-16 21:25:29 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./settings.js">
|
|
|
|
</script>
|
|
|
|
|
2017-04-09 13:53:23 +00:00
|
|
|
<style lang="scss">
|
2018-04-01 19:07:25 +00:00
|
|
|
@import '../../_variables.scss';
|
2018-04-01 02:28:20 +00:00
|
|
|
|
2018-04-01 19:07:25 +00:00
|
|
|
.setting-item {
|
2018-10-07 16:59:22 +00:00
|
|
|
border-bottom: 2px solid var(--fg, $fallback--fg);
|
2018-04-07 16:30:27 +00:00
|
|
|
margin: 1em 1em 1.4em;
|
2018-05-29 19:34:19 +00:00
|
|
|
padding-bottom: 1.4em;
|
|
|
|
|
2018-08-30 16:53:13 +00:00
|
|
|
> div {
|
2018-08-28 18:21:29 +00:00
|
|
|
margin-bottom: .5em;
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-28 11:28:05 +00:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
2018-08-28 12:38:07 +00:00
|
|
|
padding-bottom: 0;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
min-width: 10em;
|
2018-08-28 11:28:05 +00:00
|
|
|
}
|
|
|
|
|
2017-04-21 15:52:42 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
textarea {
|
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
}
|
2017-04-21 15:52:42 +00:00
|
|
|
|
2018-08-15 09:51:21 +00:00
|
|
|
.unavailable,
|
|
|
|
.unavailable i {
|
|
|
|
color: var(--cRed, $fallback--cRed);
|
|
|
|
color: $fallback--cRed;
|
|
|
|
}
|
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.old-avatar {
|
|
|
|
width: 128px;
|
|
|
|
border-radius: $fallback--avatarRadius;
|
|
|
|
border-radius: var(--avatarRadius, $fallback--avatarRadius);
|
|
|
|
}
|
2017-04-21 15:52:42 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.new-avatar {
|
|
|
|
object-fit: cover;
|
|
|
|
width: 128px;
|
|
|
|
height: 128px;
|
|
|
|
border-radius: $fallback--avatarRadius;
|
|
|
|
border-radius: var(--avatarRadius, $fallback--avatarRadius);
|
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.btn {
|
2018-08-20 18:06:29 +00:00
|
|
|
min-height: 28px;
|
2018-11-23 08:36:36 +00:00
|
|
|
min-width: 10em;
|
|
|
|
padding: 0 2em;
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
}
|
2018-08-28 18:21:29 +00:00
|
|
|
.select-multiple {
|
|
|
|
display: flex;
|
|
|
|
.option-list {
|
|
|
|
margin: 0;
|
|
|
|
padding-left: .5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.setting-list,
|
|
|
|
.option-list{
|
2018-04-07 16:30:27 +00:00
|
|
|
list-style-type: none;
|
2018-08-13 14:07:45 +00:00
|
|
|
padding-left: 2em;
|
2018-04-07 16:30:27 +00:00
|
|
|
li {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
2018-08-13 14:07:45 +00:00
|
|
|
.suboptions {
|
|
|
|
margin-top: 0.3em
|
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
}
|
2017-02-16 21:25:29 +00:00
|
|
|
</style>
|