2018-02-12 07:18:13 -06:00
|
|
|
<template>
|
|
|
|
<div class="mk-settings">
|
|
|
|
<div class="nav">
|
|
|
|
<p :class="{ active: page == 'profile' }" @mousedown="page = 'profile'">%fa:user .fw%%i18n:desktop.tags.mk-settings.profile%</p>
|
|
|
|
<p :class="{ active: page == 'web' }" @mousedown="page = 'web'">%fa:desktop .fw%Web</p>
|
|
|
|
<p :class="{ active: page == 'notification' }" @mousedown="page = 'notification'">%fa:R bell .fw%通知</p>
|
|
|
|
<p :class="{ active: page == 'drive' }" @mousedown="page = 'drive'">%fa:cloud .fw%%i18n:desktop.tags.mk-settings.drive%</p>
|
|
|
|
<p :class="{ active: page == 'mute' }" @mousedown="page = 'mute'">%fa:ban .fw%%i18n:desktop.tags.mk-settings.mute%</p>
|
|
|
|
<p :class="{ active: page == 'apps' }" @mousedown="page = 'apps'">%fa:puzzle-piece .fw%アプリ</p>
|
|
|
|
<p :class="{ active: page == 'twitter' }" @mousedown="page = 'twitter'">%fa:B twitter .fw%Twitter</p>
|
|
|
|
<p :class="{ active: page == 'security' }" @mousedown="page = 'security'">%fa:unlock-alt .fw%%i18n:desktop.tags.mk-settings.security%</p>
|
|
|
|
<p :class="{ active: page == 'api' }" @mousedown="page = 'api'">%fa:key .fw%API</p>
|
|
|
|
<p :class="{ active: page == 'other' }" @mousedown="page = 'other'">%fa:cogs .fw%%i18n:desktop.tags.mk-settings.other%</p>
|
|
|
|
</div>
|
|
|
|
<div class="pages">
|
|
|
|
<section class="profile" v-show="page == 'profile'">
|
|
|
|
<h1>%i18n:desktop.tags.mk-settings.profile%</h1>
|
2018-02-20 08:22:19 -06:00
|
|
|
<x-profile/>
|
2018-02-12 07:18:13 -06:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="web" v-show="page == 'web'">
|
|
|
|
<h1>デザイン</h1>
|
2018-02-22 11:06:35 -06:00
|
|
|
<div>
|
|
|
|
<button class="ui button" @click="customizeHome">ホームをカスタマイズ</button>
|
|
|
|
</div>
|
2018-03-01 15:26:31 -06:00
|
|
|
<el-switch v-model="showPostFormOnTopOfTl" @change="onChangeShowPostFormOnTopOfTl" active-text="タイムライン上部に投稿フォームを表示する"/>
|
2018-02-12 07:18:13 -06:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="drive" v-show="page == 'drive'">
|
|
|
|
<h1>%i18n:desktop.tags.mk-settings.drive%</h1>
|
|
|
|
<mk-drive-setting/>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="mute" v-show="page == 'mute'">
|
|
|
|
<h1>%i18n:desktop.tags.mk-settings.mute%</h1>
|
2018-02-21 10:25:57 -06:00
|
|
|
<x-mute/>
|
2018-02-12 07:18:13 -06:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="apps" v-show="page == 'apps'">
|
|
|
|
<h1>アプリケーション</h1>
|
|
|
|
<mk-authorized-apps/>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="twitter" v-show="page == 'twitter'">
|
|
|
|
<h1>Twitter</h1>
|
|
|
|
<mk-twitter-setting/>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="password" v-show="page == 'security'">
|
|
|
|
<h1>%i18n:desktop.tags.mk-settings.password%</h1>
|
2018-02-21 10:25:57 -06:00
|
|
|
<x-password/>
|
2018-02-12 07:18:13 -06:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="2fa" v-show="page == 'security'">
|
|
|
|
<h1>%i18n:desktop.tags.mk-settings.2fa%</h1>
|
2018-02-21 10:25:57 -06:00
|
|
|
<x-2fa/>
|
2018-02-12 07:18:13 -06:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="signin" v-show="page == 'security'">
|
|
|
|
<h1>サインイン履歴</h1>
|
|
|
|
<mk-signin-history/>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="api" v-show="page == 'api'">
|
|
|
|
<h1>API</h1>
|
2018-02-22 06:15:24 -06:00
|
|
|
<x-api/>
|
2018-02-12 07:18:13 -06:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="other" v-show="page == 'other'">
|
|
|
|
<h1>%i18n:desktop.tags.mk-settings.license%</h1>
|
2018-03-01 15:26:31 -06:00
|
|
|
<div v-html="license"></div>
|
|
|
|
<a :href="licenseUrl" target="_blank">サードパーティ</a>
|
2018-02-12 07:18:13 -06:00
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-02-20 08:22:19 -06:00
|
|
|
import XProfile from './settings.profile.vue';
|
2018-02-21 10:25:57 -06:00
|
|
|
import XMute from './settings.mute.vue';
|
|
|
|
import XPassword from './settings.password.vue';
|
|
|
|
import X2fa from './settings.2fa.vue';
|
2018-02-22 06:15:24 -06:00
|
|
|
import XApi from './settings.api.vue';
|
2018-03-01 15:26:31 -06:00
|
|
|
import { docsUrl, license, lang } from '../../../config';
|
2018-02-19 01:58:37 -06:00
|
|
|
|
2018-02-12 07:18:13 -06:00
|
|
|
export default Vue.extend({
|
2018-02-19 01:58:37 -06:00
|
|
|
components: {
|
2018-02-21 10:25:57 -06:00
|
|
|
XProfile,
|
|
|
|
XMute,
|
|
|
|
XPassword,
|
2018-02-22 06:15:24 -06:00
|
|
|
X2fa,
|
|
|
|
XApi
|
2018-02-19 01:58:37 -06:00
|
|
|
},
|
2018-02-12 07:18:13 -06:00
|
|
|
data() {
|
|
|
|
return {
|
2018-02-22 11:06:35 -06:00
|
|
|
page: 'profile',
|
2018-03-01 15:26:31 -06:00
|
|
|
license,
|
2018-02-22 11:06:35 -06:00
|
|
|
showPostFormOnTopOfTl: false
|
2018-02-12 07:18:13 -06:00
|
|
|
};
|
2018-02-22 11:06:35 -06:00
|
|
|
},
|
2018-03-01 15:26:31 -06:00
|
|
|
computed: {
|
|
|
|
licenseUrl(): string {
|
|
|
|
return `${docsUrl}/${lang}/license`;
|
|
|
|
}
|
|
|
|
},
|
2018-02-22 11:06:35 -06:00
|
|
|
created() {
|
|
|
|
this.showPostFormOnTopOfTl = (this as any).os.i.client_settings.showPostFormOnTopOfTl;
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
customizeHome() {
|
|
|
|
this.$router.push('/i/customize-home');
|
|
|
|
this.$emit('done');
|
|
|
|
},
|
|
|
|
onChangeShowPostFormOnTopOfTl() {
|
|
|
|
(this as any).api('i/update_client_setting', {
|
|
|
|
name: 'showPostFormOnTopOfTl',
|
|
|
|
value: this.showPostFormOnTopOfTl
|
|
|
|
});
|
|
|
|
}
|
2018-02-12 07:18:13 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-settings
|
|
|
|
display flex
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
|
|
|
|
> .nav
|
|
|
|
flex 0 0 200px
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
padding 16px 0 0 0
|
|
|
|
overflow auto
|
|
|
|
border-right solid 1px #ddd
|
|
|
|
|
|
|
|
> p
|
|
|
|
display block
|
|
|
|
padding 10px 16px
|
|
|
|
margin 0
|
|
|
|
color #666
|
|
|
|
cursor pointer
|
|
|
|
user-select none
|
|
|
|
transition margin-left 0.2s ease
|
|
|
|
|
|
|
|
> [data-fa]
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
color #555
|
|
|
|
|
|
|
|
&.active
|
|
|
|
margin-left 8px
|
|
|
|
color $theme-color !important
|
|
|
|
|
|
|
|
> .pages
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
flex auto
|
|
|
|
overflow auto
|
|
|
|
|
|
|
|
> section
|
|
|
|
margin 32px
|
|
|
|
color #4a535a
|
|
|
|
|
|
|
|
> h1
|
|
|
|
margin 0 0 1em 0
|
|
|
|
padding 0 0 8px 0
|
|
|
|
font-size 1em
|
|
|
|
color #555
|
|
|
|
border-bottom solid 1px #eee
|
|
|
|
|
2018-03-01 15:26:31 -06:00
|
|
|
&, >>> *
|
|
|
|
> section
|
|
|
|
margin 32px 0
|
|
|
|
|
|
|
|
> h2
|
|
|
|
margin 0 0 1em 0
|
|
|
|
padding 0 0 8px 0
|
|
|
|
font-size 1em
|
|
|
|
color #555
|
|
|
|
border-bottom solid 1px #eee
|
|
|
|
|
2018-02-22 11:06:35 -06:00
|
|
|
> .web
|
|
|
|
> div
|
|
|
|
border-bottom solid 1px #eee
|
|
|
|
padding 0 0 16px 0
|
|
|
|
margin 0 0 16px 0
|
|
|
|
|
2018-02-12 07:18:13 -06:00
|
|
|
</style>
|