2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2020-11-28 09:18:54 -06:00
|
|
|
<FormBase>
|
|
|
|
<FormGroup>
|
2020-12-18 19:55:52 -06:00
|
|
|
<div class="_formItem _formPanel llvierxe" :style="{ backgroundImage: $i.bannerUrl ? `url(${ $i.bannerUrl })` : null }">
|
|
|
|
<MkAvatar class="avatar" :user="$i"/>
|
2020-11-28 09:18:54 -06:00
|
|
|
</div>
|
2020-12-25 19:47:36 -06:00
|
|
|
<FormButton @click="changeAvatar" primary>{{ $ts._profile.changeAvatar }}</FormButton>
|
|
|
|
<FormButton @click="changeBanner" primary>{{ $ts._profile.changeBanner }}</FormButton>
|
2020-11-28 09:18:54 -06:00
|
|
|
</FormGroup>
|
2020-11-25 06:31:34 -06:00
|
|
|
|
2021-02-12 21:28:26 -06:00
|
|
|
<FormInput v-model:value="name" :max="30" manual-save>
|
2020-12-25 19:47:36 -06:00
|
|
|
<span>{{ $ts._profile.name }}</span>
|
2020-11-25 06:31:34 -06:00
|
|
|
</FormInput>
|
|
|
|
|
2021-02-12 21:28:26 -06:00
|
|
|
<FormTextarea v-model:value="description" :max="500" tall manual-save>
|
2020-12-25 19:47:36 -06:00
|
|
|
<span>{{ $ts._profile.description }}</span>
|
|
|
|
<template #desc>{{ $ts._profile.youCanIncludeHashtags }}</template>
|
2020-11-25 06:31:34 -06:00
|
|
|
</FormTextarea>
|
|
|
|
|
2021-02-12 21:28:26 -06:00
|
|
|
<FormInput v-model:value="location" manual-save>
|
2020-12-25 19:47:36 -06:00
|
|
|
<span>{{ $ts.location }}</span>
|
2021-04-20 09:22:59 -05:00
|
|
|
<template #prefix><i class="fas fa-map-marker-alt"></i></template>
|
2020-11-25 06:31:34 -06:00
|
|
|
</FormInput>
|
|
|
|
|
2021-02-12 21:28:26 -06:00
|
|
|
<FormInput v-model:value="birthday" type="date" manual-save>
|
2020-12-25 19:47:36 -06:00
|
|
|
<span>{{ $ts.birthday }}</span>
|
2021-04-20 09:22:59 -05:00
|
|
|
<template #prefix><i class="fas fa-birthday-cake"></i></template>
|
2020-11-25 06:31:34 -06:00
|
|
|
</FormInput>
|
|
|
|
|
2021-02-12 21:28:26 -06:00
|
|
|
<FormSelect v-model:value="lang">
|
|
|
|
<template #label>{{ $ts.language }}</template>
|
|
|
|
<option v-for="x in langs" :value="x[0]" :key="x[0]">{{ x[1] }}</option>
|
|
|
|
</FormSelect>
|
|
|
|
|
2020-11-25 06:31:34 -06:00
|
|
|
<FormGroup>
|
2020-12-25 19:47:36 -06:00
|
|
|
<FormButton @click="editMetadata" primary>{{ $ts._profile.metadataEdit }}</FormButton>
|
|
|
|
<template #caption>{{ $ts._profile.metadataDescription }}</template>
|
2020-11-25 06:31:34 -06:00
|
|
|
</FormGroup>
|
|
|
|
|
2020-12-25 19:47:36 -06:00
|
|
|
<FormSwitch v-model:value="isCat">{{ $ts.flagAsCat }}<template #desc>{{ $ts.flagAsCatDescription }}</template></FormSwitch>
|
2020-11-25 06:31:34 -06:00
|
|
|
|
2020-12-25 19:47:36 -06:00
|
|
|
<FormSwitch v-model:value="isBot">{{ $ts.flagAsBot }}<template #desc>{{ $ts.flagAsBotDescription }}</template></FormSwitch>
|
2020-11-25 06:31:34 -06:00
|
|
|
|
2020-12-25 19:47:36 -06:00
|
|
|
<FormSwitch v-model:value="alwaysMarkNsfw">{{ $ts.alwaysMarkSensitive }}</FormSwitch>
|
2020-11-25 06:31:34 -06:00
|
|
|
</FormBase>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 06:12:00 -05:00
|
|
|
import { defineComponent } from 'vue';
|
2021-03-23 03:30:14 -05:00
|
|
|
import FormButton from '@client/components/form/button.vue';
|
|
|
|
import FormInput from '@client/components/form/input.vue';
|
|
|
|
import FormTextarea from '@client/components/form/textarea.vue';
|
|
|
|
import FormSwitch from '@client/components/form/switch.vue';
|
|
|
|
import FormSelect from '@client/components/form/select.vue';
|
|
|
|
import FormBase from '@client/components/form/base.vue';
|
|
|
|
import FormGroup from '@client/components/form/group.vue';
|
|
|
|
import { host, langs } from '@client/config';
|
|
|
|
import { selectFile } from '@client/scripts/select-file';
|
|
|
|
import * as os from '@client/os';
|
2021-04-09 22:54:12 -05:00
|
|
|
import * as symbols from '@client/symbols';
|
2020-10-17 06:12:00 -05:00
|
|
|
|
|
|
|
export default defineComponent({
|
2020-01-29 13:37:25 -06:00
|
|
|
components: {
|
2020-11-25 06:31:34 -06:00
|
|
|
FormButton,
|
|
|
|
FormInput,
|
|
|
|
FormTextarea,
|
|
|
|
FormSwitch,
|
2021-02-12 21:28:26 -06:00
|
|
|
FormSelect,
|
2020-11-25 06:31:34 -06:00
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
emits: ['info'],
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
data() {
|
|
|
|
return {
|
2021-04-09 22:54:12 -05:00
|
|
|
[symbols.PAGE_INFO]: {
|
2020-12-25 19:47:36 -06:00
|
|
|
title: this.$ts.profile,
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-user'
|
2020-10-17 06:12:00 -05:00
|
|
|
},
|
2020-01-29 13:37:25 -06:00
|
|
|
host,
|
2021-02-12 21:28:26 -06:00
|
|
|
langs,
|
2020-01-29 13:37:25 -06:00
|
|
|
name: null,
|
|
|
|
description: null,
|
|
|
|
birthday: null,
|
2021-02-12 21:28:26 -06:00
|
|
|
lang: null,
|
2020-01-29 13:37:25 -06:00
|
|
|
location: null,
|
|
|
|
fieldName0: null,
|
|
|
|
fieldValue0: null,
|
|
|
|
fieldName1: null,
|
|
|
|
fieldValue1: null,
|
|
|
|
fieldName2: null,
|
|
|
|
fieldValue2: null,
|
|
|
|
fieldName3: null,
|
|
|
|
fieldValue3: null,
|
|
|
|
avatarId: null,
|
|
|
|
bannerId: null,
|
|
|
|
isBot: false,
|
|
|
|
isCat: false,
|
2020-11-25 06:31:34 -06:00
|
|
|
alwaysMarkNsfw: false,
|
2020-01-29 13:37:25 -06:00
|
|
|
saving: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
2020-12-18 19:55:52 -06:00
|
|
|
this.name = this.$i.name;
|
|
|
|
this.description = this.$i.description;
|
|
|
|
this.location = this.$i.location;
|
|
|
|
this.birthday = this.$i.birthday;
|
2021-02-12 21:28:26 -06:00
|
|
|
this.lang = this.$i.lang;
|
2020-12-18 19:55:52 -06:00
|
|
|
this.avatarId = this.$i.avatarId;
|
|
|
|
this.bannerId = this.$i.bannerId;
|
|
|
|
this.isBot = this.$i.isBot;
|
|
|
|
this.isCat = this.$i.isCat;
|
|
|
|
this.alwaysMarkNsfw = this.$i.alwaysMarkNsfw;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
this.fieldName0 = this.$i.fields[0] ? this.$i.fields[0].name : null;
|
|
|
|
this.fieldValue0 = this.$i.fields[0] ? this.$i.fields[0].value : null;
|
|
|
|
this.fieldName1 = this.$i.fields[1] ? this.$i.fields[1].name : null;
|
|
|
|
this.fieldValue1 = this.$i.fields[1] ? this.$i.fields[1].value : null;
|
|
|
|
this.fieldName2 = this.$i.fields[2] ? this.$i.fields[2].name : null;
|
|
|
|
this.fieldValue2 = this.$i.fields[2] ? this.$i.fields[2].value : null;
|
|
|
|
this.fieldName3 = this.$i.fields[3] ? this.$i.fields[3].name : null;
|
|
|
|
this.fieldValue3 = this.$i.fields[3] ? this.$i.fields[3].value : null;
|
2021-02-12 21:28:26 -06:00
|
|
|
|
|
|
|
this.$watch('name', this.save);
|
|
|
|
this.$watch('description', this.save);
|
|
|
|
this.$watch('location', this.save);
|
|
|
|
this.$watch('birthday', this.save);
|
|
|
|
this.$watch('lang', this.save);
|
|
|
|
this.$watch('isBot', this.save);
|
|
|
|
this.$watch('isCat', this.save);
|
|
|
|
this.$watch('alwaysMarkNsfw', this.save);
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
mounted() {
|
2021-04-09 22:54:12 -05:00
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
2020-10-17 06:12:00 -05:00
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
methods: {
|
2020-01-29 16:13:36 -06:00
|
|
|
changeAvatar(e) {
|
2020-12-25 19:47:36 -06:00
|
|
|
selectFile(e.currentTarget || e.target, this.$ts.avatar).then(file => {
|
2020-10-17 06:12:00 -05:00
|
|
|
os.api('i/update', {
|
2020-01-29 16:13:36 -06:00
|
|
|
avatarId: file.id,
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2020-01-29 16:13:36 -06:00
|
|
|
changeBanner(e) {
|
2020-12-25 19:47:36 -06:00
|
|
|
selectFile(e.currentTarget || e.target, this.$ts.banner).then(file => {
|
2020-10-17 06:12:00 -05:00
|
|
|
os.api('i/update', {
|
2020-01-29 16:13:36 -06:00
|
|
|
bannerId: file.id,
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2020-11-25 06:31:34 -06:00
|
|
|
async editMetadata() {
|
2020-12-25 19:47:36 -06:00
|
|
|
const { canceled, result } = await os.form(this.$ts._profile.metadata, {
|
2020-11-25 06:31:34 -06:00
|
|
|
fieldName0: {
|
|
|
|
type: 'string',
|
2020-12-25 19:47:36 -06:00
|
|
|
label: this.$ts._profile.metadataLabel + ' 1',
|
2020-11-25 06:31:34 -06:00
|
|
|
default: this.fieldName0,
|
|
|
|
},
|
|
|
|
fieldValue0: {
|
|
|
|
type: 'string',
|
2020-12-25 19:47:36 -06:00
|
|
|
label: this.$ts._profile.metadataContent + ' 1',
|
2020-11-25 06:31:34 -06:00
|
|
|
default: this.fieldValue0,
|
|
|
|
},
|
|
|
|
fieldName1: {
|
|
|
|
type: 'string',
|
2020-12-25 19:47:36 -06:00
|
|
|
label: this.$ts._profile.metadataLabel + ' 2',
|
2020-11-25 06:31:34 -06:00
|
|
|
default: this.fieldName1,
|
|
|
|
},
|
|
|
|
fieldValue1: {
|
|
|
|
type: 'string',
|
2020-12-25 19:47:36 -06:00
|
|
|
label: this.$ts._profile.metadataContent + ' 2',
|
2020-11-25 06:31:34 -06:00
|
|
|
default: this.fieldValue1,
|
|
|
|
},
|
|
|
|
fieldName2: {
|
|
|
|
type: 'string',
|
2020-12-25 19:47:36 -06:00
|
|
|
label: this.$ts._profile.metadataLabel + ' 3',
|
2020-11-25 06:31:34 -06:00
|
|
|
default: this.fieldName2,
|
|
|
|
},
|
|
|
|
fieldValue2: {
|
|
|
|
type: 'string',
|
2020-12-25 19:47:36 -06:00
|
|
|
label: this.$ts._profile.metadataContent + ' 3',
|
2020-11-25 06:31:34 -06:00
|
|
|
default: this.fieldValue2,
|
|
|
|
},
|
|
|
|
fieldName3: {
|
|
|
|
type: 'string',
|
2020-12-25 19:47:36 -06:00
|
|
|
label: this.$ts._profile.metadataLabel + ' 4',
|
2020-11-25 06:31:34 -06:00
|
|
|
default: this.fieldName3,
|
|
|
|
},
|
|
|
|
fieldValue3: {
|
|
|
|
type: 'string',
|
2020-12-25 19:47:36 -06:00
|
|
|
label: this.$ts._profile.metadataContent + ' 4',
|
2020-11-25 06:31:34 -06:00
|
|
|
default: this.fieldValue3,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
this.fieldName0 = result.fieldName0;
|
|
|
|
this.fieldValue0 = result.fieldValue0;
|
|
|
|
this.fieldName1 = result.fieldName1;
|
|
|
|
this.fieldValue1 = result.fieldValue1;
|
|
|
|
this.fieldName2 = result.fieldName2;
|
|
|
|
this.fieldValue2 = result.fieldValue2;
|
|
|
|
this.fieldName3 = result.fieldName3;
|
|
|
|
this.fieldValue3 = result.fieldValue3;
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
const fields = [
|
|
|
|
{ name: this.fieldName0, value: this.fieldValue0 },
|
|
|
|
{ name: this.fieldName1, value: this.fieldValue1 },
|
|
|
|
{ name: this.fieldName2, value: this.fieldValue2 },
|
|
|
|
{ name: this.fieldName3, value: this.fieldValue3 },
|
|
|
|
];
|
|
|
|
|
2020-11-25 06:31:34 -06:00
|
|
|
os.api('i/update', {
|
|
|
|
fields,
|
|
|
|
}).then(i => {
|
|
|
|
os.success();
|
|
|
|
}).catch(err => {
|
|
|
|
os.dialog({
|
|
|
|
type: 'error',
|
|
|
|
text: err.id
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2021-02-12 21:28:26 -06:00
|
|
|
save() {
|
2020-01-29 13:37:25 -06:00
|
|
|
this.saving = true;
|
|
|
|
|
2021-02-12 21:28:26 -06:00
|
|
|
os.apiWithDialog('i/update', {
|
2020-01-29 13:37:25 -06:00
|
|
|
name: this.name || null,
|
|
|
|
description: this.description || null,
|
|
|
|
location: this.location || null,
|
|
|
|
birthday: this.birthday || null,
|
2021-02-12 21:28:26 -06:00
|
|
|
lang: this.lang || null,
|
2020-01-29 13:37:25 -06:00
|
|
|
isBot: !!this.isBot,
|
|
|
|
isCat: !!this.isCat,
|
2020-11-25 06:31:34 -06:00
|
|
|
alwaysMarkNsfw: !!this.alwaysMarkNsfw,
|
2020-01-29 13:37:25 -06:00
|
|
|
}).then(i => {
|
|
|
|
this.saving = false;
|
2020-12-18 19:55:52 -06:00
|
|
|
this.$i.avatarId = i.avatarId;
|
|
|
|
this.$i.avatarUrl = i.avatarUrl;
|
|
|
|
this.$i.bannerId = i.bannerId;
|
|
|
|
this.$i.bannerUrl = i.bannerUrl;
|
2020-01-29 13:37:25 -06:00
|
|
|
}).catch(err => {
|
|
|
|
this.saving = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-01-29 16:13:36 -06:00
|
|
|
.llvierxe {
|
2020-11-28 09:18:54 -06:00
|
|
|
position: relative;
|
|
|
|
height: 150px;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
2020-01-29 16:13:36 -06:00
|
|
|
|
2020-11-28 09:18:54 -06:00
|
|
|
> * {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
display: block;
|
|
|
|
width: 72px;
|
|
|
|
height: 72px;
|
|
|
|
margin: auto;
|
|
|
|
box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.5);
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|