Arno Kaimbacher
49ea0fc967
Some checks failed
CI Pipeline / japa-tests (push) Failing after 59s
- validate abstratct for max 2500 characters - small changes inside page for releasing a dataset - npm updates - adapted validating messages
143 lines
4.4 KiB
Vue
143 lines
4.4 KiB
Vue
<script setup>
|
|
import { computed, ref, onMounted, onBeforeUnmount } from 'vue';
|
|
import { MainService } from '@/Stores/main';
|
|
import FormControlIcon from '@/Components/FormControlIcon.vue';
|
|
const props = defineProps({
|
|
name: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
id: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
autocomplete: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
placeholder: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
inputmode: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
icon: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
options: {
|
|
type: [Array, Object],
|
|
default: null,
|
|
},
|
|
type: {
|
|
type: String,
|
|
default: 'text',
|
|
},
|
|
isReadOnly: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
modelValue: {
|
|
type: [String, Number, Boolean, Array, Object],
|
|
default: '',
|
|
},
|
|
showCharCount: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
maxInputLength: {
|
|
type: Number,
|
|
default: null,
|
|
},
|
|
required: Boolean,
|
|
borderless: Boolean,
|
|
transparent: Boolean,
|
|
ctrlKFocus: Boolean,
|
|
});
|
|
const emit = defineEmits(['update:modelValue', 'setRef']);
|
|
const computedValue = computed({
|
|
get: () => props.modelValue,
|
|
set: (value) => {
|
|
emit('update:modelValue', value);
|
|
},
|
|
});
|
|
const inputElClass = computed(() => {
|
|
const base = [
|
|
'px-3 py-2 max-w-full focus:ring focus:outline-none border-gray-700 rounded w-full',
|
|
'dark:placeholder-gray-400',
|
|
computedType.value === 'textarea' ? 'h-44' : 'h-12',
|
|
props.borderless ? 'border-0' : 'border',
|
|
// props.transparent && !props.isReadOnly ? 'bg-transparent' : 'bg-white dark:bg-slate-800',
|
|
props.isReadOnly ? 'bg-gray-50 dark:bg-slate-600' : 'bg-white dark:bg-slate-800',
|
|
];
|
|
if (props.icon) {
|
|
base.push('pl-10');
|
|
}
|
|
return base;
|
|
});
|
|
const computedType = computed(() => (props.options ? 'select' : props.type));
|
|
const controlIconH = computed(() => (props.type === 'textarea' ? 'h-full' : 'h-12'));
|
|
const mainService = MainService();
|
|
const selectEl = ref(null);
|
|
const textareaEl = ref(null);
|
|
const inputEl = ref(null);
|
|
onMounted(() => {
|
|
if (selectEl.value) {
|
|
emit('setRef', selectEl.value);
|
|
} else if (textareaEl.value) {
|
|
emit('setRef', textareaEl.value);
|
|
} else {
|
|
emit('setRef', inputEl.value);
|
|
}
|
|
});
|
|
if (props.ctrlKFocus) {
|
|
const fieldFocusHook = (e) => {
|
|
if (e.ctrlKey && e.key === 'k') {
|
|
e.preventDefault();
|
|
inputEl.value.focus();
|
|
} else if (e.key === 'Escape') {
|
|
inputEl.value.blur();
|
|
}
|
|
};
|
|
onMounted(() => {
|
|
if (!mainService.isFieldFocusRegistered) {
|
|
window.addEventListener('keydown', fieldFocusHook);
|
|
mainService.isFieldFocusRegistered = true;
|
|
} else {
|
|
// console.error('Duplicate field focus event')
|
|
}
|
|
});
|
|
onBeforeUnmount(() => {
|
|
window.removeEventListener('keydown', fieldFocusHook);
|
|
mainService.isFieldFocusRegistered = false;
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="relative">
|
|
<select v-if="computedType === 'select'" :id="id" v-model="computedValue" :name="name" :class="inputElClass"
|
|
:disabled="isReadOnly">
|
|
<option v-if="placeholder" class="text-opacity-25" value="" disabled selected>{{ placeholder }}</option>
|
|
<option v-for="(option, index) in options" :key="index" :value="option.value ?? index">
|
|
{{ option.label ?? option }}
|
|
</option>
|
|
</select>
|
|
<textarea v-else-if="computedType === 'textarea'" :id="id" v-model="computedValue" :class="inputElClass"
|
|
:name="name" :placeholder="placeholder" :required="required" />
|
|
<input v-else :id="id" ref="inputEl" v-model="computedValue" :name="name" :inputmode="inputmode"
|
|
:autocomplete="autocomplete" :required="required" :placeholder="placeholder" :type="computedType"
|
|
:class="inputElClass" :readonly="isReadOnly" />
|
|
<FormControlIcon v-if="icon" :icon="icon" :h="controlIconH" />
|
|
<slot />
|
|
<span v-if="showCharCount" class="message-counter" :class="{ 'text-red-500': maxInputLength && maxInputLength < computedValue.length }">
|
|
{{ computedValue.length }}
|
|
<template v-if="maxInputLength">
|
|
/ {{ maxInputLength }}
|
|
</template>
|
|
</span>
|
|
</div>
|
|
</template>
|