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

297 lines
6.9 KiB
Vue
Raw Normal View History

2018-02-20 06:02:53 +02:00
<template>
<mk-ui>
2018-04-14 19:04:40 +03:00
<span slot="header">%fa:cog%%i18n:@settings%</span>
2018-05-19 14:31:13 +03:00
<main>
2018-04-16 01:07:32 +03:00
<p v-html="'%i18n:!@signed-in-as%'.replace('{}', '<b>' + name + '</b>')"></p>
2018-05-19 14:31:13 +03:00
<div>
<x-profile/>
2018-05-20 03:04:48 +03:00
<md-card>
2018-05-19 14:31:13 +03:00
<md-card-header>
2018-05-20 03:04:48 +03:00
<div class="md-title">%fa:palette% %i18n:@design%</div>
2018-05-19 14:31:13 +03:00
</md-card-header>
<md-card-content>
<div>
<md-switch v-model="darkmode">%i18n:@dark-mode%</md-switch>
</div>
<div>
<md-switch v-model="clientSettings.circleIcons" @change="onChangeCircleIcons">%i18n:@circle-icons%</md-switch>
</div>
2018-05-20 03:04:48 +03:00
<div>
<div class="md-body-2">%i18n:@timeline%</div>
<div>
<md-switch v-model="clientSettings.showReplyTarget" @change="onChangeShowReplyTarget">%i18n:@show-reply-target%</md-switch>
</div>
<div>
<md-switch v-model="clientSettings.showMyRenotes" @change="onChangeShowMyRenotes">%i18n:@show-my-renotes%</md-switch>
</div>
<div>
<md-switch v-model="clientSettings.showRenotedMyNotes" @change="onChangeShowRenotedMyNotes">%i18n:@show-renoted-my-notes%</md-switch>
</div>
</div>
</md-card-content>
</md-card>
<md-card>
<md-card-header>
<div class="md-title">%fa:cog% %i18n:@behavior%</div>
</md-card-header>
<md-card-content>
<div>
<md-switch v-model="clientSettings.fetchOnScroll" @change="onChangeFetchOnScroll">%i18n:@fetch-on-scroll%</md-switch>
</div>
<div>
<md-switch v-model="clientSettings.disableViaMobile" @change="onChangeDisableViaMobile">%i18n:@disable-via-mobile%</md-switch>
</div>
</md-card-content>
</md-card>
<md-card>
<md-card-header>
<div class="md-title">%fa:language% %i18n:@lang%</div>
</md-card-header>
<md-card-content>
<md-field>
<md-select v-model="lang" placeholder="%i18n:@auto%">
<md-optgroup label="%i18n:@recommended%">
<md-option value="">%i18n:@auto%</md-option>
</md-optgroup>
<md-optgroup label="%i18n:@specify-language%">
<md-option value="ja">日本語</md-option>
<md-option value="en">English</md-option>
<md-option value="fr">Français</md-option>
<md-option value="pl">Polski</md-option>
<md-option value="de">Deutsch</md-option>
</md-optgroup>
</md-select>
</md-field>
<span class="md-helper-text">%fa:info-circle% %i18n:@lang-tip%</span>
</md-card-content>
</md-card>
<md-card>
<md-card-header>
<div class="md-title">%fa:B twitter% %i18n:@twitter%</div>
</md-card-header>
<md-card-content>
<p class="account" v-if="os.i.twitter"><a :href="`https://twitter.com/${os.i.twitter.screenName}`" target="_blank">@{{ os.i.twitter.screenName }}</a></p>
<p>
<a :href="`${apiUrl}/connect/twitter`" target="_blank">{{ os.i.twitter ? '%i18n:!@twitter-reconnect%' : '%i18n:!@twitter-connect%' }}</a>
<span v-if="os.i.twitter"> or </span>
<a :href="`${apiUrl}/disconnect/twitter`" target="_blank" v-if="os.i.twitter">%i18n:@twitter-disconnect%</a>
</p>
</md-card-content>
</md-card>
<md-card>
<md-card-header>
<div class="md-title">%fa:sync-alt% %i18n:@update%</div>
</md-card-header>
<md-card-content>
<div>%i18n:@version% <i>{{ version }}</i></div>
<template v-if="latestVersion !== undefined">
<div>%i18n:@latest-version% <i>{{ latestVersion ? latestVersion : version }}</i></div>
</template>
<md-button class="md-raised md-primary" @click="checkForUpdate" :disabled="checkingForUpdate">
<template v-if="checkingForUpdate">%i18n:@update-checking%<mk-ellipsis/></template>
<template v-else>%i18n:@check-for-updates%</template>
</md-button>
2018-05-19 14:31:13 +03:00
</md-card-content>
</md-card>
</div>
2018-03-29 08:48:47 +03:00
<p><small>ver {{ version }} ({{ codename }})</small></p>
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';
2018-05-20 03:04:48 +03:00
import { apiUrl, version, codename } from '../../../config';
import checkForUpdate from '../../../common/scripts/check-for-update';
2018-02-20 06:02:53 +02:00
2018-05-19 14:31:13 +03:00
import XProfile from './settings/settings.profile.vue';
2018-02-20 06:02:53 +02:00
export default Vue.extend({
2018-05-19 14:31:13 +03:00
components: {
XProfile
},
2018-02-20 06:02:53 +02:00
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 03:04:48 +03:00
darkmode: localStorage.getItem('darkmode') == 'true',
lang: localStorage.getItem('lang') || '',
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 {
return Vue.filter('userName')((this as any).os.i);
2018-04-05 19:36:34 +03:00
}
},
2018-05-19 14:31:13 +03:00
watch: {
darkmode() {
(this as any)._updateDarkmode_(this.darkmode);
2018-05-20 03:04:48 +03:00
},
lang() {
localStorage.setItem('lang', this.lang);
2018-05-19 14:31:13 +03:00
}
},
2018-02-20 06:02:53 +02:00
mounted() {
2018-04-14 19:04:40 +03:00
document.title = 'Misskey | %i18n:@settings%';
2018-02-20 06:02:53 +02:00
},
2018-05-19 14:31:13 +03:00
2018-02-20 06:02:53 +02:00
methods: {
signout() {
(this as any).os.signout();
2018-05-19 14:31:13 +03:00
},
2018-05-20 03:04:48 +03:00
onChangeFetchOnScroll(v) {
this.$store.dispatch('settings/set', {
key: 'fetchOnScroll',
value: v
});
},
onChangeDisableViaMobile(v) {
this.$store.dispatch('settings/set', {
key: 'disableViaMobile',
value: v
});
},
2018-05-19 14:31:13 +03:00
onChangeCircleIcons(v) {
this.$store.dispatch('settings/set', {
key: 'circleIcons',
value: v
});
2018-05-20 03:04:48 +03:00
},
onChangeShowReplyTarget(v) {
this.$store.dispatch('settings/set', {
key: 'showReplyTarget',
value: v
});
},
onChangeShowMyRenotes(v) {
this.$store.dispatch('settings/set', {
key: 'showMyRenotes',
value: v
});
},
onChangeShowRenotedMyNotes(v) {
this.$store.dispatch('settings/set', {
key: 'showRenotedMyNotes',
value: v
});
},
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%'
});
} else {
(this as any).apis.dialog({
title: '%i18n:!@update-available%',
text: '%i18n:!@update-available-desc%'
});
}
});
2018-02-20 06:02:53 +02:00
}
}
});
</script>
2018-05-19 14:31:13 +03:00
<style lang="stylus" scoped>
main
padding 0 16px
> div
> *
margin-bottom 16px
2018-02-20 06:02:53 +02:00
> p
display block
margin 24px
text-align center
color #cad2da
> ul
$radius = 8px
display block
margin 16px auto
padding 0
max-width 500px
width calc(100% - 32px)
list-style none
background #fff
2018-04-29 02:51:17 +03:00
border solid 1px rgba(#000, 0.2)
2018-02-20 06:02:53 +02:00
border-radius $radius
> li
display block
border-bottom solid 1px #ddd
&:hover
2018-04-29 02:51:17 +03:00
background rgba(#000, 0.1)
2018-02-20 06:02:53 +02:00
&:first-child
border-top-left-radius $radius
border-top-right-radius $radius
&:last-child
border-bottom-left-radius $radius
border-bottom-right-radius $radius
border-bottom none
> a
$height = 48px
display block
position relative
padding 0 16px
line-height $height
color #4d635e
> [data-fa]:nth-of-type(1)
margin-right 4px
> [data-fa]:nth-of-type(2)
display block
position absolute
top 0
right 8px
z-index 1
padding 0 20px
font-size 1.2em
line-height $height
</style>