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

107 lines
2.1 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-02-22 15:38:14 +02:00
<div :class="$style.content">
2018-04-16 01:07:32 +03:00
<p v-html="'%i18n:!@signed-in-as%'.replace('{}', '<b>' + name + '</b>')"></p>
2018-02-20 06:02:53 +02:00
<ul>
2018-04-14 19:04:40 +03:00
<li><router-link to="./settings/profile">%fa:user%%i18n:@profile%%fa:angle-right%</router-link></li>
2018-04-14 20:36:01 +03:00
<li><router-link to="./settings/twitter">%fa:B twitter%%i18n:@twitter%%fa:angle-right%</router-link></li>
2018-04-14 19:04:40 +03:00
<li><router-link to="./settings/signin-history">%fa:sign-in-alt%%i18n:@signin-history%%fa:angle-right%</router-link></li>
2018-02-20 06:02:53 +02:00
</ul>
<ul>
2018-04-14 19:04:40 +03:00
<li><a @click="signout">%fa:power-off%%i18n:@signout%</a></li>
2018-02-20 06:02:53 +02:00
</ul>
2018-03-29 08:48:47 +03:00
<p><small>ver {{ version }} ({{ codename }})</small></p>
2018-02-20 06:02:53 +02:00
</div>
</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
export default Vue.extend({
data() {
return {
2018-03-29 08:48:47 +03:00
version,
codename
2018-02-20 06:02:53 +02: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-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
},
methods: {
signout() {
(this as any).os.signout();
}
}
});
</script>
<style lang="stylus" module>
.content
> 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>