113 lines
2.6 KiB
Vue
113 lines
2.6 KiB
Vue
<script setup>
|
|
import { computed, ref } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
const emit = defineEmits([
|
|
'update:modelValue',
|
|
'update:options',
|
|
'keyup.enter',
|
|
'remove',
|
|
]);
|
|
|
|
const $props = defineProps({
|
|
modelValue: {
|
|
type: [String, Number],
|
|
default: null,
|
|
},
|
|
isOutlined: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
info: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
clearable: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
});
|
|
|
|
const { t } = useI18n();
|
|
const requiredFieldRule = (val) => !!val || t('globals.fieldRequired');
|
|
const vnInputRef = ref(null);
|
|
const value = computed({
|
|
get() {
|
|
return $props.modelValue;
|
|
},
|
|
set(value) {
|
|
emit('update:modelValue', value);
|
|
},
|
|
});
|
|
const hover = ref(false);
|
|
const styleAttrs = computed(() => {
|
|
return $props.isOutlined
|
|
? {
|
|
dense: true,
|
|
outlined: true,
|
|
rounded: true,
|
|
}
|
|
: {};
|
|
});
|
|
|
|
const focus = () => {
|
|
vnInputRef.value.focus();
|
|
};
|
|
|
|
defineExpose({
|
|
focus,
|
|
});
|
|
|
|
const inputRules = [
|
|
(val) => {
|
|
const { min } = vnInputRef.value.$attrs;
|
|
if (min >= 0) if (Math.floor(val) < min) return t('inputMin', { value: min });
|
|
},
|
|
];
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
@mouseover="hover = true"
|
|
@mouseleave="hover = false"
|
|
:rules="$attrs.required ? [requiredFieldRule] : null"
|
|
>
|
|
<QInput
|
|
ref="vnInputRef"
|
|
v-model="value"
|
|
v-bind="{ ...$attrs, ...styleAttrs }"
|
|
:type="$attrs.type"
|
|
:class="{ required: $attrs.required }"
|
|
@keyup.enter="emit('keyup.enter')"
|
|
:clearable="false"
|
|
:rules="inputRules"
|
|
:lazy-rules="true"
|
|
hide-bottom-space
|
|
>
|
|
<template v-if="$slots.prepend" #prepend>
|
|
<slot name="prepend" />
|
|
</template>
|
|
<template #append>
|
|
<slot name="append" v-if="$slots.append && !$attrs.disabled" />
|
|
<QIcon
|
|
name="close"
|
|
size="xs"
|
|
v-if="hover && value && !$attrs.disabled && $props.clearable"
|
|
@click="value = null"
|
|
></QIcon>
|
|
<QIcon v-if="info" name="info">
|
|
<QTooltip max-width="350px">
|
|
{{ info }}
|
|
</QTooltip>
|
|
</QIcon>
|
|
</template>
|
|
</QInput>
|
|
</div>
|
|
</template>
|
|
<i18n>
|
|
en:
|
|
inputMin: Must be more than {value}
|
|
es:
|
|
inputMin: Debe ser mayor a {value}
|
|
</i18n>
|