feat(settings): add bot option for profile appearance

This commit is contained in:
三咲智子 2023-01-08 22:08:11 +08:00
parent fcae855eea
commit 5f07fd2515
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
4 changed files with 20 additions and 8 deletions

View file

@ -1,5 +1,6 @@
<script lang="ts" setup>
import type { mastodon } from 'masto'
import { satisfies } from 'semver'
import { useForm } from 'slimeform'
import { parse } from 'ultrahtml'
@ -41,9 +42,10 @@ const { form, reset, submitter, dirtyFields, isError } = useForm({
fieldsAttributes,
bot: account?.bot ?? false,
// These look more like account and privacy settings than appearance settings
// discoverable: false,
// bot: false,
// locked: false,
}
},
@ -114,10 +116,19 @@ onReactivated(refreshInfo)
<CommonCropImage v-model="form.avatar" />
<div px4>
<AccountDisplayName
:account="{ ...account, displayName: form.displayName }"
font-bold sm:text-2xl text-xl
/>
<div flex justify-between>
<AccountDisplayName
:account="{ ...account, displayName: form.displayName }"
font-bold sm:text-2xl text-xl
/>
<label>
<AccountBotIndicator show-label px2 py1>
<template #prepend>
<input v-model="form.bot" type="checkbox">
</template>
</AccountBotIndicator>
</label>
</div>
<AccountHandle :account="account" />
</div>
</div>