Sharkey/src/web/app/desktop/views/components/settings.profile.vue

84 lines
2.1 KiB
Vue
Raw Normal View History

2018-02-12 16:17:08 +02:00
<template>
2018-02-20 16:22:19 +02:00
<div class="profile">
2018-02-12 16:17:08 +02:00
<label class="avatar ui from group">
2018-02-19 09:58:37 +02:00
<p>%i18n:desktop.tags.mk-profile-setting.avatar%</p>
<img class="avatar" :src="`${os.i.avatar_url}?thumbnail&size=64`" alt="avatar"/>
2018-02-12 16:17:08 +02: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>
<input v-model="birthday" type="date" class="ui"/>
</label>
<button class="ui primary" @click="save">%i18n:desktop.tags.mk-profile-setting.save%</button>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import notify from '../../scripts/notify';
export default Vue.extend({
data() {
return {
2018-02-20 16:22:19 +02:00
name: null,
location: null,
description: null,
birthday: null,
2018-02-12 16:17:08 +02:00
};
},
2018-02-20 16:22:19 +02:00
created() {
this.name = (this as any).os.i.name;
this.location = (this as any).os.i.profile.location;
this.description = (this as any).os.i.description;
this.birthday = (this as any).os.i.profile.birthday;
},
2018-02-12 16:17:08 +02:00
methods: {
updateAvatar() {
2018-02-19 09:58:37 +02:00
(this as any).apis.chooseDriveFile({
multiple: false
}).then(file => {
(this as any).apis.updateAvatar(file);
});
2018-02-12 16:17:08 +02:00
},
save() {
2018-02-18 05:35:18 +02:00
(this as any).api('i/update', {
2018-02-12 16:17:08 +02:00
name: this.name,
location: this.location || null,
description: this.description || null,
birthday: this.birthday || null
}).then(() => {
notify('プロフィールを更新しました');
});
}
}
});
</script>
<style lang="stylus" scoped>
2018-02-20 16:22:19 +02:00
.profile
2018-02-12 16:17:08 +02:00
> .avatar
> img
display inline-block
vertical-align top
width 64px
height 64px
border-radius 4px
> button
margin-left 8px
</style>