forked from enviPath/enviPy
This implements a version of #274, relying on Pydantics built in JSON schema and JSON rendering. Requires additional UI tagging in the ai model repo but will remove HTML tags. Example scenario with filled information: 5882df9c-dae1-4d80-a40e-db4724271456/scenario/3a4d395a-6a6d-4154-8ce3-ced667fceec0 Reviewed-on: enviPath/enviPy#282 Co-authored-by: Tobias O <tobias.olenyi@envipath.com> Co-committed-by: Tobias O <tobias.olenyi@envipath.com>
69 lines
1.9 KiB
HTML
69 lines
1.9 KiB
HTML
{# Select dropdown widget - pure HTML template #}
|
|
<div class="form-control">
|
|
<div class="flex flex-col gap-2 sm:flex-row sm:items-baseline">
|
|
<!-- Label -->
|
|
<label class="label sm:w-48 sm:shrink-0">
|
|
<span
|
|
class="label-text"
|
|
:class="{
|
|
'text-error': hasError,
|
|
'text-sm text-base-content/60': isViewMode
|
|
}"
|
|
x-text="label"
|
|
></span>
|
|
</label>
|
|
|
|
<!-- Input column -->
|
|
<div class="flex-1">
|
|
<!-- Help text -->
|
|
<template x-if="helpText">
|
|
<div class="label">
|
|
<span
|
|
class="label-text-alt text-base-content/60"
|
|
x-text="helpText"
|
|
></span>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- View mode -->
|
|
<template x-if="isViewMode">
|
|
<div class="mt-1">
|
|
<template x-if="value">
|
|
<span class="text-base" x-text="value"></span>
|
|
</template>
|
|
<template x-if="!value">
|
|
<span class="text-base-content/50">—</span>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- Edit mode -->
|
|
<template x-if="isEditMode">
|
|
<select
|
|
class="select select-bordered w-full"
|
|
:class="{ 'select-error': hasError }"
|
|
x-model="value"
|
|
>
|
|
<option value="" :selected="!value">Select...</option>
|
|
<template x-for="opt in options" :key="opt">
|
|
<option
|
|
:value="opt"
|
|
:selected="value === opt"
|
|
x-text="opt"
|
|
></option>
|
|
</template>
|
|
</select>
|
|
</template>
|
|
|
|
<!-- Errors -->
|
|
<template x-if="hasError">
|
|
<div class="label">
|
|
<template x-for="errMsg in errors" :key="errMsg">
|
|
<span class="label-text-alt text-error" x-text="errMsg"></span>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</div>
|