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

146 lines
2.5 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/>
<md-card class="md-layout-item md-size-50 md-small-size-100">
<md-card-header>
<div class="md-title">%i18n:@design%</div>
</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>
</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-03-29 08:48:47 +03:00
import { version, codename } from '../../../config';
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-03-29 08:48:47 +03:00
version,
2018-05-19 14:31:13 +03:00
codename,
darkmode: localStorage.getItem('darkmode') == 'true'
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-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
},
onChangeCircleIcons(v) {
this.$store.dispatch('settings/set', {
key: 'circleIcons',
value: v
});
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>