2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2021-11-28 05:07:37 -06:00
|
|
|
<div class="_formRoot">
|
|
|
|
<div class="llvierxe" :style="{ backgroundImage: $i.bannerUrl ? `url(${ $i.bannerUrl })` : null }">
|
|
|
|
<div class="avatar _acrylic">
|
|
|
|
<MkAvatar class="avatar" :user="$i" :disable-link="true" @click="changeAvatar"/>
|
2022-01-27 20:39:49 -06:00
|
|
|
<MkButton primary class="avatarEdit" @click="changeAvatar">{{ i18n.ts._profile.changeAvatar }}</MkButton>
|
2020-11-28 09:18:54 -06:00
|
|
|
</div>
|
2022-01-27 20:39:49 -06:00
|
|
|
<MkButton primary class="bannerEdit" @click="changeBanner">{{ i18n.ts._profile.changeBanner }}</MkButton>
|
2021-11-28 05:07:37 -06:00
|
|
|
</div>
|
2020-11-25 06:31:34 -06:00
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
<FormInput v-model="profile.name" :max="30" manual-save class="_formBlock">
|
2022-01-27 20:39:49 -06:00
|
|
|
<template #label>{{ i18n.ts._profile.name }}</template>
|
2020-11-25 06:31:34 -06:00
|
|
|
</FormInput>
|
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
<FormTextarea v-model="profile.description" :max="500" tall manual-save class="_formBlock">
|
2022-01-27 20:39:49 -06:00
|
|
|
<template #label>{{ i18n.ts._profile.description }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._profile.youCanIncludeHashtags }}</template>
|
2020-11-25 06:31:34 -06:00
|
|
|
</FormTextarea>
|
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
<FormInput v-model="profile.location" manual-save class="_formBlock">
|
2022-01-27 20:39:49 -06:00
|
|
|
<template #label>{{ i18n.ts.location }}</template>
|
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>
|
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
<FormInput v-model="profile.birthday" type="date" manual-save class="_formBlock">
|
2022-01-27 20:39:49 -06:00
|
|
|
<template #label>{{ i18n.ts.birthday }}</template>
|
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>
|
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
<FormSelect v-model="profile.lang" class="_formBlock">
|
2022-01-27 20:39:49 -06:00
|
|
|
<template #label>{{ i18n.ts.language }}</template>
|
2021-11-19 04:36:12 -06:00
|
|
|
<option v-for="x in langs" :key="x[0]" :value="x[0]">{{ x[1] }}</option>
|
2021-02-12 21:28:26 -06:00
|
|
|
</FormSelect>
|
|
|
|
|
2021-11-28 05:07:37 -06:00
|
|
|
<FormSlot>
|
2022-01-27 20:39:49 -06:00
|
|
|
<MkButton @click="editMetadata">{{ i18n.ts._profile.metadataEdit }}</MkButton>
|
|
|
|
<template #caption>{{ i18n.ts._profile.metadataDescription }}</template>
|
2021-11-28 05:07:37 -06:00
|
|
|
</FormSlot>
|
2020-11-25 06:31:34 -06:00
|
|
|
|
2022-01-27 20:39:49 -06:00
|
|
|
<FormSwitch v-model="profile.isCat" class="_formBlock">{{ i18n.ts.flagAsCat }}<template #caption>{{ i18n.ts.flagAsCatDescription }}</template></FormSwitch>
|
2022-02-06 01:02:48 -06:00
|
|
|
<FormSwitch v-model="profile.showTimelineReplies" class="_formBlock">{{ i18n.ts.flagShowTimelineReplies }}<template #caption>{{ i18n.ts.flagShowTimelineRepliesDescription }}</template></FormSwitch>
|
2022-01-27 20:39:49 -06:00
|
|
|
<FormSwitch v-model="profile.isBot" class="_formBlock">{{ i18n.ts.flagAsBot }}<template #caption>{{ i18n.ts.flagAsBotDescription }}</template></FormSwitch>
|
2020-11-25 06:31:34 -06:00
|
|
|
|
2022-01-27 20:39:49 -06:00
|
|
|
<FormSwitch v-model="profile.alwaysMarkNsfw" class="_formBlock">{{ i18n.ts.alwaysMarkSensitive }}</FormSwitch>
|
2021-11-28 05:07:37 -06:00
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineComponent, reactive, watch } from 'vue';
|
2021-11-28 05:07:37 -06:00
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import FormInput from '@/components/form/input.vue';
|
|
|
|
import FormTextarea from '@/components/form/textarea.vue';
|
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
|
|
import FormSelect from '@/components/form/select.vue';
|
|
|
|
import FormSlot from '@/components/form/slot.vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import { host, langs } from '@/config';
|
|
|
|
import { selectFile } from '@/scripts/select-file';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2022-01-16 06:31:09 -06:00
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { $i } from '@/account';
|
|
|
|
|
|
|
|
const profile = reactive({
|
|
|
|
name: $i.name,
|
|
|
|
description: $i.description,
|
|
|
|
location: $i.location,
|
|
|
|
birthday: $i.birthday,
|
|
|
|
lang: $i.lang,
|
|
|
|
isBot: $i.isBot,
|
|
|
|
isCat: $i.isCat,
|
2022-02-06 01:02:48 -06:00
|
|
|
showTimelineReplies: $i.showTimelineReplies,
|
2022-01-16 06:31:09 -06:00
|
|
|
alwaysMarkNsfw: $i.alwaysMarkNsfw,
|
|
|
|
});
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
const additionalFields = reactive({
|
|
|
|
fieldName0: $i.fields[0] ? $i.fields[0].name : null,
|
|
|
|
fieldValue0: $i.fields[0] ? $i.fields[0].value : null,
|
|
|
|
fieldName1: $i.fields[1] ? $i.fields[1].name : null,
|
|
|
|
fieldValue1: $i.fields[1] ? $i.fields[1].value : null,
|
|
|
|
fieldName2: $i.fields[2] ? $i.fields[2].name : null,
|
|
|
|
fieldValue2: $i.fields[2] ? $i.fields[2].value : null,
|
|
|
|
fieldName3: $i.fields[3] ? $i.fields[3].name : null,
|
|
|
|
fieldValue3: $i.fields[3] ? $i.fields[3].value : null,
|
|
|
|
});
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
watch(() => profile, () => {
|
|
|
|
save();
|
|
|
|
}, {
|
|
|
|
deep: true,
|
|
|
|
});
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
function save() {
|
|
|
|
os.apiWithDialog('i/update', {
|
|
|
|
name: profile.name || null,
|
|
|
|
description: profile.description || null,
|
|
|
|
location: profile.location || null,
|
|
|
|
birthday: profile.birthday || null,
|
|
|
|
lang: profile.lang || null,
|
|
|
|
isBot: !!profile.isBot,
|
|
|
|
isCat: !!profile.isCat,
|
2022-02-06 01:02:48 -06:00
|
|
|
showTimelineReplies: !!profile.showTimelineReplies,
|
2022-01-16 06:31:09 -06:00
|
|
|
alwaysMarkNsfw: !!profile.alwaysMarkNsfw,
|
|
|
|
});
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
function changeAvatar(ev) {
|
2022-01-27 20:53:12 -06:00
|
|
|
selectFile(ev.currentTarget ?? ev.target, i18n.ts.avatar).then(async (file) => {
|
2022-01-16 06:31:09 -06:00
|
|
|
const i = await os.apiWithDialog('i/update', {
|
|
|
|
avatarId: file.id,
|
|
|
|
});
|
|
|
|
$i.avatarId = i.avatarId;
|
|
|
|
$i.avatarUrl = i.avatarUrl;
|
|
|
|
});
|
|
|
|
}
|
2021-02-12 21:28:26 -06:00
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
function changeBanner(ev) {
|
2022-01-27 20:53:12 -06:00
|
|
|
selectFile(ev.currentTarget ?? ev.target, i18n.ts.banner).then(async (file) => {
|
2022-01-16 06:31:09 -06:00
|
|
|
const i = await os.apiWithDialog('i/update', {
|
|
|
|
bannerId: file.id,
|
|
|
|
});
|
|
|
|
$i.bannerId = i.bannerId;
|
|
|
|
$i.bannerUrl = i.bannerUrl;
|
|
|
|
});
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-16 06:31:09 -06:00
|
|
|
async function editMetadata() {
|
2022-01-27 20:39:49 -06:00
|
|
|
const { canceled, result } = await os.form(i18n.ts._profile.metadata, {
|
2022-01-16 06:31:09 -06:00
|
|
|
fieldName0: {
|
|
|
|
type: 'string',
|
2022-01-27 20:39:49 -06:00
|
|
|
label: i18n.ts._profile.metadataLabel + ' 1',
|
2022-01-16 06:31:09 -06:00
|
|
|
default: additionalFields.fieldName0,
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
2022-01-16 06:31:09 -06:00
|
|
|
fieldValue0: {
|
|
|
|
type: 'string',
|
2022-01-27 20:39:49 -06:00
|
|
|
label: i18n.ts._profile.metadataContent + ' 1',
|
2022-01-16 06:31:09 -06:00
|
|
|
default: additionalFields.fieldValue0,
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
2022-01-16 06:31:09 -06:00
|
|
|
fieldName1: {
|
|
|
|
type: 'string',
|
2022-01-27 20:39:49 -06:00
|
|
|
label: i18n.ts._profile.metadataLabel + ' 2',
|
2022-01-16 06:31:09 -06:00
|
|
|
default: additionalFields.fieldName1,
|
2020-11-25 06:31:34 -06:00
|
|
|
},
|
2022-01-16 06:31:09 -06:00
|
|
|
fieldValue1: {
|
|
|
|
type: 'string',
|
2022-01-27 20:39:49 -06:00
|
|
|
label: i18n.ts._profile.metadataContent + ' 2',
|
2022-01-16 06:31:09 -06:00
|
|
|
default: additionalFields.fieldValue1,
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
2022-01-16 06:31:09 -06:00
|
|
|
fieldName2: {
|
|
|
|
type: 'string',
|
2022-01-27 20:39:49 -06:00
|
|
|
label: i18n.ts._profile.metadataLabel + ' 3',
|
2022-01-16 06:31:09 -06:00
|
|
|
default: additionalFields.fieldName2,
|
|
|
|
},
|
|
|
|
fieldValue2: {
|
|
|
|
type: 'string',
|
2022-01-27 20:39:49 -06:00
|
|
|
label: i18n.ts._profile.metadataContent + ' 3',
|
2022-01-16 06:31:09 -06:00
|
|
|
default: additionalFields.fieldValue2,
|
|
|
|
},
|
|
|
|
fieldName3: {
|
|
|
|
type: 'string',
|
2022-01-27 20:39:49 -06:00
|
|
|
label: i18n.ts._profile.metadataLabel + ' 4',
|
2022-01-16 06:31:09 -06:00
|
|
|
default: additionalFields.fieldName3,
|
|
|
|
},
|
|
|
|
fieldValue3: {
|
|
|
|
type: 'string',
|
2022-01-27 20:39:49 -06:00
|
|
|
label: i18n.ts._profile.metadataContent + ' 4',
|
2022-01-16 06:31:09 -06:00
|
|
|
default: additionalFields.fieldValue3,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
additionalFields.fieldName0 = result.fieldName0;
|
|
|
|
additionalFields.fieldValue0 = result.fieldValue0;
|
|
|
|
additionalFields.fieldName1 = result.fieldName1;
|
|
|
|
additionalFields.fieldValue1 = result.fieldValue1;
|
|
|
|
additionalFields.fieldName2 = result.fieldName2;
|
|
|
|
additionalFields.fieldValue2 = result.fieldValue2;
|
|
|
|
additionalFields.fieldName3 = result.fieldName3;
|
|
|
|
additionalFields.fieldValue3 = result.fieldValue3;
|
|
|
|
|
|
|
|
const fields = [
|
|
|
|
{ name: additionalFields.fieldName0, value: additionalFields.fieldValue0 },
|
|
|
|
{ name: additionalFields.fieldName1, value: additionalFields.fieldValue1 },
|
|
|
|
{ name: additionalFields.fieldName2, value: additionalFields.fieldValue2 },
|
|
|
|
{ name: additionalFields.fieldName3, value: additionalFields.fieldValue3 },
|
|
|
|
];
|
|
|
|
|
|
|
|
os.api('i/update', {
|
|
|
|
fields,
|
|
|
|
}).then(i => {
|
|
|
|
os.success();
|
|
|
|
}).catch(err => {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: err.id
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: {
|
2022-01-27 20:39:49 -06:00
|
|
|
title: i18n.ts.profile,
|
2022-01-16 06:31:09 -06:00
|
|
|
icon: 'fas fa-user',
|
|
|
|
bg: 'var(--bg)',
|
|
|
|
},
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-01-29 16:13:36 -06:00
|
|
|
.llvierxe {
|
2020-11-28 09:18:54 -06:00
|
|
|
position: relative;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
2021-11-28 05:07:37 -06:00
|
|
|
border-radius: 10px;
|
|
|
|
overflow: clip;
|
2020-01-29 16:13:36 -06:00
|
|
|
|
2021-11-28 05:07:37 -06:00
|
|
|
> .avatar {
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
display: inline-block;
|
|
|
|
width: 72px;
|
|
|
|
height: 72px;
|
|
|
|
margin: 0 auto 16px auto;
|
|
|
|
}
|
2020-11-28 09:18:54 -06:00
|
|
|
}
|
|
|
|
|
2021-11-28 05:07:37 -06:00
|
|
|
> .bannerEdit {
|
2020-11-28 09:18:54 -06:00
|
|
|
position: absolute;
|
2021-11-28 05:07:37 -06:00
|
|
|
top: 16px;
|
|
|
|
right: 16px;
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|