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

103 lines
2.5 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-04-14 19:04:40 +03:00
<p>%i18n:@avatar%</p>
2018-07-24 17:43:14 +03:00
<img class="avatar" :src="$store.state.i.avatarUrl" alt="avatar"/>
2018-04-14 19:04:40 +03:00
<button class="ui" @click="updateAvatar">%i18n:@choice-avatar%</button>
2018-02-12 16:17:08 +02:00
</label>
<label class="ui from group">
2018-04-14 19:04:40 +03:00
<p>%i18n:@name%</p>
2018-02-12 16:17:08 +02:00
<input v-model="name" type="text" class="ui"/>
</label>
<label class="ui from group">
2018-04-14 19:04:40 +03:00
<p>%i18n:@location%</p>
2018-02-12 16:17:08 +02:00
<input v-model="location" type="text" class="ui"/>
</label>
<label class="ui from group">
2018-04-14 19:04:40 +03:00
<p>%i18n:@description%</p>
2018-02-12 16:17:08 +02:00
<textarea v-model="description" class="ui"></textarea>
</label>
<label class="ui from group">
2018-04-14 19:04:40 +03:00
<p>%i18n:@birthday%</p>
2018-03-03 07:25:36 +02:00
<el-date-picker v-model="birthday" type="date" value-format="yyyy-MM-dd"/>
2018-02-12 16:17:08 +02:00
</label>
2018-04-14 19:04:40 +03:00
<button class="ui primary" @click="save">%i18n:@save%</button>
2018-03-01 23:26:31 +02:00
<section>
2018-06-01 18:51:20 +03:00
<h2>%i18n:@locked-account%</h2>
<mk-switch v-model="$store.state.i.isLocked" @change="onChangeIsLocked" text="%i18n:@is-locked%"/>
</section>
<section>
<h2>%i18n:@other%</h2>
2018-05-27 07:49:09 +03:00
<mk-switch v-model="$store.state.i.isBot" @change="onChangeIsBot" text="%i18n:@is-bot%"/>
<mk-switch v-model="$store.state.i.isCat" @change="onChangeIsCat" text="%i18n:@is-cat%"/>
2018-03-01 23:26:31 +02:00
</section>
2018-02-12 16:17:08 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
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() {
2018-05-27 07:49:09 +03:00
this.name = this.$store.state.i.name || '';
this.location = this.$store.state.i.profile.location;
this.description = this.$store.state.i.description;
this.birthday = this.$store.state.i.profile.birthday;
2018-02-20 16:22:19 +02:00
},
2018-02-12 16:17:08 +02:00
methods: {
updateAvatar() {
2018-02-20 22:55:19 +02:00
(this as any).apis.updateAvatar();
2018-02-12 16:17:08 +02:00
},
save() {
2018-02-18 05:35:18 +02:00
(this as any).api('i/update', {
2018-04-05 19:36:34 +03:00
name: this.name || null,
2018-02-12 16:17:08 +02:00
location: this.location || null,
description: this.description || null,
birthday: this.birthday || null
}).then(() => {
(this as any).apis.notify('%i18n:@profile-updated%');
2018-02-12 16:17:08 +02:00
});
2018-03-01 23:26:31 +02:00
},
2018-06-01 18:51:20 +03:00
onChangeIsLocked() {
(this as any).api('i/update', {
isLocked: this.$store.state.i.isLocked
});
},
2018-03-01 23:26:31 +02:00
onChangeIsBot() {
(this as any).api('i/update', {
2018-05-27 07:49:09 +03:00
isBot: this.$store.state.i.isBot
2018-03-01 23:26:31 +02:00
});
2018-05-21 05:08:08 +03:00
},
onChangeIsCat() {
(this as any).api('i/update', {
2018-05-27 07:49:09 +03:00
isCat: this.$store.state.i.isCat
2018-05-21 05:08:08 +03:00
});
2018-02-12 16:17:08 +02:00
}
}
});
</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>