2018-02-12 14:18:13 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-settings">
|
|
|
|
<div class="nav">
|
2018-04-14 18:04:40 +02:00
|
|
|
<p :class="{ active: page == 'profile' }" @mousedown="page = 'profile'">%fa:user .fw%%i18n:@profile%</p>
|
2018-02-12 14:18:13 +01:00
|
|
|
<p :class="{ active: page == 'web' }" @mousedown="page = 'web'">%fa:desktop .fw%Web</p>
|
2018-04-15 00:51:56 +02:00
|
|
|
<p :class="{ active: page == 'notification' }" @mousedown="page = 'notification'">%fa:R bell .fw%%i18n:@notification%</p>
|
2018-04-14 18:04:40 +02:00
|
|
|
<p :class="{ active: page == 'drive' }" @mousedown="page = 'drive'">%fa:cloud .fw%%i18n:@drive%</p>
|
2018-09-17 02:00:20 +02:00
|
|
|
<p :class="{ active: page == 'hashtags' }" @mousedown="page = 'hashtags'">%fa:hashtag .fw%%i18n:@tags%</p>
|
2018-04-14 18:04:40 +02:00
|
|
|
<p :class="{ active: page == 'mute' }" @mousedown="page = 'mute'">%fa:ban .fw%%i18n:@mute%</p>
|
2018-04-15 00:51:56 +02:00
|
|
|
<p :class="{ active: page == 'apps' }" @mousedown="page = 'apps'">%fa:puzzle-piece .fw%%i18n:@apps%</p>
|
2018-02-12 14:18:13 +01:00
|
|
|
<p :class="{ active: page == 'twitter' }" @mousedown="page = 'twitter'">%fa:B twitter .fw%Twitter</p>
|
2018-04-14 18:04:40 +02:00
|
|
|
<p :class="{ active: page == 'security' }" @mousedown="page = 'security'">%fa:unlock-alt .fw%%i18n:@security%</p>
|
2018-02-12 14:18:13 +01:00
|
|
|
<p :class="{ active: page == 'api' }" @mousedown="page = 'api'">%fa:key .fw%API</p>
|
2018-04-14 18:04:40 +02:00
|
|
|
<p :class="{ active: page == 'other' }" @mousedown="page = 'other'">%fa:cogs .fw%%i18n:@other%</p>
|
2018-02-12 14:18:13 +01:00
|
|
|
</div>
|
|
|
|
<div class="pages">
|
|
|
|
<section class="profile" v-show="page == 'profile'">
|
2018-04-14 18:04:40 +02:00
|
|
|
<h1>%i18n:@profile%</h1>
|
2018-02-20 15:22:19 +01:00
|
|
|
<x-profile/>
|
2018-02-12 14:18:13 +01:00
|
|
|
</section>
|
|
|
|
|
2018-03-05 12:09:26 +01:00
|
|
|
<section class="web" v-show="page == 'web'">
|
2018-05-18 20:33:55 +02:00
|
|
|
<h1>%i18n:@behaviour%</h1>
|
2018-09-14 08:14:59 +02:00
|
|
|
<mk-switch v-model="fetchOnScroll" text="%i18n:@fetch-on-scroll%">
|
2018-05-18 20:33:55 +02:00
|
|
|
<span>%i18n:@fetch-on-scroll-desc%</span>
|
2018-03-05 12:09:26 +01:00
|
|
|
</mk-switch>
|
2018-05-18 20:33:55 +02:00
|
|
|
<mk-switch v-model="autoPopout" text="%i18n:@auto-popout%">
|
|
|
|
<span>%i18n:@auto-popout-desc%</span>
|
2018-03-14 08:12:36 +01:00
|
|
|
</mk-switch>
|
2018-09-07 14:13:15 +02:00
|
|
|
|
|
|
|
<section>
|
|
|
|
<header>%i18n:@note-visibility%</header>
|
2018-09-14 08:14:59 +02:00
|
|
|
<mk-switch v-model="rememberNoteVisibility" text="%i18n:@remember-note-visibility%"/>
|
2018-09-07 14:13:15 +02:00
|
|
|
<section>
|
|
|
|
<header>%i18n:@default-note-visibility%</header>
|
|
|
|
<ui-select v-model="defaultNoteVisibility">
|
|
|
|
<option value="public">%i18n:common.note-visibility.public%</option>
|
|
|
|
<option value="home">%i18n:common.note-visibility.home%</option>
|
|
|
|
<option value="followers">%i18n:common.note-visibility.followers%</option>
|
|
|
|
<option value="specified">%i18n:common.note-visibility.specified%</option>
|
|
|
|
<option value="private">%i18n:common.note-visibility.private%</option>
|
|
|
|
</ui-select>
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
|
2018-04-11 23:18:55 +02:00
|
|
|
<details>
|
2018-05-18 20:33:55 +02:00
|
|
|
<summary>%i18n:@advanced%</summary>
|
|
|
|
<mk-switch v-model="apiViaStream" text="%i18n:@api-via-stream%">
|
|
|
|
<span>%i18n:@api-via-stream-desc%</span>
|
2018-04-11 23:18:55 +02:00
|
|
|
</mk-switch>
|
|
|
|
</details>
|
2018-03-05 12:09:26 +01:00
|
|
|
</section>
|
|
|
|
|
2018-02-12 14:18:13 +01:00
|
|
|
<section class="web" v-show="page == 'web'">
|
2018-05-18 20:33:55 +02:00
|
|
|
<h1>%i18n:@display%</h1>
|
2018-03-02 10:46:08 +01:00
|
|
|
<div class="div">
|
2018-05-18 20:33:55 +02:00
|
|
|
<button class="ui button" @click="customizeHome" style="margin-bottom: 16px">%i18n:@customize%</button>
|
2018-04-19 20:41:24 +02:00
|
|
|
</div>
|
|
|
|
<div class="div">
|
2018-06-06 22:14:37 +02:00
|
|
|
<button class="ui" @click="updateWallpaper">%i18n:@choose-wallpaper%</button>
|
2018-06-06 23:15:57 +02:00
|
|
|
<button class="ui" @click="deleteWallpaper">%i18n:@delete-wallpaper%</button>
|
2018-05-18 20:33:55 +02:00
|
|
|
<mk-switch v-model="darkmode" text="%i18n:@dark-mode%"/>
|
2018-09-14 08:14:59 +02:00
|
|
|
<mk-switch v-model="circleIcons" text="%i18n:@circle-icons%"/>
|
2018-09-16 14:40:48 +02:00
|
|
|
<mk-switch v-model="reduceMotion" text="%i18n:common.reduce-motion%"/>
|
2018-09-14 08:14:59 +02:00
|
|
|
<mk-switch v-model="contrastedAcct" text="%i18n:@contrasted-acct%"/>
|
2018-09-14 13:33:27 +02:00
|
|
|
<mk-switch v-model="showFullAcct" text="%i18n:common.show-full-acct%"/>
|
2018-09-14 08:14:59 +02:00
|
|
|
<mk-switch v-model="gradientWindowHeader" text="%i18n:@gradient-window-header%"/>
|
|
|
|
<mk-switch v-model="iLikeSushi" text="%i18n:common.i-like-sushi%"/>
|
2018-02-22 18:06:35 +01:00
|
|
|
</div>
|
2018-09-14 08:14:59 +02:00
|
|
|
<mk-switch v-model="showPostFormOnTopOfTl" text="%i18n:@post-form-on-timeline%"/>
|
|
|
|
<mk-switch v-model="suggestRecentHashtags" text="%i18n:@suggest-recent-hashtags%"/>
|
|
|
|
<mk-switch v-model="showClockOnHeader" text="%i18n:@show-clock-on-header%"/>
|
|
|
|
<mk-switch v-model="alwaysShowNsfw" text="%i18n:common.always-show-nsfw%"/>
|
|
|
|
<mk-switch v-model="showReplyTarget" text="%i18n:@show-reply-target%"/>
|
|
|
|
<mk-switch v-model="showMyRenotes" text="%i18n:@show-my-renotes%"/>
|
|
|
|
<mk-switch v-model="showRenotedMyNotes" text="%i18n:@show-renoted-my-notes%"/>
|
|
|
|
<mk-switch v-model="showLocalRenotes" text="%i18n:@show-local-renotes%"/>
|
|
|
|
<mk-switch v-model="showMaps" text="%i18n:@show-maps%">
|
2018-05-18 20:33:55 +02:00
|
|
|
<span>%i18n:@show-maps-desc%</span>
|
2018-03-06 00:35:25 +01:00
|
|
|
</mk-switch>
|
2018-09-14 08:14:59 +02:00
|
|
|
<mk-switch v-model="disableAnimatedMfm" text="%i18n:common.disable-animated-mfm%"/>
|
|
|
|
<mk-switch v-model="games_reversi_showBoardLabels" text="%i18n:common.show-reversi-board-labels%"/>
|
|
|
|
<mk-switch v-model="games_reversi_useContrastStones" text="%i18n:common.use-contrast-reversi-stones%"/>
|
2018-03-03 01:49:47 +01:00
|
|
|
</section>
|
|
|
|
|
2018-03-04 10:50:30 +01:00
|
|
|
<section class="web" v-show="page == 'web'">
|
2018-05-18 20:33:55 +02:00
|
|
|
<h1>%i18n:@sound%</h1>
|
|
|
|
<mk-switch v-model="enableSounds" text="%i18n:@enable-sounds%">
|
|
|
|
<span>%i18n:@enable-sounds-desc%</span>
|
2018-03-04 10:50:30 +01:00
|
|
|
</mk-switch>
|
2018-05-18 20:33:55 +02:00
|
|
|
<label>%i18n:@volume%</label>
|
2018-09-15 14:48:10 +02:00
|
|
|
<input type="range"
|
2018-03-06 10:06:45 +01:00
|
|
|
v-model="soundVolume"
|
|
|
|
:disabled="!enableSounds"
|
2018-09-15 14:48:10 +02:00
|
|
|
max="1"
|
|
|
|
step="0.1"
|
2018-03-06 10:06:45 +01:00
|
|
|
/>
|
2018-05-18 20:33:55 +02:00
|
|
|
<button class="ui button" @click="soundTest">%fa:volume-up% %i18n:@test%</button>
|
2018-03-04 10:50:30 +01:00
|
|
|
</section>
|
|
|
|
|
2018-03-04 01:39:25 +01:00
|
|
|
<section class="web" v-show="page == 'web'">
|
2018-05-18 20:33:55 +02:00
|
|
|
<h1>%i18n:@mobile%</h1>
|
2018-09-14 08:14:59 +02:00
|
|
|
<mk-switch v-model="disableViaMobile" text="%i18n:@disable-via-mobile%"/>
|
2018-03-04 01:39:25 +01:00
|
|
|
</section>
|
|
|
|
|
2018-03-03 01:49:47 +01:00
|
|
|
<section class="web" v-show="page == 'web'">
|
2018-05-18 20:33:55 +02:00
|
|
|
<h1>%i18n:@language%</h1>
|
2018-09-15 14:48:10 +02:00
|
|
|
<select v-model="lang" placeholder="%i18n:@pick-language%">
|
|
|
|
<optgroup label="%i18n:@recommended%">
|
|
|
|
<option value="">%i18n:@auto%</option>
|
|
|
|
</optgroup>
|
|
|
|
|
|
|
|
<optgroup label="%i18n:@specify-language%">
|
|
|
|
<option v-for="x in langs" :value="x[0]" :key="x[0]">{{ x[1] }}</option>
|
|
|
|
</optgroup>
|
|
|
|
</select>
|
2018-03-03 03:13:28 +01:00
|
|
|
<div class="none ui info">
|
2018-05-18 20:33:55 +02:00
|
|
|
<p>%fa:info-circle%%i18n:@language-desc%</p>
|
2018-03-03 03:13:28 +01:00
|
|
|
</div>
|
2018-03-02 10:46:08 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="web" v-show="page == 'web'">
|
2018-05-18 20:33:55 +02:00
|
|
|
<h1>%i18n:@cache%</h1>
|
|
|
|
<button class="ui button" @click="clean">%i18n:@clean-cache%</button>
|
2018-03-03 03:13:28 +01:00
|
|
|
<div class="none ui info warn">
|
2018-05-18 20:33:55 +02:00
|
|
|
<p>%fa:exclamation-triangle%%i18n:@cache-warn%</p>
|
2018-03-02 10:46:08 +01:00
|
|
|
</div>
|
2018-02-12 14:18:13 +01:00
|
|
|
</section>
|
|
|
|
|
2018-03-05 00:07:09 +01:00
|
|
|
<section class="notification" v-show="page == 'notification'">
|
2018-05-17 20:07:11 +02:00
|
|
|
<h1>%i18n:@notification%</h1>
|
2018-05-27 06:49:09 +02:00
|
|
|
<mk-switch v-model="$store.state.i.settings.autoWatch" @change="onChangeAutoWatch" text="%i18n:@auto-watch%">
|
2018-05-18 20:33:55 +02:00
|
|
|
<span>%i18n:@auto-watch-desc%</span>
|
2018-03-05 00:07:09 +01:00
|
|
|
</mk-switch>
|
|
|
|
</section>
|
|
|
|
|
2018-02-12 14:18:13 +01:00
|
|
|
<section class="drive" v-show="page == 'drive'">
|
2018-04-14 18:04:40 +02:00
|
|
|
<h1>%i18n:@drive%</h1>
|
2018-03-05 10:37:12 +01:00
|
|
|
<x-drive/>
|
2018-02-12 14:18:13 +01:00
|
|
|
</section>
|
|
|
|
|
2018-09-17 02:00:20 +02:00
|
|
|
<section class="hashtags" v-show="page == 'hashtags'">
|
|
|
|
<h1>%i18n:@tags%</h1>
|
|
|
|
<x-tags/>
|
|
|
|
</section>
|
|
|
|
|
2018-02-12 14:18:13 +01:00
|
|
|
<section class="mute" v-show="page == 'mute'">
|
2018-04-14 18:04:40 +02:00
|
|
|
<h1>%i18n:@mute%</h1>
|
2018-02-21 17:25:57 +01:00
|
|
|
<x-mute/>
|
2018-02-12 14:18:13 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="apps" v-show="page == 'apps'">
|
2018-05-17 20:07:11 +02:00
|
|
|
<h1>%i18n:@apps%</h1>
|
2018-03-05 10:11:07 +01:00
|
|
|
<x-apps/>
|
2018-02-12 14:18:13 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="twitter" v-show="page == 'twitter'">
|
|
|
|
<h1>Twitter</h1>
|
|
|
|
<mk-twitter-setting/>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="password" v-show="page == 'security'">
|
2018-04-14 18:04:40 +02:00
|
|
|
<h1>%i18n:@password%</h1>
|
2018-02-21 17:25:57 +01:00
|
|
|
<x-password/>
|
2018-02-12 14:18:13 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="2fa" v-show="page == 'security'">
|
2018-04-14 18:04:40 +02:00
|
|
|
<h1>%i18n:@2fa%</h1>
|
2018-02-21 17:25:57 +01:00
|
|
|
<x-2fa/>
|
2018-02-12 14:18:13 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="signin" v-show="page == 'security'">
|
2018-05-17 20:07:11 +02:00
|
|
|
<h1>%i18n:@signin%</h1>
|
2018-03-05 10:11:07 +01:00
|
|
|
<x-signins/>
|
2018-02-12 14:18:13 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="api" v-show="page == 'api'">
|
|
|
|
<h1>API</h1>
|
2018-02-22 13:15:24 +01:00
|
|
|
<x-api/>
|
2018-02-12 14:18:13 +01:00
|
|
|
</section>
|
|
|
|
|
2018-03-03 01:49:47 +01:00
|
|
|
<section class="other" v-show="page == 'other'">
|
2018-05-18 20:33:55 +02:00
|
|
|
<h1>%i18n:@about%</h1>
|
|
|
|
<p v-if="meta">%i18n:@operator%: <i><a :href="meta.maintainer.url" target="_blank">{{ meta.maintainer.name }}</a></i></p>
|
2018-03-03 01:49:47 +01:00
|
|
|
</section>
|
|
|
|
|
2018-03-02 10:46:08 +01:00
|
|
|
<section class="other" v-show="page == 'other'">
|
2018-05-18 20:33:55 +02:00
|
|
|
<h1>%i18n:@update%</h1>
|
2018-03-02 10:46:08 +01:00
|
|
|
<p>
|
2018-05-18 20:33:55 +02:00
|
|
|
<span>%i18n:@version% <i>{{ version }}</i></span>
|
2018-03-02 10:46:08 +01:00
|
|
|
<template v-if="latestVersion !== undefined">
|
|
|
|
<br>
|
2018-05-18 20:33:55 +02:00
|
|
|
<span>%i18n:@latest-version% <i>{{ latestVersion ? latestVersion : version }}</i></span>
|
2018-03-02 10:46:08 +01:00
|
|
|
</template>
|
|
|
|
</p>
|
2018-03-04 06:10:14 +01:00
|
|
|
<button class="ui button block" @click="checkForUpdate" :disabled="checkingForUpdate">
|
2018-05-18 20:33:55 +02:00
|
|
|
<template v-if="checkingForUpdate">%i18n:@update-checking%<mk-ellipsis/></template>
|
|
|
|
<template v-else>%i18n:@do-update%</template>
|
2018-03-02 10:46:08 +01:00
|
|
|
</button>
|
2018-03-04 06:10:14 +01:00
|
|
|
<details>
|
2018-05-18 20:33:55 +02:00
|
|
|
<summary>%i18n:@update-settings%</summary>
|
2018-05-19 00:22:39 +02:00
|
|
|
<mk-switch v-model="preventUpdate" text="%i18n:@prevent-update%">
|
2018-05-18 20:33:55 +02:00
|
|
|
<span>%i18n:@prevent-update-desc%</span>
|
2018-03-04 06:10:14 +01:00
|
|
|
</mk-switch>
|
|
|
|
</details>
|
2018-03-02 10:46:08 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="other" v-show="page == 'other'">
|
2018-05-18 20:33:55 +02:00
|
|
|
<h1>%i18n:@advanced-settings%</h1>
|
|
|
|
<mk-switch v-model="debug" text="%i18n:@debug-mode%">
|
|
|
|
<span>%i18n:@debug-mode-desc%</span>
|
2018-03-02 10:46:08 +01:00
|
|
|
</mk-switch>
|
2018-05-20 19:13:39 +02:00
|
|
|
<mk-switch v-model="enableExperimentalFeatures" text="%i18n:@experimental%">
|
2018-05-18 20:33:55 +02:00
|
|
|
<span>%i18n:@experimental-desc%</span>
|
2018-03-15 04:56:50 +01:00
|
|
|
</mk-switch>
|
2018-03-02 10:46:08 +01:00
|
|
|
</section>
|
2018-02-12 14:18:13 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-02-20 15:22:19 +01:00
|
|
|
import XProfile from './settings.profile.vue';
|
2018-02-21 17:25:57 +01:00
|
|
|
import XMute from './settings.mute.vue';
|
|
|
|
import XPassword from './settings.password.vue';
|
|
|
|
import X2fa from './settings.2fa.vue';
|
2018-02-22 13:15:24 +01:00
|
|
|
import XApi from './settings.api.vue';
|
2018-03-05 10:11:07 +01:00
|
|
|
import XApps from './settings.apps.vue';
|
|
|
|
import XSignins from './settings.signins.vue';
|
2018-03-05 10:37:12 +01:00
|
|
|
import XDrive from './settings.drive.vue';
|
2018-09-17 02:00:20 +02:00
|
|
|
import XTags from './settings.tags.vue';
|
2018-08-20 22:42:31 +02:00
|
|
|
import { url, langs, version } from '../../../config';
|
2018-03-02 10:46:08 +01:00
|
|
|
import checkForUpdate from '../../../common/scripts/check-for-update';
|
2018-02-19 08:58:37 +01:00
|
|
|
|
2018-02-12 14:18:13 +01:00
|
|
|
export default Vue.extend({
|
2018-02-19 08:58:37 +01:00
|
|
|
components: {
|
2018-02-21 17:25:57 +01:00
|
|
|
XProfile,
|
|
|
|
XMute,
|
|
|
|
XPassword,
|
2018-02-22 13:15:24 +01:00
|
|
|
X2fa,
|
2018-03-05 10:11:07 +01:00
|
|
|
XApi,
|
|
|
|
XApps,
|
2018-03-05 10:37:12 +01:00
|
|
|
XSignins,
|
2018-09-17 02:00:20 +02:00
|
|
|
XDrive,
|
|
|
|
XTags
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
initialPage: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
}
|
2018-02-19 08:58:37 +01:00
|
|
|
},
|
2018-02-12 14:18:13 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2018-09-17 02:00:20 +02:00
|
|
|
page: this.initialPage || 'profile',
|
2018-03-02 23:32:18 +01:00
|
|
|
meta: null,
|
2018-03-02 10:46:08 +01:00
|
|
|
version,
|
2018-05-20 19:13:39 +02:00
|
|
|
langs,
|
2018-03-02 10:46:08 +01:00
|
|
|
latestVersion: undefined,
|
2018-05-23 22:28:46 +02:00
|
|
|
checkingForUpdate: false
|
2018-02-12 14:18:13 +01:00
|
|
|
};
|
2018-02-22 18:06:35 +01:00
|
|
|
},
|
2018-03-15 11:53:46 +01:00
|
|
|
computed: {
|
2018-09-16 14:40:48 +02:00
|
|
|
reduceMotion: {
|
|
|
|
get() { return this.$store.state.device.reduceMotion; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'reduceMotion', value }); }
|
2018-09-15 20:46:53 +02:00
|
|
|
},
|
|
|
|
|
2018-05-20 19:13:39 +02:00
|
|
|
apiViaStream: {
|
|
|
|
get() { return this.$store.state.device.apiViaStream; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'apiViaStream', value }); }
|
2018-04-22 10:28:21 +02:00
|
|
|
},
|
2018-05-20 19:13:39 +02:00
|
|
|
|
|
|
|
autoPopout: {
|
|
|
|
get() { return this.$store.state.device.autoPopout; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'autoPopout', value }); }
|
2018-03-04 10:50:30 +01:00
|
|
|
},
|
2018-05-20 19:13:39 +02:00
|
|
|
|
2018-05-23 22:28:46 +02:00
|
|
|
darkmode: {
|
|
|
|
get() { return this.$store.state.device.darkmode; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'darkmode', value }); }
|
|
|
|
},
|
|
|
|
|
2018-05-20 19:13:39 +02:00
|
|
|
enableSounds: {
|
|
|
|
get() { return this.$store.state.device.enableSounds; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'enableSounds', value }); }
|
2018-03-06 10:06:45 +01:00
|
|
|
},
|
2018-05-20 19:13:39 +02:00
|
|
|
|
|
|
|
soundVolume: {
|
|
|
|
get() { return this.$store.state.device.soundVolume; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'soundVolume', value }); }
|
2018-03-03 01:49:47 +01:00
|
|
|
},
|
2018-05-20 19:13:39 +02:00
|
|
|
|
|
|
|
lang: {
|
|
|
|
get() { return this.$store.state.device.lang; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'lang', value }); }
|
2018-03-04 06:10:14 +01:00
|
|
|
},
|
2018-05-20 19:13:39 +02:00
|
|
|
|
|
|
|
preventUpdate: {
|
|
|
|
get() { return this.$store.state.device.preventUpdate; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'preventUpdate', value }); }
|
2018-03-02 23:32:18 +01:00
|
|
|
},
|
2018-05-20 19:13:39 +02:00
|
|
|
|
|
|
|
debug: {
|
|
|
|
get() { return this.$store.state.device.debug; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'debug', value }); }
|
2018-03-15 04:56:50 +01:00
|
|
|
},
|
2018-05-20 19:13:39 +02:00
|
|
|
|
|
|
|
enableExperimentalFeatures: {
|
|
|
|
get() { return this.$store.state.device.enableExperimentalFeatures; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'enableExperimentalFeatures', value }); }
|
2018-09-14 08:14:59 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
alwaysShowNsfw: {
|
|
|
|
get() { return this.$store.state.device.alwaysShowNsfw; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'alwaysShowNsfw', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
fetchOnScroll: {
|
|
|
|
get() { return this.$store.state.settings.fetchOnScroll; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'fetchOnScroll', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
rememberNoteVisibility: {
|
|
|
|
get() { return this.$store.state.settings.rememberNoteVisibility; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'rememberNoteVisibility', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
defaultNoteVisibility: {
|
|
|
|
get() { return this.$store.state.settings.defaultNoteVisibility; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'defaultNoteVisibility', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
showReplyTarget: {
|
|
|
|
get() { return this.$store.state.settings.showReplyTarget; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'showReplyTarget', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
showMyRenotes: {
|
|
|
|
get() { return this.$store.state.settings.showMyRenotes; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'showMyRenotes', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
showRenotedMyNotes: {
|
|
|
|
get() { return this.$store.state.settings.showRenotedMyNotes; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'showRenotedMyNotes', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
showLocalRenotes: {
|
|
|
|
get() { return this.$store.state.settings.showLocalRenotes; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'showLocalRenotes', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
showPostFormOnTopOfTl: {
|
|
|
|
get() { return this.$store.state.settings.showPostFormOnTopOfTl; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'showPostFormOnTopOfTl', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
suggestRecentHashtags: {
|
|
|
|
get() { return this.$store.state.settings.suggestRecentHashtags; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'suggestRecentHashtags', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
showClockOnHeader: {
|
|
|
|
get() { return this.$store.state.settings.showClockOnHeader; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'showClockOnHeader', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
showMaps: {
|
|
|
|
get() { return this.$store.state.settings.showMaps; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'showMaps', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
circleIcons: {
|
|
|
|
get() { return this.$store.state.settings.circleIcons; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'circleIcons', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
contrastedAcct: {
|
|
|
|
get() { return this.$store.state.settings.contrastedAcct; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'contrastedAcct', value }); }
|
|
|
|
},
|
|
|
|
|
2018-09-14 13:33:27 +02:00
|
|
|
showFullAcct: {
|
|
|
|
get() { return this.$store.state.settings.showFullAcct; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'showFullAcct', value }); }
|
|
|
|
},
|
|
|
|
|
2018-09-14 08:14:59 +02:00
|
|
|
iLikeSushi: {
|
|
|
|
get() { return this.$store.state.settings.iLikeSushi; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'iLikeSushi', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
games_reversi_showBoardLabels: {
|
|
|
|
get() { return this.$store.state.settings.games.reversi.showBoardLabels; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'games.reversi.showBoardLabels', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
games_reversi_useContrastStones: {
|
|
|
|
get() { return this.$store.state.settings.games.reversi.useContrastStones; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'games.reversi.useContrastStones', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
disableAnimatedMfm: {
|
|
|
|
get() { return this.$store.state.settings.disableAnimatedMfm; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'disableAnimatedMfm', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
disableViaMobile: {
|
|
|
|
get() { return this.$store.state.settings.disableViaMobile; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'disableViaMobile', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
gradientWindowHeader: {
|
|
|
|
get() { return this.$store.state.settings.gradientWindowHeader; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'gradientWindowHeader', value }); }
|
|
|
|
},
|
2018-05-20 19:13:39 +02:00
|
|
|
},
|
2018-02-22 18:06:35 +01:00
|
|
|
created() {
|
2018-03-03 01:49:47 +01:00
|
|
|
(this as any).os.getMeta().then(meta => {
|
|
|
|
this.meta = meta;
|
|
|
|
});
|
2018-02-22 18:06:35 +01:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
customizeHome() {
|
|
|
|
this.$router.push('/i/customize-home');
|
|
|
|
this.$emit('done');
|
|
|
|
},
|
2018-06-06 22:14:37 +02:00
|
|
|
updateWallpaper() {
|
|
|
|
(this as any).apis.chooseDriveFile({
|
|
|
|
multiple: false
|
|
|
|
}).then(file => {
|
|
|
|
(this as any).api('i/update', {
|
|
|
|
wallpaperId: file.id
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2018-06-06 23:15:57 +02:00
|
|
|
deleteWallpaper() {
|
|
|
|
(this as any).api('i/update', {
|
|
|
|
wallpaperId: null
|
|
|
|
});
|
|
|
|
},
|
2018-03-05 00:07:09 +01:00
|
|
|
onChangeAutoWatch(v) {
|
|
|
|
(this as any).api('i/update', {
|
2018-03-29 07:48:47 +02:00
|
|
|
autoWatch: v
|
2018-03-05 00:07:09 +01:00
|
|
|
});
|
|
|
|
},
|
2018-03-02 10:46:08 +01:00
|
|
|
checkForUpdate() {
|
|
|
|
this.checkingForUpdate = true;
|
|
|
|
checkForUpdate((this as any).os, true, true).then(newer => {
|
|
|
|
this.checkingForUpdate = false;
|
|
|
|
this.latestVersion = newer;
|
|
|
|
if (newer == null) {
|
|
|
|
(this as any).apis.dialog({
|
2018-05-20 13:26:38 +02:00
|
|
|
title: '%i18n:@no-updates%',
|
|
|
|
text: '%i18n:@no-updates-desc%'
|
2018-03-02 10:46:08 +01:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
(this as any).apis.dialog({
|
2018-05-20 13:26:38 +02:00
|
|
|
title: '%i18n:@update-available%',
|
|
|
|
text: '%i18n:@update-available-desc%'
|
2018-03-02 10:46:08 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
clean() {
|
|
|
|
localStorage.clear();
|
|
|
|
(this as any).apis.dialog({
|
2018-05-20 13:26:38 +02:00
|
|
|
title: '%i18n:@cache-cleared%',
|
2018-07-08 13:15:10 +02:00
|
|
|
text: '%i18n:@cache-cleared-desc%'
|
2018-03-02 10:46:08 +01:00
|
|
|
});
|
2018-03-06 10:06:45 +01:00
|
|
|
},
|
|
|
|
soundTest() {
|
|
|
|
const sound = new Audio(`${url}/assets/message.mp3`);
|
2018-05-20 19:13:39 +02:00
|
|
|
sound.volume = this.$store.state.device.soundVolume;
|
2018-03-06 10:06:45 +01:00
|
|
|
sound.play();
|
2018-02-22 18:06:35 +01:00
|
|
|
}
|
2018-02-12 14:18:13 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-03-03 05:47:55 +01:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-04-19 21:51:04 +02:00
|
|
|
root(isDark)
|
2018-02-12 14:18:13 +01:00
|
|
|
display flex
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
|
|
|
|
> .nav
|
|
|
|
flex 0 0 200px
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
padding 16px 0 0 0
|
|
|
|
overflow auto
|
2018-04-19 21:51:04 +02:00
|
|
|
border-right solid 1px isDark ? #1c2023 : #ddd
|
2018-02-12 14:18:13 +01:00
|
|
|
|
|
|
|
> p
|
|
|
|
display block
|
|
|
|
padding 10px 16px
|
|
|
|
margin 0
|
2018-04-19 21:51:04 +02:00
|
|
|
color isDark ? #9aa2a7 : #666
|
2018-02-12 14:18:13 +01:00
|
|
|
cursor pointer
|
|
|
|
user-select none
|
|
|
|
transition margin-left 0.2s ease
|
|
|
|
|
|
|
|
> [data-fa]
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
&:hover
|
2018-04-19 21:51:04 +02:00
|
|
|
color isDark ? #fff : #555
|
2018-02-12 14:18:13 +01:00
|
|
|
|
|
|
|
&.active
|
|
|
|
margin-left 8px
|
|
|
|
color $theme-color !important
|
|
|
|
|
|
|
|
> .pages
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
flex auto
|
|
|
|
overflow auto
|
|
|
|
|
|
|
|
> section
|
|
|
|
margin 32px
|
2018-04-19 21:51:04 +02:00
|
|
|
color isDark ? #c4ccd2 : #4a535a
|
2018-02-12 14:18:13 +01:00
|
|
|
|
|
|
|
> h1
|
|
|
|
margin 0 0 1em 0
|
|
|
|
padding 0 0 8px 0
|
|
|
|
font-size 1em
|
2018-04-19 21:51:04 +02:00
|
|
|
color isDark ? #e3e7ea : #555
|
|
|
|
border-bottom solid 1px isDark ? #1c2023 : #eee
|
2018-02-12 14:18:13 +01:00
|
|
|
|
2018-03-01 22:26:31 +01:00
|
|
|
&, >>> *
|
2018-03-04 06:10:14 +01:00
|
|
|
.ui.button.block
|
|
|
|
margin 16px 0
|
|
|
|
|
2018-03-01 22:26:31 +01:00
|
|
|
> section
|
|
|
|
margin 32px 0
|
|
|
|
|
|
|
|
> h2
|
|
|
|
margin 0 0 1em 0
|
|
|
|
padding 0 0 8px 0
|
|
|
|
font-size 1em
|
2018-04-20 00:45:37 +02:00
|
|
|
color isDark ? #e3e7ea : #555
|
|
|
|
border-bottom solid 1px isDark ? #1c2023 : #eee
|
2018-03-01 22:26:31 +01:00
|
|
|
|
2018-02-22 18:06:35 +01:00
|
|
|
> .web
|
2018-03-02 10:46:08 +01:00
|
|
|
> .div
|
2018-04-19 21:51:04 +02:00
|
|
|
border-bottom solid 1px isDark ? #1c2023 : #eee
|
2018-04-19 20:41:24 +02:00
|
|
|
margin 16px 0
|
2018-02-22 18:06:35 +01:00
|
|
|
|
2018-04-19 21:51:04 +02:00
|
|
|
.mk-settings[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mk-settings:not([data-darkmode])
|
|
|
|
root(false)
|
|
|
|
|
2018-02-12 14:18:13 +01:00
|
|
|
</style>
|