2017-02-17 08:25:29 +11:00
|
|
|
<template>
|
2018-08-14 00:07:45 +10:00
|
|
|
<div class="settings panel panel-default">
|
|
|
|
<div class="panel-heading">
|
2018-09-08 01:17:17 +10:00
|
|
|
<div class="title">
|
|
|
|
{{$t('settings.settings')}}
|
|
|
|
</div>
|
|
|
|
|
2018-09-10 02:36:13 +10:00
|
|
|
<transition name="fade">
|
|
|
|
<template v-if="currentSaveStateNotice">
|
2018-09-10 04:21:23 +10:00
|
|
|
<div @click.prevent class="alert error" v-if="currentSaveStateNotice.error">
|
2018-09-10 04:57:17 +10:00
|
|
|
{{ $t('settings.saving_err') }}
|
2018-09-10 02:36:13 +10:00
|
|
|
</div>
|
2018-09-08 01:17:17 +10:00
|
|
|
|
2018-09-10 04:57:17 +10:00
|
|
|
<div @click.prevent class="alert transparent" v-if="!currentSaveStateNotice.error">
|
|
|
|
{{ $t('settings.saving_ok') }}
|
2018-09-10 02:36:13 +10:00
|
|
|
</div>
|
2018-12-05 19:37:01 +11:00
|
|
|
</template>
|
2018-09-10 02:36:13 +10:00
|
|
|
</transition>
|
2018-08-14 00:07:45 +10:00
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
2018-10-03 04:43:58 +10:00
|
|
|
<keep-alive>
|
2018-08-28 21:28:05 +10:00
|
|
|
<tab-switcher>
|
2018-08-28 23:22:49 +10:00
|
|
|
<div :label="$t('settings.general')" >
|
2018-08-28 21:28:05 +10:00
|
|
|
<div class="setting-item">
|
2018-12-05 19:37:01 +11:00
|
|
|
<h2>{{ $t('settings.interface') }}</h2>
|
|
|
|
<ul class="setting-list">
|
|
|
|
<li>
|
|
|
|
<interface-language-switcher />
|
|
|
|
</li>
|
2019-02-18 08:24:14 +11:00
|
|
|
<li v-if="instanceSpecificPanelPresent">
|
2018-12-05 19:37:01 +11:00
|
|
|
<input type="checkbox" id="hideISP" v-model="hideISPLocal">
|
|
|
|
<label for="hideISP">{{$t('settings.hide_isp')}}</label>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2018-08-28 21:28:05 +10:00
|
|
|
</div>
|
|
|
|
<div class="setting-item">
|
|
|
|
<h2>{{$t('nav.timeline')}}</h2>
|
|
|
|
<ul class="setting-list">
|
2018-03-12 10:31:33 +11:00
|
|
|
<li>
|
2018-08-28 21:28:05 +10:00
|
|
|
<input type="checkbox" id="collapseMessageWithSubject" v-model="collapseMessageWithSubjectLocal">
|
2018-09-21 00:21:11 +10:00
|
|
|
<label for="collapseMessageWithSubject">
|
|
|
|
{{$t('settings.collapse_subject')}} {{$t('settings.instance_default', { value: collapseMessageWithSubjectDefault })}}
|
|
|
|
</label>
|
2018-08-28 21:28:05 +10: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-14 00:07:45 +10:00
|
|
|
</ul>
|
2018-08-28 21:28:05 +10:00
|
|
|
</div>
|
2018-09-25 21:47:02 +10: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 14:47:35 +11: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 21:47:02 +10: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 22:16:26 +10:00
|
|
|
{{subjectLineBehaviorDefault == 'email' ? $t('settings.instance_default_simple') : ''}}
|
2018-09-25 21:47:02 +10:00
|
|
|
</option>
|
|
|
|
<option value="masto">
|
|
|
|
{{$t('settings.subject_line_mastodon')}}
|
2018-09-25 22:16:26 +10:00
|
|
|
{{subjectLineBehaviorDefault == 'mastodon' ? $t('settings.instance_default_simple') : ''}}
|
2018-09-25 21:47:02 +10:00
|
|
|
</option>
|
|
|
|
<option value="noop">
|
|
|
|
{{$t('settings.subject_line_noop')}}
|
2018-09-25 22:16:26 +10:00
|
|
|
{{subjectLineBehaviorDefault == 'noop' ? $t('settings.instance_default_simple') : ''}}
|
2018-09-25 21:47:02 +10:00
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
<i class="icon-down-open"/>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</li>
|
2019-02-07 06:26:46 +11:00
|
|
|
<li>
|
|
|
|
<div>
|
|
|
|
{{$t('settings.post_status_content_type')}}
|
|
|
|
<label for="postContentType" class="select">
|
|
|
|
<select id="postContentType" v-model="postContentTypeLocal">
|
|
|
|
<option value="text/plain">
|
|
|
|
{{$t('settings.status_content_type_plain')}}
|
|
|
|
{{postContentTypeDefault == 'text/plain' ? $t('settings.instance_default_simple') : ''}}
|
|
|
|
</option>
|
|
|
|
<option value="text/html">
|
|
|
|
HTML
|
|
|
|
{{postContentTypeDefault == 'text/html' ? $t('settings.instance_default_simple') : ''}}
|
|
|
|
</option>
|
|
|
|
<option value="text/markdown">
|
|
|
|
Markdown
|
|
|
|
{{postContentTypeDefault == 'text/markdown' ? $t('settings.instance_default_simple') : ''}}
|
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
<i class="icon-down-open"/>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</li>
|
2018-09-25 21:47:02 +10:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2018-08-28 21:28:05 +10:00
|
|
|
<div class="setting-item">
|
|
|
|
<h2>{{$t('settings.attachments')}}</h2>
|
|
|
|
<ul class="setting-list">
|
2018-08-15 19:51:21 +10:00
|
|
|
<li>
|
2018-08-28 21:28:05 +10: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-12 09:12:29 +11:00
|
|
|
<ul class="setting-list suboptions" >
|
|
|
|
<li>
|
2018-12-15 01:14:55 +11:00
|
|
|
<input :disabled="!hideNsfwLocal" type="checkbox" id="preloadImage" v-model="preloadImage">
|
2018-12-12 09:12:29 +11:00
|
|
|
<label for="preloadImage">{{$t('settings.preload_images')}}</label>
|
|
|
|
</li>
|
2019-01-27 02:45:03 +11:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="useOneClickNsfw" v-model="useOneClickNsfw">
|
|
|
|
<label for="useOneClickNsfw">{{$t('settings.use_one_click_nsfw')}}</label>
|
|
|
|
</li>
|
2018-12-12 09:12:29 +11:00
|
|
|
</ul>
|
2018-08-28 21:28:05 +10: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>
|
2019-01-27 02:45:03 +11:00
|
|
|
<ul class="setting-list suboptions" :class="[{disabled: !streamingLocal}]">
|
|
|
|
<li>
|
|
|
|
<input :disabled="!loopVideoLocal || !loopSilentAvailable" type="checkbox" id="loopVideoSilentOnly" v-model="loopVideoSilentOnlyLocal">
|
|
|
|
<label for="loopVideoSilentOnly">{{$t('settings.loop_video_silent_only')}}</label>
|
|
|
|
<div v-if="!loopSilentAvailable" class="unavailable">
|
|
|
|
<i class="icon-globe"/>! {{$t('settings.limited_availability')}}
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<li>
|
2019-02-01 06:19:41 +11:00
|
|
|
<input type="checkbox" id="playVideosInModal" v-model="playVideosInModal">
|
|
|
|
<label for="playVideosInModal">{{$t('settings.play_videos_in_modal')}}</label>
|
2019-01-27 02:45:03 +11:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="useContainFit" v-model="useContainFit">
|
|
|
|
<label for="useContainFit">{{$t('settings.use_contain_fit')}}</label>
|
2018-08-15 19:51:21 +10:00
|
|
|
</li>
|
|
|
|
</ul>
|
2018-08-28 21:28:05 +10:00
|
|
|
</div>
|
2018-12-13 04:03:50 +11: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 21:28:05 +10:00
|
|
|
</div>
|
|
|
|
|
2018-08-28 23:22:49 +10:00
|
|
|
<div :label="$t('settings.theme')" >
|
2018-08-28 21:28:05 +10:00
|
|
|
<div class="setting-item">
|
|
|
|
<style-switcher></style-switcher>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-08-28 23:22:49 +10:00
|
|
|
<div :label="$t('settings.filtering')" >
|
2018-08-28 22:47:42 +10:00
|
|
|
<div class="setting-item">
|
2018-08-29 04:21:29 +10: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>
|
|
|
|
</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-04 09:41:37 +10:00
|
|
|
<div>
|
|
|
|
<input type="checkbox" id="hidePostStats" v-model="hidePostStatsLocal">
|
2018-10-17 00:09:29 +11:00
|
|
|
<label for="hidePostStats">
|
|
|
|
{{$t('settings.hide_post_stats')}} {{$t('settings.instance_default', { value: hidePostStatsDefault })}}
|
|
|
|
</label>
|
2018-09-04 09:41:37 +10:00
|
|
|
</div>
|
2018-09-04 09:32:25 +10:00
|
|
|
<div>
|
|
|
|
<input type="checkbox" id="hideUserStats" v-model="hideUserStatsLocal">
|
2018-10-17 00:09:29 +11:00
|
|
|
<label for="hideUserStats">
|
|
|
|
{{$t('settings.hide_user_stats')}} {{$t('settings.instance_default', { value: hideUserStatsDefault })}}
|
|
|
|
</label>
|
2018-09-04 09:32:25 +10:00
|
|
|
</div>
|
2018-08-28 22:47:42 +10:00
|
|
|
</div>
|
2018-08-28 21:28:05 +10:00
|
|
|
<div class="setting-item">
|
2019-02-07 05:18:13 +11:00
|
|
|
<div>
|
|
|
|
<p>{{$t('settings.filtering_explanation')}}</p>
|
|
|
|
<textarea id="muteWords" v-model="muteWordsString"></textarea>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<input type="checkbox" id="hideFilteredStatuses" v-model="hideFilteredStatusesLocal">
|
|
|
|
<label for="hideFilteredStatuses">
|
|
|
|
{{$t('settings.hide_filtered_statuses')}} {{$t('settings.instance_default', { value: hideFilteredStatusesDefault })}}
|
|
|
|
</label>
|
|
|
|
</div>
|
2018-08-28 21:28:05 +10:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</tab-switcher>
|
2018-10-03 04:43:58 +10:00
|
|
|
</keep-alive>
|
2017-02-17 08:25:29 +11:00
|
|
|
</div>
|
2018-08-14 00:07:45 +10:00
|
|
|
</div>
|
2017-02-17 08:25:29 +11:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./settings.js">
|
|
|
|
</script>
|
|
|
|
|
2017-04-09 23:53:23 +10:00
|
|
|
<style lang="scss">
|
2018-04-02 05:07:25 +10:00
|
|
|
@import '../../_variables.scss';
|
2018-04-01 12:28:20 +10:00
|
|
|
|
2018-04-02 05:07:25 +10:00
|
|
|
.setting-item {
|
2018-10-08 03:59:22 +11:00
|
|
|
border-bottom: 2px solid var(--fg, $fallback--fg);
|
2018-04-08 02:30:27 +10:00
|
|
|
margin: 1em 1em 1.4em;
|
2018-05-30 05:34:19 +10:00
|
|
|
padding-bottom: 1.4em;
|
|
|
|
|
2018-08-31 02:53:13 +10:00
|
|
|
> div {
|
2018-08-29 04:21:29 +10:00
|
|
|
margin-bottom: .5em;
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-28 21:28:05 +10:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
2018-08-28 22:38:07 +10:00
|
|
|
padding-bottom: 0;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
min-width: 10em;
|
2018-08-28 21:28:05 +10:00
|
|
|
}
|
|
|
|
|
2017-04-22 01:52:42 +10:00
|
|
|
|
2018-04-08 02:30:27 +10:00
|
|
|
textarea {
|
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
}
|
2017-04-22 01:52:42 +10:00
|
|
|
|
2018-08-15 19:51:21 +10:00
|
|
|
.unavailable,
|
|
|
|
.unavailable i {
|
|
|
|
color: var(--cRed, $fallback--cRed);
|
|
|
|
color: $fallback--cRed;
|
|
|
|
}
|
|
|
|
|
2018-04-08 02:30:27 +10:00
|
|
|
.btn {
|
2018-08-21 04:06:29 +10:00
|
|
|
min-height: 28px;
|
2018-11-23 19:36:36 +11:00
|
|
|
min-width: 10em;
|
|
|
|
padding: 0 2em;
|
2018-04-08 02:30:27 +10:00
|
|
|
}
|
2018-04-02 05:07:25 +10:00
|
|
|
}
|
2018-08-29 04:21:29 +10:00
|
|
|
.select-multiple {
|
|
|
|
display: flex;
|
|
|
|
.option-list {
|
|
|
|
margin: 0;
|
|
|
|
padding-left: .5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.setting-list,
|
|
|
|
.option-list{
|
2018-04-08 02:30:27 +10:00
|
|
|
list-style-type: none;
|
2018-08-14 00:07:45 +10:00
|
|
|
padding-left: 2em;
|
2018-04-08 02:30:27 +10:00
|
|
|
li {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
2018-08-14 00:07:45 +10:00
|
|
|
.suboptions {
|
|
|
|
margin-top: 0.3em
|
|
|
|
}
|
2018-04-02 05:07:25 +10:00
|
|
|
}
|
2017-02-17 08:25:29 +11:00
|
|
|
</style>
|