Sharkey/src/client/app/desktop/views/components/settings.vue

479 lines
14 KiB
Vue
Raw Normal View History

2018-02-12 15:18:13 +02:00
<template>
<div class="mk-settings">
<div class="nav">
2018-04-14 19:04:40 +03:00
<p :class="{ active: page == 'profile' }" @mousedown="page = 'profile'">%fa:user .fw%%i18n:@profile%</p>
2018-02-12 15:18:13 +02:00
<p :class="{ active: page == 'web' }" @mousedown="page = 'web'">%fa:desktop .fw%Web</p>
2018-04-15 01:51:56 +03:00
<p :class="{ active: page == 'notification' }" @mousedown="page = 'notification'">%fa:R bell .fw%%i18n:@notification%</p>
2018-04-14 19:04:40 +03:00
<p :class="{ active: page == 'drive' }" @mousedown="page = 'drive'">%fa:cloud .fw%%i18n:@drive%</p>
<p :class="{ active: page == 'mute' }" @mousedown="page = 'mute'">%fa:ban .fw%%i18n:@mute%</p>
2018-04-15 01:51:56 +03:00
<p :class="{ active: page == 'apps' }" @mousedown="page = 'apps'">%fa:puzzle-piece .fw%%i18n:@apps%</p>
2018-02-12 15:18:13 +02:00
<p :class="{ active: page == 'twitter' }" @mousedown="page = 'twitter'">%fa:B twitter .fw%Twitter</p>
2018-04-14 19:04:40 +03:00
<p :class="{ active: page == 'security' }" @mousedown="page = 'security'">%fa:unlock-alt .fw%%i18n:@security%</p>
2018-02-12 15:18:13 +02:00
<p :class="{ active: page == 'api' }" @mousedown="page = 'api'">%fa:key .fw%API</p>
2018-04-14 19:04:40 +03:00
<p :class="{ active: page == 'other' }" @mousedown="page = 'other'">%fa:cogs .fw%%i18n:@other%</p>
2018-02-12 15:18:13 +02:00
</div>
<div class="pages">
<section class="profile" v-show="page == 'profile'">
2018-04-14 19:04:40 +03:00
<h1>%i18n:@profile%</h1>
2018-02-20 16:22:19 +02:00
<x-profile/>
2018-02-12 15:18:13 +02:00
</section>
2018-03-05 13:09:26 +02:00
<section class="web" v-show="page == 'web'">
<h1>%i18n:@behaviour%</h1>
<mk-switch v-model="clientSettings.fetchOnScroll" @change="onChangeFetchOnScroll" text="%i18n:@fetch-on-scroll%>
<span>%i18n:@fetch-on-scroll-desc%</span>
2018-03-05 13:09:26 +02:00
</mk-switch>
<mk-switch v-model="autoPopout" text="%i18n:@auto-popout%">
<span>%i18n:@auto-popout-desc%</span>
2018-03-14 09:12:36 +02:00
</mk-switch>
2018-04-12 00:18:55 +03:00
<details>
<summary>%i18n:@advanced%</summary>
<mk-switch v-model="apiViaStream" text="%i18n:@api-via-stream%">
<span>%i18n:@api-via-stream-desc%</span>
2018-04-12 00:18:55 +03:00
</mk-switch>
</details>
2018-03-05 13:09:26 +02:00
</section>
2018-02-12 15:18:13 +02:00
<section class="web" v-show="page == 'web'">
<h1>%i18n:@display%</h1>
2018-03-02 11:46:08 +02:00
<div class="div">
<button class="ui button" @click="customizeHome" style="margin-bottom: 16px">%i18n:@customize%</button>
2018-04-19 21:41:24 +03:00
</div>
<div class="div">
<mk-switch v-model="darkmode" text="%i18n:@dark-mode%"/>
<mk-switch v-model="clientSettings.circleIcons" @change="onChangeCircleIcons" text="%i18n:@circle-icons%"/>
<mk-switch v-model="clientSettings.gradientWindowHeader" @change="onChangeGradientWindowHeader" text="%i18n:@gradient-window-header%"/>
2018-02-22 19:06:35 +02:00
</div>
<mk-switch v-model="clientSettings.showPostFormOnTopOfTl" @change="onChangeShowPostFormOnTopOfTl" text="%i18n:@post-form-on-timeline%"/>
<mk-switch v-model="clientSettings.showReplyTarget" @change="onChangeShowReplyTarget" text="%i18n:@show-reply-target%"/>
<mk-switch v-model="clientSettings.showMyRenotes" @change="onChangeShowMyRenotes" text="%i18n:@show-my-renotes%"/>
<mk-switch v-model="clientSettings.showRenotedMyNotes" @change="onChangeShowRenotedMyNotes" text="%i18n:@show-renoted-my-notes%"/>
<mk-switch v-model="clientSettings.showMaps" @change="onChangeShowMaps" text="%i18n:@show-maps%">
<span>%i18n:@show-maps-desc%</span>
2018-03-06 01:35:25 +02:00
</mk-switch>
2018-03-03 02:49:47 +02:00
</section>
2018-03-04 11:50:30 +02:00
<section class="web" v-show="page == 'web'">
<h1>%i18n:@sound%</h1>
<mk-switch v-model="enableSounds" text="%i18n:@enable-sounds%">
<span>%i18n:@enable-sounds-desc%</span>
2018-03-04 11:50:30 +02:00
</mk-switch>
<label>%i18n:@volume%</label>
2018-03-06 11:06:45 +02:00
<el-slider
v-model="soundVolume"
:show-input="true"
:format-tooltip="v => `${v}%`"
:disabled="!enableSounds"
/>
<button class="ui button" @click="soundTest">%fa:volume-up% %i18n:@test%</button>
2018-03-04 11:50:30 +02:00
</section>
2018-03-04 02:39:25 +02:00
<section class="web" v-show="page == 'web'">
<h1>%i18n:@mobile%</h1>
<mk-switch v-model="clientSettings.disableViaMobile" @change="onChangeDisableViaMobile" text="%i18n:@disable-via-mobile%"/>
2018-03-04 02:39:25 +02:00
</section>
2018-03-03 02:49:47 +02:00
<section class="web" v-show="page == 'web'">
<h1>%i18n:@language%</h1>
<el-select v-model="lang" placeholder="%i18n:@pick-language%">
<el-option-group label="%i18n:@recommended%">
<el-option label="%i18n:@auto%" value=""/>
2018-03-03 02:49:47 +02:00
</el-option-group>
<el-option-group label="%i18n:@specify-language%">
<el-option label="日本語" value="ja"/>
<el-option label="English" value="en"/>
<el-option label="Français" value="fr"/>
<el-option label="Polski" value="pl"/>
<el-option label="Deutsch" value="de"/>
2018-03-03 02:49:47 +02:00
</el-option-group>
</el-select>
2018-03-03 04:13:28 +02:00
<div class="none ui info">
<p>%fa:info-circle%%i18n:@language-desc%</p>
2018-03-03 04:13:28 +02:00
</div>
2018-03-02 11:46:08 +02:00
</section>
<section class="web" v-show="page == 'web'">
<h1>%i18n:@cache%</h1>
<button class="ui button" @click="clean">%i18n:@clean-cache%</button>
2018-03-03 04:13:28 +02:00
<div class="none ui info warn">
<p>%fa:exclamation-triangle%%i18n:@cache-warn%</p>
2018-03-02 11:46:08 +02:00
</div>
2018-02-12 15:18:13 +02:00
</section>
2018-03-05 01:07:09 +02:00
<section class="notification" v-show="page == 'notification'">
<h1>%i18n:@notification%</h1>
<mk-switch v-model="os.i.settings.autoWatch" @change="onChangeAutoWatch" text="%i18n:@auto-watch%">
<span>%i18n:@auto-watch-desc%</span>
2018-03-05 01:07:09 +02:00
</mk-switch>
</section>
2018-02-12 15:18:13 +02:00
<section class="drive" v-show="page == 'drive'">
2018-04-14 19:04:40 +03:00
<h1>%i18n:@drive%</h1>
2018-03-05 11:37:12 +02:00
<x-drive/>
2018-02-12 15:18:13 +02:00
</section>
<section class="mute" v-show="page == 'mute'">
2018-04-14 19:04:40 +03:00
<h1>%i18n:@mute%</h1>
2018-02-21 18:25:57 +02:00
<x-mute/>
2018-02-12 15:18:13 +02:00
</section>
<section class="apps" v-show="page == 'apps'">
<h1>%i18n:@apps%</h1>
2018-03-05 11:11:07 +02:00
<x-apps/>
2018-02-12 15:18:13 +02: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 19:04:40 +03:00
<h1>%i18n:@password%</h1>
2018-02-21 18:25:57 +02:00
<x-password/>
2018-02-12 15:18:13 +02:00
</section>
<section class="2fa" v-show="page == 'security'">
2018-04-14 19:04:40 +03:00
<h1>%i18n:@2fa%</h1>
2018-02-21 18:25:57 +02:00
<x-2fa/>
2018-02-12 15:18:13 +02:00
</section>
<section class="signin" v-show="page == 'security'">
<h1>%i18n:@signin%</h1>
2018-03-05 11:11:07 +02:00
<x-signins/>
2018-02-12 15:18:13 +02:00
</section>
<section class="api" v-show="page == 'api'">
<h1>API</h1>
2018-02-22 14:15:24 +02:00
<x-api/>
2018-02-12 15:18:13 +02:00
</section>
2018-03-03 02:49:47 +02:00
<section class="other" v-show="page == 'other'">
<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 02:49:47 +02:00
</section>
2018-03-02 11:46:08 +02:00
<section class="other" v-show="page == 'other'">
<h1>%i18n:@update%</h1>
2018-03-02 11:46:08 +02:00
<p>
<span>%i18n:@version% <i>{{ version }}</i></span>
2018-03-02 11:46:08 +02:00
<template v-if="latestVersion !== undefined">
<br>
<span>%i18n:@latest-version% <i>{{ latestVersion ? latestVersion : version }}</i></span>
2018-03-02 11:46:08 +02:00
</template>
</p>
2018-03-04 07:10:14 +02:00
<button class="ui button block" @click="checkForUpdate" :disabled="checkingForUpdate">
<template v-if="checkingForUpdate">%i18n:@update-checking%<mk-ellipsis/></template>
<template v-else>%i18n:@do-update%</template>
2018-03-02 11:46:08 +02:00
</button>
2018-03-04 07:10:14 +02:00
<details>
<summary>%i18n:@update-settings%</summary>
<mk-switch v-model="preventUpdate" text="%i18n:@prevent-update%>
<span>%i18n:@prevent-update-desc%</span>
2018-03-04 07:10:14 +02:00
</mk-switch>
</details>
2018-03-02 11:46:08 +02:00
</section>
<section class="other" v-show="page == 'other'">
<h1>%i18n:@advanced-settings%</h1>
<mk-switch v-model="debug" text="%i18n:@debug-mode%">
<span>%i18n:@debug-mode-desc%</span>
2018-03-02 11:46:08 +02:00
</mk-switch>
2018-03-15 06:11:31 +02:00
<template v-if="debug">
<mk-switch v-model="useRawScript" text="%i18n:@use-raw-script%">
<span>%i18n:@use-raw-script-desc%</span>
2018-03-15 06:11:31 +02:00
</mk-switch>
<div class="none ui info">
<p>%fa:info-circle%%i18n:@source-info%</p>
2018-03-15 06:11:31 +02:00
</div>
</template>
<mk-switch v-model="enableExperimental" text="%i18n:@experimental%">
<span>%i18n:@experimental-desc%</span>
2018-03-15 05:56:50 +02:00
</mk-switch>
2018-03-15 12:53:46 +02:00
<details v-if="debug">
<summary>%i18n:@tools%</summary>
<button class="ui button block" @click="taskmngr">%i18n:@task-manager%</button>
2018-03-15 12:53:46 +02:00
</details>
2018-03-02 11:46:08 +02:00
</section>
2018-02-12 15:18:13 +02:00
<section class="other" v-show="page == 'other'">
2018-04-14 19:04:40 +03:00
<h1>%i18n:@license%</h1>
2018-03-01 23:26:31 +02:00
<div v-html="license"></div>
<a :href="licenseUrl" target="_blank">%i18n:@third-parties%</a>
2018-02-12 15:18:13 +02:00
</section>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-02-20 16:22:19 +02:00
import XProfile from './settings.profile.vue';
2018-02-21 18:25:57 +02:00
import XMute from './settings.mute.vue';
import XPassword from './settings.password.vue';
import X2fa from './settings.2fa.vue';
2018-02-22 14:15:24 +02:00
import XApi from './settings.api.vue';
2018-03-05 11:11:07 +02:00
import XApps from './settings.apps.vue';
import XSignins from './settings.signins.vue';
2018-03-05 11:37:12 +02:00
import XDrive from './settings.drive.vue';
2018-03-06 11:06:45 +02:00
import { url, docsUrl, license, lang, version } from '../../../config';
2018-03-02 11:46:08 +02:00
import checkForUpdate from '../../../common/scripts/check-for-update';
2018-03-15 12:53:46 +02:00
import MkTaskManager from './taskmanager.vue';
2018-02-19 09:58:37 +02:00
2018-02-12 15:18:13 +02:00
export default Vue.extend({
2018-02-19 09:58:37 +02:00
components: {
2018-02-21 18:25:57 +02:00
XProfile,
XMute,
XPassword,
2018-02-22 14:15:24 +02:00
X2fa,
2018-03-05 11:11:07 +02:00
XApi,
XApps,
2018-03-05 11:37:12 +02:00
XSignins,
XDrive
2018-02-19 09:58:37 +02:00
},
2018-02-12 15:18:13 +02:00
data() {
return {
2018-02-22 19:06:35 +02:00
page: 'profile',
2018-03-03 00:32:18 +02:00
meta: null,
2018-03-01 23:26:31 +02:00
license,
2018-03-02 11:46:08 +02:00
version,
latestVersion: undefined,
checkingForUpdate: false,
darkmode: localStorage.getItem('darkmode') == 'true',
2018-03-04 11:50:30 +02:00
enableSounds: localStorage.getItem('enableSounds') == 'true',
2018-03-14 09:12:36 +02:00
autoPopout: localStorage.getItem('autoPopout') == 'true',
2018-04-12 00:18:55 +03:00
apiViaStream: localStorage.getItem('apiViaStream') ? localStorage.getItem('apiViaStream') == 'true' : true,
soundVolume: localStorage.getItem('soundVolume') ? parseInt(localStorage.getItem('soundVolume'), 10) : 50,
2018-03-03 02:49:47 +02:00
lang: localStorage.getItem('lang') || '',
2018-03-04 07:10:14 +02:00
preventUpdate: localStorage.getItem('preventUpdate') == 'true',
2018-03-03 00:32:18 +02:00
debug: localStorage.getItem('debug') == 'true',
2018-03-15 05:56:50 +02:00
useRawScript: localStorage.getItem('useRawScript') == 'true',
2018-03-03 00:32:18 +02:00
enableExperimental: localStorage.getItem('enableExperimental') == 'true'
2018-02-12 15:18:13 +02:00
};
2018-02-22 19:06:35 +02:00
},
2018-03-15 12:53:46 +02:00
computed: {
licenseUrl(): string {
return `${docsUrl}/${lang}/license`;
}
},
2018-03-02 11:46:08 +02:00
watch: {
2018-03-14 09:12:36 +02:00
autoPopout() {
localStorage.setItem('autoPopout', this.autoPopout ? 'true' : 'false');
},
2018-04-12 00:18:55 +03:00
apiViaStream() {
localStorage.setItem('apiViaStream', this.apiViaStream ? 'true' : 'false');
},
darkmode() {
(this as any)._updateDarkmode_(this.darkmode);
},
2018-03-04 11:50:30 +02:00
enableSounds() {
localStorage.setItem('enableSounds', this.enableSounds ? 'true' : 'false');
},
2018-03-06 11:06:45 +02:00
soundVolume() {
localStorage.setItem('soundVolume', this.soundVolume.toString());
},
2018-03-03 02:49:47 +02:00
lang() {
localStorage.setItem('lang', this.lang);
},
2018-03-04 07:10:14 +02:00
preventUpdate() {
localStorage.setItem('preventUpdate', this.preventUpdate ? 'true' : 'false');
},
2018-03-02 11:46:08 +02:00
debug() {
localStorage.setItem('debug', this.debug ? 'true' : 'false');
2018-03-03 00:32:18 +02:00
},
2018-03-15 05:56:50 +02:00
useRawScript() {
localStorage.setItem('useRawScript', this.useRawScript ? 'true' : 'false');
},
2018-03-03 00:32:18 +02:00
enableExperimental() {
localStorage.setItem('enableExperimental', this.enableExperimental ? 'true' : 'false');
2018-03-02 11:46:08 +02:00
}
},
2018-02-22 19:06:35 +02:00
created() {
2018-03-03 02:49:47 +02:00
(this as any).os.getMeta().then(meta => {
this.meta = meta;
});
2018-02-22 19:06:35 +02:00
},
methods: {
2018-03-15 12:53:46 +02:00
taskmngr() {
(this as any).os.new(MkTaskManager);
},
2018-02-22 19:06:35 +02:00
customizeHome() {
this.$router.push('/i/customize-home');
this.$emit('done');
},
2018-03-05 13:09:26 +02:00
onChangeFetchOnScroll(v) {
2018-04-29 11:17:15 +03:00
this.$store.dispatch('settings/set', {
key: 'fetchOnScroll',
2018-03-05 13:09:26 +02:00
value: v
});
},
2018-03-05 01:07:09 +02:00
onChangeAutoWatch(v) {
(this as any).api('i/update', {
2018-03-29 08:48:47 +03:00
autoWatch: v
2018-03-05 01:07:09 +02:00
});
},
2018-04-19 21:41:24 +03:00
onChangeDark(v) {
2018-04-29 11:17:15 +03:00
this.$store.dispatch('settings/set', {
key: 'dark',
2018-04-19 21:41:24 +03:00
value: v
});
},
2018-03-03 02:49:47 +02:00
onChangeShowPostFormOnTopOfTl(v) {
2018-04-29 11:17:15 +03:00
this.$store.dispatch('settings/set', {
key: 'showPostFormOnTopOfTl',
2018-03-03 02:49:47 +02:00
value: v
2018-02-22 19:06:35 +02:00
});
2018-03-02 11:46:08 +02:00
},
onChangeShowReplyTarget(v) {
2018-04-29 11:17:15 +03:00
this.$store.dispatch('settings/set', {
key: 'showReplyTarget',
value: v
});
},
2018-04-21 05:42:38 +03:00
onChangeShowMyRenotes(v) {
2018-04-29 11:17:15 +03:00
this.$store.dispatch('settings/set', {
key: 'showMyRenotes',
2018-04-21 05:42:38 +03:00
value: v
});
},
onChangeShowRenotedMyNotes(v) {
2018-04-29 11:17:15 +03:00
this.$store.dispatch('settings/set', {
key: 'showRenotedMyNotes',
2018-04-21 05:42:38 +03:00
value: v
});
},
2018-03-06 01:35:25 +02:00
onChangeShowMaps(v) {
2018-04-29 11:17:15 +03:00
this.$store.dispatch('settings/set', {
key: 'showMaps',
value: v
});
},
onChangeCircleIcons(v) {
this.$store.dispatch('settings/set', {
key: 'circleIcons',
2018-03-06 01:35:25 +02:00
value: v
});
},
2018-03-06 07:33:01 +02:00
onChangeGradientWindowHeader(v) {
2018-04-29 11:17:15 +03:00
this.$store.dispatch('settings/set', {
key: 'gradientWindowHeader',
2018-03-06 07:33:01 +02:00
value: v
});
},
2018-03-04 02:39:25 +02:00
onChangeDisableViaMobile(v) {
2018-04-29 11:17:15 +03:00
this.$store.dispatch('settings/set', {
key: 'disableViaMobile',
2018-03-04 02:39:25 +02:00
value: v
});
},
2018-03-02 11:46:08 +02: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({
title: '%i18n:@no-updates%',
text: '%i18n:@no-updates-desc%'
2018-03-02 11:46:08 +02:00
});
} else {
(this as any).apis.dialog({
title: '%i18n:@update-available%',
text: '%i18n:@update-available-desc%'
2018-03-02 11:46:08 +02:00
});
}
});
},
clean() {
localStorage.clear();
(this as any).apis.dialog({
title: '%i18n:@cache-cleared%',
text: '%i18n:@caache-cleared-desc%'
2018-03-02 11:46:08 +02:00
});
2018-03-06 11:06:45 +02:00
},
soundTest() {
const sound = new Audio(`${url}/assets/message.mp3`);
sound.volume = localStorage.getItem('soundVolume') ? parseInt(localStorage.getItem('soundVolume'), 10) / 100 : 0.5;
2018-03-06 11:06:45 +02:00
sound.play();
2018-02-22 19:06:35 +02:00
}
2018-02-12 15:18:13 +02:00
}
});
</script>
<style lang="stylus" scoped>
2018-03-03 06:47:55 +02:00
@import '~const.styl'
2018-04-19 22:51:04 +03:00
root(isDark)
2018-02-12 15:18:13 +02: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 22:51:04 +03:00
border-right solid 1px isDark ? #1c2023 : #ddd
2018-02-12 15:18:13 +02:00
> p
display block
padding 10px 16px
margin 0
2018-04-19 22:51:04 +03:00
color isDark ? #9aa2a7 : #666
2018-02-12 15:18:13 +02:00
cursor pointer
user-select none
transition margin-left 0.2s ease
> [data-fa]
margin-right 4px
&:hover
2018-04-19 22:51:04 +03:00
color isDark ? #fff : #555
2018-02-12 15:18:13 +02:00
&.active
margin-left 8px
color $theme-color !important
> .pages
width 100%
height 100%
flex auto
overflow auto
> section
margin 32px
2018-04-19 22:51:04 +03:00
color isDark ? #c4ccd2 : #4a535a
2018-02-12 15:18:13 +02:00
> h1
margin 0 0 1em 0
padding 0 0 8px 0
font-size 1em
2018-04-19 22:51:04 +03:00
color isDark ? #e3e7ea : #555
border-bottom solid 1px isDark ? #1c2023 : #eee
2018-02-12 15:18:13 +02:00
2018-03-01 23:26:31 +02:00
&, >>> *
2018-03-04 07:10:14 +02:00
.ui.button.block
margin 16px 0
2018-03-01 23:26:31 +02:00
> section
margin 32px 0
> h2
margin 0 0 1em 0
padding 0 0 8px 0
font-size 1em
2018-04-20 01:45:37 +03:00
color isDark ? #e3e7ea : #555
border-bottom solid 1px isDark ? #1c2023 : #eee
2018-03-01 23:26:31 +02:00
2018-02-22 19:06:35 +02:00
> .web
2018-03-02 11:46:08 +02:00
> .div
2018-04-19 22:51:04 +03:00
border-bottom solid 1px isDark ? #1c2023 : #eee
2018-04-19 21:41:24 +03:00
margin 16px 0
2018-02-22 19:06:35 +02:00
2018-04-19 22:51:04 +03:00
.mk-settings[data-darkmode]
root(true)
.mk-settings:not([data-darkmode])
root(false)
2018-02-12 15:18:13 +02:00
</style>