2017-08-02 19:09:40 +00:00
|
|
|
<template>
|
2018-03-31 18:14:36 +00:00
|
|
|
<div class="settings panel panel-default">
|
|
|
|
<div class="panel-heading">
|
2017-11-07 14:14:37 +00:00
|
|
|
{{$t('settings.user_settings')}}
|
2017-08-02 19:09:40 +00:00
|
|
|
</div>
|
|
|
|
<div class="panel-body profile-edit">
|
|
|
|
<div class="setting-item">
|
2017-11-07 14:14:37 +00:00
|
|
|
<h3>{{$t('settings.name_bio')}}</h3>
|
|
|
|
<p>{{$t('settings.name')}}</p>
|
2018-03-31 18:14:36 +00:00
|
|
|
<input class='name-changer' id='username' v-model="newname"></input>
|
2017-11-07 14:14:37 +00:00
|
|
|
<p>{{$t('settings.bio')}}</p>
|
2018-03-31 18:14:36 +00:00
|
|
|
<textarea class="bio" v-model="newbio"></textarea>
|
|
|
|
<button :disabled='newname.length <= 0' class="btn btn-default" @click="updateProfile">{{$t('general.submit')}}</button>
|
2017-08-02 19:09:40 +00:00
|
|
|
</div>
|
|
|
|
<div class="setting-item">
|
2017-11-07 14:14:37 +00:00
|
|
|
<h3>{{$t('settings.avatar')}}</h3>
|
|
|
|
<p>{{$t('settings.current_avatar')}}</p>
|
2017-08-02 19:09:40 +00:00
|
|
|
<img :src="user.profile_image_url_original" class="old-avatar"></img>
|
2017-11-07 14:14:37 +00:00
|
|
|
<p>{{$t('settings.set_new_avatar')}}</p>
|
2017-08-18 08:51:17 +00:00
|
|
|
<img class="new-avatar" v-bind:src="previews[0]" v-if="previews[0]">
|
2017-08-02 19:09:40 +00:00
|
|
|
</img>
|
|
|
|
<div>
|
2017-08-18 08:51:17 +00:00
|
|
|
<input type="file" @change="uploadFile(0, $event)" ></input>
|
2017-08-02 19:09:40 +00:00
|
|
|
</div>
|
2018-03-31 18:14:36 +00:00
|
|
|
<i class="icon-spin4 animate-spin" v-if="uploading[0]"></i>
|
|
|
|
<button class="btn btn-default" v-else-if="previews[0]" @click="submitAvatar">{{$t('general.submit')}}</button>
|
2017-08-02 19:09:40 +00:00
|
|
|
</div>
|
|
|
|
<div class="setting-item">
|
2017-11-07 14:14:37 +00:00
|
|
|
<h3>{{$t('settings.profile_banner')}}</h3>
|
|
|
|
<p>{{$t('settings.current_profile_banner')}}</p>
|
2017-08-02 19:09:40 +00:00
|
|
|
<img :src="user.cover_photo" class="banner"></img>
|
2017-11-07 14:14:37 +00:00
|
|
|
<p>{{$t('settings.set_new_profile_banner')}}</p>
|
2017-08-18 08:51:17 +00:00
|
|
|
<img class="banner" v-bind:src="previews[1]" v-if="previews[1]">
|
2017-08-02 19:09:40 +00:00
|
|
|
</img>
|
|
|
|
<div>
|
2017-08-18 08:51:17 +00:00
|
|
|
<input type="file" @change="uploadFile(1, $event)" ></input>
|
2017-08-02 19:09:40 +00:00
|
|
|
</div>
|
2018-03-31 18:14:36 +00:00
|
|
|
<i class=" icon-spin4 animate-spin uploading" v-if="uploading[1]"></i>
|
|
|
|
<button class="btn btn-default" v-else-if="previews[1]" @click="submitBanner">{{$t('general.submit')}}</button>
|
2017-08-02 19:09:40 +00:00
|
|
|
</div>
|
|
|
|
<div class="setting-item">
|
2017-11-07 14:14:37 +00:00
|
|
|
<h3>{{$t('settings.profile_background')}}</h3>
|
|
|
|
<p>{{$t('settings.set_new_profile_background')}}</p>
|
2017-08-18 08:51:17 +00:00
|
|
|
<img class="bg" v-bind:src="previews[2]" v-if="previews[2]">
|
2017-08-02 19:09:40 +00:00
|
|
|
</img>
|
|
|
|
<div>
|
2017-08-18 08:51:17 +00:00
|
|
|
<input type="file" @change="uploadFile(2, $event)" ></input>
|
2017-08-02 19:09:40 +00:00
|
|
|
</div>
|
2018-03-31 18:14:36 +00:00
|
|
|
<i class=" icon-spin4 animate-spin uploading" v-if="uploading[2]"></i>
|
|
|
|
<button class="btn btn-default" v-else-if="previews[2]" @click="submitBg">{{$t('general.submit')}}</button>
|
2017-08-02 19:09:40 +00:00
|
|
|
</div>
|
2017-12-23 14:44:22 +00:00
|
|
|
<div class="setting-item" v-if="pleromaBackend">
|
|
|
|
<h3>{{$t('settings.follow_import')}}</h3>
|
|
|
|
<p>{{$t('settings.import_followers_from_a_csv_file')}}</p>
|
|
|
|
<form v-model="followImportForm">
|
|
|
|
<input type="file" ref="followlist" v-on:change="followListChange"></input>
|
|
|
|
</form>
|
2018-03-31 18:14:36 +00:00
|
|
|
<i class=" icon-spin4 animate-spin uploading" v-if="uploading[3]"></i>
|
|
|
|
<button class="btn btn-default" v-else @click="importFollows">{{$t('general.submit')}}</button>
|
2017-12-23 14:44:22 +00:00
|
|
|
<div v-if="followsImported">
|
|
|
|
<i class="icon-cross" @click="dismissImported"></i>
|
|
|
|
<p>{{$t('settings.follows_imported')}}</p>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="followImportError">
|
|
|
|
<i class="icon-cross" @click="dismissImported"</i>
|
|
|
|
<p>{{$t('settings.follow_import_error')}}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-08-02 19:09:40 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_settings.js">
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.profile-edit {
|
2018-04-07 16:30:27 +00:00
|
|
|
.bio {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
input[type=file] {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.banner {
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
2017-08-02 19:09:40 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.uploading {
|
|
|
|
font-size: 1.5em;
|
|
|
|
margin: 0.25em;
|
|
|
|
}
|
2017-08-02 19:09:40 +00:00
|
|
|
}
|
|
|
|
</style>
|