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

156 lines
3.4 KiB
Vue
Raw Normal View History

2018-05-19 14:31:13 +03:00
<template>
2018-05-20 03:04:48 +03:00
<md-card>
2018-05-19 14:31:13 +03:00
<md-card-header>
2018-05-20 03:04:48 +03:00
<div class="md-title">%fa:pencil-alt% %i18n:@title%</div>
2018-05-19 14:31:13 +03:00
</md-card-header>
<md-card-content>
<md-field>
<label>%i18n:@name%</label>
<md-input v-model="name" :disabled="saving"/>
</md-field>
<md-field>
2018-05-20 03:04:48 +03:00
<md-icon>%fa:map-marker-alt%</md-icon>
<label>%i18n:@location%</label>
<md-input v-model="location" :disabled="saving"/>
2018-05-19 14:31:13 +03:00
</md-field>
<md-field>
2018-05-20 03:04:48 +03:00
<md-icon>%fa:birthday-cake%</md-icon>
2018-05-19 14:31:13 +03:00
<label>%i18n:@birthday%</label>
<md-input type="date" v-model="birthday" :disabled="saving"/>
</md-field>
2018-05-20 08:01:47 +03:00
<md-field>
<label>%i18n:@description%</label>
<md-textarea v-model="description" :disabled="saving"/>
</md-field>
<md-field>
<label>%i18n:@avatar%</label>
<md-file @md-change="onAvatarChange"/>
</md-field>
<md-field>
<label>%i18n:@banner%</label>
<md-file @md-change="onBannerChange"/>
</md-field>
<md-dialog-alert
:md-active.sync="uploading"
md-content="%18n:!@uploading%"/>
2018-05-19 14:31:13 +03:00
<div>
2018-05-20 03:04:48 +03:00
<md-switch v-model="os.i.isBot" @change="onChangeIsBot">%i18n:@is-bot%</md-switch>
2018-05-19 14:31:13 +03:00
</div>
</md-card-content>
<md-card-actions>
<md-button class="md-primary" :disabled="saving" @click="save">%i18n:@save%</md-button>
</md-card-actions>
</md-card>
</template>
<script lang="ts">
import Vue from 'vue';
2018-05-20 08:01:47 +03:00
import { apiUrl } from '../../../../config';
2018-05-19 14:31:13 +03:00
export default Vue.extend({
data() {
return {
name: null,
location: null,
description: null,
birthday: null,
2018-05-20 08:01:47 +03:00
avatarId: null,
bannerId: null,
saving: false,
uploading: false
2018-05-19 14:31:13 +03:00
};
},
2018-05-20 03:04:48 +03:00
2018-05-19 14:31:13 +03: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-05-20 08:01:47 +03:00
this.avatarId = (this as any).os.i.avatarId;
this.bannerId = (this as any).os.i.bannerId;
2018-05-19 14:31:13 +03:00
},
2018-05-20 03:04:48 +03:00
methods: {
onChangeIsBot() {
(this as any).api('i/update', {
isBot: (this as any).os.i.isBot
2018-05-19 14:31:13 +03:00
});
},
2018-05-20 08:01:47 +03:00
onAvatarChange([file]) {
this.uploading = true;
const data = new FormData();
data.append('file', file);
data.append('i', (this as any).os.i.token);
fetch(apiUrl + '/drive/files/create', {
method: 'POST',
body: data
})
.then(response => response.json())
.then(f => {
this.avatarId = f.id;
this.uploading = false;
})
.catch(e => {
this.uploading = false;
alert('%18n:!@upload-failed%');
});
},
onBannerChange([file]) {
this.uploading = true;
const data = new FormData();
data.append('file', file);
data.append('i', (this as any).os.i.token);
fetch(apiUrl + '/drive/files/create', {
method: 'POST',
body: data
})
.then(response => response.json())
.then(f => {
this.bannerId = f.id;
this.uploading = false;
})
.catch(e => {
this.uploading = false;
alert('%18n:!@upload-failed%');
});
},
2018-05-19 14:31:13 +03:00
save() {
this.saving = true;
(this as any).api('i/update', {
name: this.name || null,
location: this.location || null,
description: this.description || null,
2018-05-20 08:01:47 +03:00
birthday: this.birthday || null,
avatarId: this.avatarId,
bannerId: this.bannerId
}).then(i => {
2018-05-19 14:31:13 +03:00
this.saving = false;
2018-05-20 08:01:47 +03:00
(this as any).os.i.avatarId = i.avatarId;
(this as any).os.i.avatarUrl = i.avatarUrl;
(this as any).os.i.bannerId = i.bannerId;
(this as any).os.i.bannerUrl = i.bannerUrl;
2018-05-19 14:31:13 +03:00
alert('%i18n:!@saved%');
});
}
}
});
</script>