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">
|
2019-03-03 00:07:14 +11:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="hideMutedPosts" v-model="hideMutedPostsLocal">
|
|
|
|
<label for="hideMutedPosts">{{$t('settings.hide_muted_posts')}} {{$t('settings.instance_default', { value: hideMutedPostsDefault })}}</label>
|
|
|
|
</li>
|
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">
|
2019-04-19 14:32:54 +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-06-17 03:16:52 +10:00
|
|
|
<li v-if="postFormats.length > 0">
|
2019-02-07 06:26:46 +11:00
|
|
|
<div>
|
|
|
|
{{$t('settings.post_status_content_type')}}
|
|
|
|
<label for="postContentType" class="select">
|
|
|
|
<select id="postContentType" v-model="postContentTypeLocal">
|
2019-03-05 16:29:56 +11:00
|
|
|
<option v-for="postFormat in postFormats" :key="postFormat" :value="postFormat">
|
2019-03-07 15:13:04 +11:00
|
|
|
{{$t(`post_status.content_type["${postFormat}"]`)}}
|
2019-03-05 16:29:56 +11:00
|
|
|
{{postContentTypeDefault === postFormat ? $t('settings.instance_default_simple') : ''}}
|
2019-02-07 06:26:46 +11:00
|
|
|
</option>
|
|
|
|
</select>
|
|
|
|
<i class="icon-down-open"/>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</li>
|
2019-03-04 00:15:41 +11:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="minimalScopesMode" v-model="minimalScopesModeLocal">
|
|
|
|
<label for="minimalScopesMode">
|
|
|
|
{{$t('settings.minimal_scopes_mode')}} {{$t('settings.instance_default', { value: minimalScopesModeDefault })}}
|
|
|
|
</label>
|
|
|
|
</li>
|
2019-04-26 02:32:21 +10:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" id="autohideFloatingPostButton" v-model="autohideFloatingPostButtonLocal">
|
|
|
|
<label for="autohideFloatingPostButton">{{$t('settings.autohide_floating_post_button')}}</label>
|
|
|
|
</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>
|
2019-02-28 01:38:58 +11:00
|
|
|
<li>
|
|
|
|
<label for="maxThumbnails">{{$t('settings.max_thumbnails')}}</label>
|
|
|
|
<input class="number-input" type="number" id="maxThumbnails" v-model.number="maxThumbnails" min="0" step="1">
|
|
|
|
</li>
|
2018-08-28 21:28:05 +10:00
|
|
|
<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>
|
2019-03-01 04:28:45 +11:00
|
|
|
<input :disabled="!hideNsfwLocal" type="checkbox" id="useOneClickNsfw" v-model="useOneClickNsfw">
|
2019-01-27 02:45:03 +11:00
|
|
|
<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>
|
2019-03-11 10:58:12 +11:00
|
|
|
<div :label="$t('settings.version.title')" >
|
|
|
|
<div class="setting-item">
|
|
|
|
<ul class="setting-list">
|
|
|
|
<li>
|
|
|
|
<p>{{$t('settings.version.backend_version')}}</p>
|
|
|
|
<ul class="option-list">
|
|
|
|
<li>
|
2019-03-11 12:06:51 +11:00
|
|
|
<a :href="backendVersionLink" target="_blank">{{backendVersion}}</a>
|
2019-03-11 10:58:12 +11:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<p>{{$t('settings.version.frontend_version')}}</p>
|
|
|
|
<ul class="option-list">
|
|
|
|
<li>
|
2019-03-11 12:06:51 +11:00
|
|
|
<a :href="frontendVersionLink" target="_blank">{{frontendVersion}}</a>
|
2019-03-11 10:58:12 +11:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-28 21:28:05 +10:00
|
|
|
</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>
|