2018-02-12 08:17:08 -06:00
|
|
|
<template>
|
2018-02-20 08:22:19 -06:00
|
|
|
<div class="profile">
|
2018-02-12 08:17:08 -06:00
|
|
|
<label class="avatar ui from group">
|
2018-02-19 01:58:37 -06:00
|
|
|
<p>%i18n:desktop.tags.mk-profile-setting.avatar%</p>
|
2018-03-29 00:48:47 -05:00
|
|
|
<img class="avatar" :src="`${os.i.avatarUrl}?thumbnail&size=64`" alt="avatar"/>
|
2018-02-12 08:17:08 -06:00
|
|
|
<button class="ui" @click="updateAvatar">%i18n:desktop.tags.mk-profile-setting.choice-avatar%</button>
|
|
|
|
</label>
|
|
|
|
<label class="ui from group">
|
|
|
|
<p>%i18n:desktop.tags.mk-profile-setting.name%</p>
|
|
|
|
<input v-model="name" type="text" class="ui"/>
|
|
|
|
</label>
|
|
|
|
<label class="ui from group">
|
|
|
|
<p>%i18n:desktop.tags.mk-profile-setting.location%</p>
|
|
|
|
<input v-model="location" type="text" class="ui"/>
|
|
|
|
</label>
|
|
|
|
<label class="ui from group">
|
|
|
|
<p>%i18n:desktop.tags.mk-profile-setting.description%</p>
|
|
|
|
<textarea v-model="description" class="ui"></textarea>
|
|
|
|
</label>
|
|
|
|
<label class="ui from group">
|
|
|
|
<p>%i18n:desktop.tags.mk-profile-setting.birthday%</p>
|
2018-03-02 23:25:36 -06:00
|
|
|
<el-date-picker v-model="birthday" type="date" value-format="yyyy-MM-dd"/>
|
2018-02-12 08:17:08 -06:00
|
|
|
</label>
|
|
|
|
<button class="ui primary" @click="save">%i18n:desktop.tags.mk-profile-setting.save%</button>
|
2018-03-01 15:26:31 -06:00
|
|
|
<section>
|
|
|
|
<h2>その他</h2>
|
2018-03-29 00:48:47 -05:00
|
|
|
<mk-switch v-model="os.i.account.isBot" @change="onChangeIsBot" text="このアカウントはbotです"/>
|
2018-03-01 15:26:31 -06:00
|
|
|
</section>
|
2018-02-12 08:17:08 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
data() {
|
|
|
|
return {
|
2018-02-20 08:22:19 -06:00
|
|
|
name: null,
|
|
|
|
location: null,
|
|
|
|
description: null,
|
|
|
|
birthday: null,
|
2018-02-12 08:17:08 -06:00
|
|
|
};
|
|
|
|
},
|
2018-02-20 08:22:19 -06:00
|
|
|
created() {
|
2018-04-05 11:36:34 -05:00
|
|
|
this.name = (this as any).os.i.name || '';
|
2018-03-25 10:19:07 -05:00
|
|
|
this.location = (this as any).os.i.account.profile.location;
|
2018-02-20 08:22:19 -06:00
|
|
|
this.description = (this as any).os.i.description;
|
2018-03-25 10:19:07 -05:00
|
|
|
this.birthday = (this as any).os.i.account.profile.birthday;
|
2018-02-20 08:22:19 -06:00
|
|
|
},
|
2018-02-12 08:17:08 -06:00
|
|
|
methods: {
|
|
|
|
updateAvatar() {
|
2018-02-20 14:55:19 -06:00
|
|
|
(this as any).apis.updateAvatar();
|
2018-02-12 08:17:08 -06:00
|
|
|
},
|
|
|
|
save() {
|
2018-02-17 21:35:18 -06:00
|
|
|
(this as any).api('i/update', {
|
2018-04-05 11:36:34 -05:00
|
|
|
name: this.name || null,
|
2018-02-12 08:17:08 -06:00
|
|
|
location: this.location || null,
|
|
|
|
description: this.description || null,
|
|
|
|
birthday: this.birthday || null
|
|
|
|
}).then(() => {
|
2018-02-20 11:53:34 -06:00
|
|
|
(this as any).apis.notify('プロフィールを更新しました');
|
2018-02-12 08:17:08 -06:00
|
|
|
});
|
2018-03-01 15:26:31 -06:00
|
|
|
},
|
|
|
|
onChangeIsBot() {
|
|
|
|
(this as any).api('i/update', {
|
2018-03-29 00:48:47 -05:00
|
|
|
isBot: (this as any).os.i.account.isBot
|
2018-03-01 15:26:31 -06:00
|
|
|
});
|
2018-02-12 08:17:08 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-02-20 08:22:19 -06:00
|
|
|
.profile
|
2018-02-12 08:17:08 -06:00
|
|
|
> .avatar
|
|
|
|
> img
|
|
|
|
display inline-block
|
|
|
|
vertical-align top
|
|
|
|
width 64px
|
|
|
|
height 64px
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
> button
|
|
|
|
margin-left 8px
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|