Browse Source

add host field

pull/1739/head
Bernd Storath 3 weeks ago
parent
commit
6fa2ee7625
  1. 35
      src/app/components/Form/HostField.vue
  2. 7
      src/app/components/Icons/Sparkles.vue
  3. 2
      src/app/pages/admin/config.vue

35
src/app/components/Form/HostField.vue

@ -0,0 +1,35 @@
<template>
<div class="flex items-center">
<FormLabel :for="id">
{{ label }}
</FormLabel>
<BaseTooltip v-if="description" :text="description">
<IconsInfo class="size-4" />
</BaseTooltip>
</div>
<div class="flex">
<BaseInput
:id="id"
v-model.trim="data"
:name="id"
type="text"
class="w-full"
/>
<BaseButton type="button" @click="data = ''">
<div class="flex items-center gap-3">
<IconsSparkles class="w-4" />
<span>Suggest</span>
</div>
</BaseButton>
</div>
</template>
<script lang="ts" setup>
defineProps<{
id: string;
label: string;
description?: string;
}>();
const data = defineModel<string>();
</script>

7
src/app/components/Icons/Sparkles.vue

@ -0,0 +1,7 @@
<template>
<SparklesIcon />
</template>
<script lang="ts" setup>
import SparklesIcon from '@heroicons/vue/24/outline/esm/SparklesIcon';
</script>

2
src/app/pages/admin/config.vue

@ -3,7 +3,7 @@
<FormElement @submit.prevent="submit">
<FormGroup>
<FormHeading>{{ $t('admin.config.connection') }}</FormHeading>
<FormTextField
<FormHostField
id="host"
v-model="data.host"
:label="$t('general.host')"

Loading…
Cancel
Save