adrema/resources/js/views/formtemplate/CheckboxesField.vue

45 lines
1.7 KiB
Vue
Raw Normal View History

2023-12-26 00:44:49 +01:00
<template>
<div class="space-y-1">
<span class="text-xs font-semibold text-gray-400">Optionen</span>
2024-04-11 23:01:52 +02:00
<div v-for="(option, index) in modelValue.options" :key="index" class="flex space-x-2">
<f-text
:id="`options-${index}`"
size="sm"
class="grow"
:model-value="option"
@update:modelValue="$emit('update:modelValue', {...props.modelValue, options: setOption(props.modelValue.options, index, $event)})"
></f-text>
<ui-action-button
tooltip="Löschen"
icon="trash"
class="btn-danger"
@click="$emit('update:modelValue', {...modelValue, options: removeOption(modelValue.options, index)})"
></ui-action-button>
</div>
<ui-icon-button icon="plus" @click="$emit('update:modelValue', {...modelValue, options: addOption(modelValue.options)})">Option einfügen</ui-icon-button>
2024-06-28 12:43:05 +02:00
<f-text id="min" type="number" size="sm" label="Minimale Anzahl Elemente" :model-value="modelValue.min" @update:model-value="$emit('update:modelValue', {...modelValue, min: $event})"></f-text>
2024-06-10 17:46:41 +02:00
<f-text
id="max"
type="number"
size="sm"
name="max"
label="Maximale Anzahl Elemente"
:model-value="modelValue.max"
@update:model-value="$emit('update:modelValue', {...modelValue, max: $event})"
></f-text>
2023-12-26 00:44:49 +01:00
</div>
</template>
<script setup>
2024-04-11 23:01:52 +02:00
import useElements from './useElements.js';
const {addOption, setOption, removeOption} = useElements();
2023-12-26 00:44:49 +01:00
const props = defineProps({
modelValue: {},
2023-12-31 14:29:50 +01:00
meta: {},
payload: {},
2023-12-26 00:44:49 +01:00
});
const emit = defineEmits(['update:modelValue']);
</script>