2023-01-02 15:00:11 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2023-01-02 15:00:11 +00:00
|
|
|
|
|
|
|
const { form } = defineModel<{
|
|
|
|
form: {
|
2023-01-08 06:21:09 +00:00
|
|
|
fieldsAttributes: NonNullable<mastodon.v1.UpdateCredentialsParams['fieldsAttributes']>
|
2023-01-02 15:00:11 +00:00
|
|
|
}
|
|
|
|
}>()
|
2023-01-02 21:09:15 +00:00
|
|
|
const dropdown = $ref<any>()
|
2023-01-02 15:00:11 +00:00
|
|
|
|
|
|
|
const fieldIcons = computed(() =>
|
2023-01-10 08:33:20 +00:00
|
|
|
Array.from({ length: maxAccountFieldCount.value }, (_, i) =>
|
2023-01-02 15:00:11 +00:00
|
|
|
getAccountFieldIcon(form.value.fieldsAttributes[i].name),
|
|
|
|
),
|
|
|
|
)
|
2023-01-02 21:09:15 +00:00
|
|
|
|
2023-01-10 08:33:20 +00:00
|
|
|
const fieldCount = $computed(() => {
|
|
|
|
// find last non-empty field
|
|
|
|
const idx = [...form.value.fieldsAttributes].reverse().findIndex(f => f.name || f.value)
|
|
|
|
if (idx === -1)
|
|
|
|
return 1
|
|
|
|
return Math.min(
|
|
|
|
form.value.fieldsAttributes.length - idx + 1,
|
|
|
|
maxAccountFieldCount.value,
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2023-01-02 21:09:15 +00:00
|
|
|
const chooseIcon = (i: number, text: string) => {
|
|
|
|
form.value.fieldsAttributes[i].name = text
|
|
|
|
dropdown[i]?.hide()
|
|
|
|
}
|
2023-01-02 15:00:11 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-10 08:33:20 +00:00
|
|
|
<div space-y-2>
|
|
|
|
<div font-medium>
|
|
|
|
{{ $t('settings.profile.appearance.profile_metadata') }}
|
|
|
|
</div>
|
|
|
|
<div text-sm text-secondary>
|
|
|
|
{{ $t('settings.profile.appearance.profile_metadata_desc', [maxAccountFieldCount]) }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div flex="~ col gap4">
|
|
|
|
<div v-for="i in fieldCount" :key="i" flex="~ gap3" items-center>
|
|
|
|
<CommonDropdown ref="dropdown" placement="left">
|
|
|
|
<CommonTooltip content="Pick a icon">
|
|
|
|
<button type="button" btn-action-icon>
|
|
|
|
<div :class="fieldIcons[i - 1] || 'i-ri:question-mark'" />
|
|
|
|
</button>
|
|
|
|
</CommonTooltip>
|
|
|
|
<template #popper>
|
|
|
|
<div flex="~ wrap gap-1" max-w-50 m2>
|
|
|
|
<CommonTooltip
|
|
|
|
v-for="(icon, text) in accountFieldIcons"
|
|
|
|
:key="icon"
|
|
|
|
:content="text"
|
|
|
|
>
|
|
|
|
<template v-if="text !== 'Joined'">
|
|
|
|
<button type="button" btn-action-icon @click="chooseIcon(i - 1, text)">
|
|
|
|
<div text-xl :class="icon" />
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
</CommonTooltip>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</CommonDropdown>
|
|
|
|
<input
|
|
|
|
v-model="form.fieldsAttributes[i - 1].name"
|
|
|
|
type="text" placeholder="Label"
|
|
|
|
input-base
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
v-model="form.fieldsAttributes[i - 1].value"
|
|
|
|
type="text" placeholder="Content"
|
|
|
|
input-base
|
|
|
|
>
|
|
|
|
</div>
|
2023-01-02 15:00:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|