Sharkey/src/client/app/mobile/views/pages/settings.vue

370 lines
12 KiB
Vue
Raw Normal View History

2018-02-20 06:02:53 +02:00
<template>
<mk-ui>
2018-09-19 08:18:34 +03:00
<span slot="header"><span style="margin-right:4px;">%fa:cog%</span>%i18n:@settings%</span>
2018-09-28 08:26:20 +03:00
<main>
2018-09-01 17:12:51 +03:00
<div class="signin-as" v-html="'%i18n:@signed-in-as%'.replace('{}', `<b>${name}</b>`)"></div>
2018-06-15 01:56:56 +03:00
2018-05-19 14:31:13 +03:00
<div>
<mk-profile-editor/>
2018-05-19 14:31:13 +03:00
2018-06-14 10:48:49 +03:00
<ui-card>
2018-10-13 07:22:14 +03:00
<div slot="title">%fa:palette% %i18n:@theme%</div>
<section>
<mk-theme/>
</section>
</ui-card>
<ui-card>
<div slot="title">%fa:poll-h% %i18n:@design%</div>
2018-05-19 14:31:13 +03:00
2018-09-05 07:47:26 +03:00
<section>
<ui-switch v-model="darkmode">%i18n:@dark-mode%</ui-switch>
<ui-switch v-model="circleIcons">%i18n:@circle-icons%</ui-switch>
2018-09-16 15:40:48 +03:00
<ui-switch v-model="reduceMotion">%i18n:common.reduce-motion% (%i18n:common.this-setting-is-this-device-only%)</ui-switch>
<ui-switch v-model="contrastedAcct">%i18n:@contrasted-acct%</ui-switch>
<ui-switch v-model="showFullAcct">%i18n:common.show-full-acct%</ui-switch>
<ui-switch v-model="iLikeSushi">%i18n:common.i-like-sushi%</ui-switch>
<ui-switch v-model="disableAnimatedMfm">%i18n:common.disable-animated-mfm%</ui-switch>
<ui-switch v-model="alwaysShowNsfw">%i18n:common.always-show-nsfw% (%i18n:common.this-setting-is-this-device-only%)</ui-switch>
2018-10-26 08:51:57 +03:00
</section>
<section>
<ui-switch v-model="games_reversi_showBoardLabels">%i18n:common.show-reversi-board-labels%</ui-switch>
<ui-switch v-model="games_reversi_useContrastStones">%i18n:common.use-contrast-reversi-stones%</ui-switch>
2018-09-05 07:47:26 +03:00
</section>
<section>
<header>%i18n:@timeline%</header>
<div>
<ui-switch v-model="showReplyTarget">%i18n:@show-reply-target%</ui-switch>
<ui-switch v-model="showMyRenotes">%i18n:@show-my-renotes%</ui-switch>
<ui-switch v-model="showRenotedMyNotes">%i18n:@show-renoted-my-notes%</ui-switch>
<ui-switch v-model="showLocalRenotes">%i18n:@show-local-renotes%</ui-switch>
2018-09-05 07:47:26 +03:00
</div>
</section>
<section>
<header>%i18n:@post-style%</header>
2018-06-14 14:23:50 +03:00
<ui-radio v-model="postStyle" value="standard">%i18n:@post-style-standard%</ui-radio>
<ui-radio v-model="postStyle" value="smart">%i18n:@post-style-smart%</ui-radio>
2018-09-05 07:47:26 +03:00
</section>
<section>
<header>%i18n:@notification-position%</header>
<ui-radio v-model="mobileNotificationPosition" value="bottom">%i18n:@notification-position-bottom%</ui-radio>
<ui-radio v-model="mobileNotificationPosition" value="top">%i18n:@notification-position-top%</ui-radio>
</section>
2018-06-14 10:48:49 +03:00
</ui-card>
2018-06-14 08:52:37 +03:00
2018-06-14 10:48:49 +03:00
<ui-card>
2018-10-13 07:22:14 +03:00
<div slot="title">%fa:sliders-h% %i18n:@behavior%</div>
2018-09-05 07:47:26 +03:00
<section>
<ui-switch v-model="fetchOnScroll">%i18n:@fetch-on-scroll%</ui-switch>
<ui-switch v-model="disableViaMobile">%i18n:@disable-via-mobile%</ui-switch>
2018-09-05 07:47:26 +03:00
<ui-switch v-model="loadRawImages">%i18n:@load-raw-images%</ui-switch>
<ui-switch v-model="loadRemoteMedia">%i18n:@load-remote-media%</ui-switch>
2018-09-05 07:47:26 +03:00
<ui-switch v-model="lightmode">%i18n:@i-am-under-limited-internet%</ui-switch>
</section>
<section>
<header>%i18n:@note-visibility%</header>
<ui-switch v-model="rememberNoteVisibility">%i18n:@remember-note-visibility%</ui-switch>
<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-06-14 10:48:49 +03:00
</ui-card>
2018-06-14 08:52:37 +03:00
2018-10-25 05:30:30 +03:00
<mk-drive-settings/>
2018-10-31 04:16:13 +02:00
<mk-mute-and-block/>
<ui-card>
<div slot="title">%fa:volume-up% %i18n:@sound%</div>
2018-09-05 07:47:26 +03:00
<section>
<ui-switch v-model="enableSounds">%i18n:@enable-sounds%</ui-switch>
</section>
</ui-card>
2018-06-14 10:48:49 +03:00
<ui-card>
2018-06-14 08:52:37 +03:00
<div slot="title">%fa:language% %i18n:@lang%</div>
2018-09-05 07:47:26 +03:00
<section class="fit-top">
<ui-select v-model="lang" placeholder="%i18n:@auto%">
<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>
</ui-select>
<span>%fa:info-circle% %i18n:@lang-tip%</span>
</section>
2018-06-14 10:48:49 +03:00
</ui-card>
2018-06-14 08:52:37 +03:00
2018-06-14 10:48:49 +03:00
<ui-card>
2018-06-14 08:52:37 +03:00
<div slot="title">%fa:B twitter% %i18n:@twitter%</div>
2018-09-05 07:47:26 +03:00
<section>
<p class="account" v-if="$store.state.i.twitter"><a :href="`https://twitter.com/${$store.state.i.twitter.screenName}`" target="_blank">@{{ $store.state.i.twitter.screenName }}</a></p>
<p>
<a :href="`${apiUrl}/connect/twitter`" target="_blank">{{ $store.state.i.twitter ? '%i18n:@twitter-reconnect%' : '%i18n:@twitter-connect%' }}</a>
<span v-if="$store.state.i.twitter"> or </span>
<a :href="`${apiUrl}/disconnect/twitter`" target="_blank" v-if="$store.state.i.twitter">%i18n:@twitter-disconnect%</a>
</p>
</section>
2018-06-14 10:48:49 +03:00
</ui-card>
2018-06-14 08:52:37 +03:00
2018-10-26 02:37:30 +03:00
<mk-api-settings />
<ui-card>
<div slot="title">%fa:unlock-alt% %i18n:@password%</div>
<section>
<mk-password-settings/>
</section>
</ui-card>
2018-06-14 10:48:49 +03:00
<ui-card>
2018-06-14 08:52:37 +03:00
<div slot="title">%fa:sync-alt% %i18n:@update%</div>
2018-09-05 07:47:26 +03:00
<section>
<div>%i18n:@version% <i>{{ version }}</i></div>
<template v-if="latestVersion !== undefined">
<div>%i18n:@latest-version% <i>{{ latestVersion ? latestVersion : version }}</i></div>
</template>
<ui-button @click="checkForUpdate" :disabled="checkingForUpdate">
<template v-if="checkingForUpdate">%i18n:@update-checking%<mk-ellipsis/></template>
<template v-else>%i18n:@check-for-updates%</template>
</ui-button>
</section>
2018-06-14 10:48:49 +03:00
</ui-card>
2018-05-19 14:31:13 +03:00
</div>
2018-06-15 01:56:56 +03:00
2018-07-29 03:17:07 +03:00
<div class="signout" @click="signout">%i18n:@signout%</div>
2018-06-15 01:56:56 +03:00
<footer>
<small>ver {{ version }} ({{ codename }})</small>
</footer>
2018-05-19 14:31:13 +03:00
</main>
2018-02-20 06:02:53 +02:00
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import { apiUrl, clientVersion as version, codename, langs } from '../../../config';
2018-05-20 03:04:48 +03:00
import checkForUpdate from '../../../common/scripts/check-for-update';
2018-02-20 06:02:53 +02:00
export default Vue.extend({
data() {
return {
2018-05-20 03:04:48 +03:00
apiUrl,
2018-03-29 08:48:47 +03:00
version,
2018-05-19 14:31:13 +03:00
codename,
2018-05-20 20:13:39 +03:00
langs,
2018-05-20 03:04:48 +03:00
latestVersion: undefined,
checkingForUpdate: false
2018-02-20 06:02:53 +02:00
};
},
2018-05-19 14:31:13 +03:00
2018-04-05 19:36:34 +03:00
computed: {
2018-04-09 12:52:29 +03:00
name(): string {
2018-05-27 07:49:09 +03:00
return Vue.filter('userName')(this.$store.state.i);
2018-05-20 20:13:39 +03:00
},
2018-05-19 14:31:13 +03:00
2018-05-23 23:28:46 +03:00
darkmode: {
get() { return this.$store.state.device.darkmode; },
set(value) { this.$store.commit('device/set', { key: 'darkmode', value }); }
},
2018-09-16 15:40:48 +03:00
reduceMotion: {
get() { return this.$store.state.device.reduceMotion; },
set(value) { this.$store.commit('device/set', { key: 'reduceMotion', value }); }
},
alwaysShowNsfw: {
get() { return this.$store.state.device.alwaysShowNsfw; },
set(value) { this.$store.commit('device/set', { key: 'alwaysShowNsfw', value }); }
},
postStyle: {
get() { return this.$store.state.device.postStyle; },
set(value) { this.$store.commit('device/set', { key: 'postStyle', value }); }
},
2018-09-05 07:47:26 +03:00
mobileNotificationPosition: {
get() { return this.$store.state.device.mobileNotificationPosition; },
set(value) { this.$store.commit('device/set', { key: 'mobileNotificationPosition', value }); }
},
2018-05-20 20:13:39 +03:00
lightmode: {
get() { return this.$store.state.device.lightmode; },
set(value) { this.$store.commit('device/set', { key: 'lightmode', value }); }
2018-05-20 03:04:48 +03:00
},
2018-05-20 11:37:30 +03:00
loadRawImages: {
get() { return this.$store.state.device.loadRawImages; },
set(value) { this.$store.commit('device/set', { key: 'loadRawImages', value }); }
},
2018-05-20 20:13:39 +03:00
lang: {
get() { return this.$store.state.device.lang; },
set(value) { this.$store.commit('device/set', { key: 'lang', value }); }
2018-05-20 11:37:30 +03:00
},
enableSounds: {
get() { return this.$store.state.device.enableSounds; },
set(value) { this.$store.commit('device/set', { key: 'enableSounds', value }); }
},
2018-05-20 11:37:30 +03:00
fetchOnScroll: {
get() { return this.$store.state.settings.fetchOnScroll; },
set(value) { this.$store.dispatch('settings/set', { key: 'fetchOnScroll', value }); }
},
2018-05-19 14:31:13 +03:00
rememberNoteVisibility: {
get() { return this.$store.state.settings.rememberNoteVisibility; },
set(value) { this.$store.dispatch('settings/set', { key: 'rememberNoteVisibility', value }); }
2018-05-19 14:31:13 +03:00
},
disableViaMobile: {
get() { return this.$store.state.settings.disableViaMobile; },
set(value) { this.$store.dispatch('settings/set', { key: 'disableViaMobile', value }); }
2018-05-20 03:04:48 +03:00
},
loadRemoteMedia: {
get() { return this.$store.state.settings.loadRemoteMedia; },
set(value) { this.$store.dispatch('settings/set', { key: 'loadRemoteMedia', value }); }
},
circleIcons: {
get() { return this.$store.state.settings.circleIcons; },
set(value) { this.$store.dispatch('settings/set', { key: 'circleIcons', value }); }
2018-05-20 03:04:48 +03:00
},
contrastedAcct: {
get() { return this.$store.state.settings.contrastedAcct; },
set(value) { this.$store.dispatch('settings/set', { key: 'contrastedAcct', value }); }
},
showFullAcct: {
get() { return this.$store.state.settings.showFullAcct; },
set(value) { this.$store.dispatch('settings/set', { key: 'showFullAcct', value }); }
},
iLikeSushi: {
get() { return this.$store.state.settings.iLikeSushi; },
set(value) { this.$store.dispatch('settings/set', { key: 'iLikeSushi', value }); }
2018-05-20 03:04:48 +03:00
},
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 }); }
2018-06-18 11:25:20 +03:00
},
disableAnimatedMfm: {
get() { return this.$store.state.settings.disableAnimatedMfm; },
set(value) { this.$store.dispatch('settings/set', { key: 'disableAnimatedMfm', 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 }); }
2018-05-20 03:04:48 +03:00
},
showLocalRenotes: {
get() { return this.$store.state.settings.showLocalRenotes; },
set(value) { this.$store.dispatch('settings/set', { key: 'showLocalRenotes', value }); }
2018-05-20 03:04:48 +03:00
},
defaultNoteVisibility: {
get() { return this.$store.state.settings.defaultNoteVisibility; },
set(value) { this.$store.dispatch('settings/set', { key: 'defaultNoteVisibility', value }); }
2018-05-20 03:04:48 +03:00
},
},
mounted() {
document.title = '%i18n:@settings%';
},
2018-05-20 03:04:48 +03:00
methods: {
signout() {
(this as any).os.signout();
2018-08-16 17:59:22 +03:00
},
2018-05-20 03:04:48 +03: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 14:26:38 +03:00
title: '%i18n:@no-updates%',
text: '%i18n:@no-updates-desc%'
2018-05-20 03:04:48 +03:00
});
} else {
(this as any).apis.dialog({
2018-05-20 14:26:38 +03:00
title: '%i18n:@update-available%',
text: '%i18n:@update-available-desc%'
2018-05-20 03:04:48 +03:00
});
}
});
2018-02-20 06:02:53 +02:00
}
}
});
</script>
2018-05-19 14:31:13 +03:00
<style lang="stylus" scoped>
2018-09-28 05:45:34 +03:00
main
2018-05-20 08:01:47 +03:00
margin 0 auto
2018-09-05 07:47:26 +03:00
max-width 600px
2018-05-20 08:01:47 +03:00
width 100%
2018-05-19 14:31:13 +03:00
2018-06-15 01:56:56 +03:00
> .signin-as
margin 16px
2018-06-14 10:48:49 +03:00
padding 16px
2018-02-20 06:02:53 +02:00
text-align center
2018-09-26 14:38:16 +03:00
color var(--mobileSignedInAsFg)
background var(--mobileSignedInAsBg)
2018-06-15 01:56:56 +03:00
box-shadow 0 3px 1px -2px rgba(#000, 0.2), 0 2px 2px 0 rgba(#000, 0.14), 0 1px 5px 0 rgba(#000, 0.12)
2018-07-29 03:17:07 +03:00
> .signout
margin 16px
padding 16px
text-align center
2018-09-26 14:47:11 +03:00
color var(--mobileSignedInAsFg)
background var(--mobileSignedInAsBg)
2018-07-29 03:17:07 +03:00
box-shadow 0 3px 1px -2px rgba(#000, 0.2), 0 2px 2px 0 rgba(#000, 0.14), 0 1px 5px 0 rgba(#000, 0.12)
2018-06-15 01:56:56 +03:00
> footer
margin 16px
text-align center
2018-09-28 05:45:34 +03:00
color var(--text)
opacity 0.7
2018-02-20 06:02:53 +02:00
</style>