82 lines
1.9 KiB
Vue
82 lines
1.9 KiB
Vue
<template>
|
|
<label class="block">
|
|
<div v-if="label" class="mb-2 text-xs font-medium" :class="labelClass">
|
|
{{ label }}
|
|
</div>
|
|
<input
|
|
:type="type"
|
|
class="border rounded w-full py-2 px-3 leading-tight outline-none"
|
|
:class="inputHasError"
|
|
:placeholder="placeholder"
|
|
:value="value"
|
|
@change="onChange"
|
|
/>
|
|
<div v-if="error" class="text-red-400 mt-2 text-xs font-medium">
|
|
{{ error }}
|
|
</div>
|
|
<div
|
|
v-if="!error && helpText"
|
|
class="text-red-400 mt-2 text-xs font-medium"
|
|
>
|
|
{{ helpText }}
|
|
</div>
|
|
</label>
|
|
</template>
|
|
<script>
|
|
import darkModeMixin from 'widget/mixins/darkModeMixin';
|
|
export default {
|
|
mixins: [darkModeMixin],
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
type: {
|
|
type: String,
|
|
default: 'text',
|
|
},
|
|
placeholder: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
value: {
|
|
type: [String, Number],
|
|
required: true,
|
|
},
|
|
error: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
helpText: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
computed: {
|
|
labelClass() {
|
|
return this.error
|
|
? `text-red-400 ${this.$dm('text-black-800', 'dark:text-slate-50')}`
|
|
: `text-black-800 ${this.$dm('text-black-800', 'dark:text-slate-50')}`;
|
|
},
|
|
isInputDarkOrLightMode() {
|
|
return `${this.$dm('bg-white', 'dark:bg-slate-600')} ${this.$dm(
|
|
'text-slate-700',
|
|
'dark:text-slate-50'
|
|
)}`;
|
|
},
|
|
inputBorderColor() {
|
|
return `${this.$dm('border-black-200', 'dark:border-black-500')}`;
|
|
},
|
|
inputHasError() {
|
|
return this.error
|
|
? `border-red-200 hover:border-red-300 focus:border-red-300 ${this.isInputDarkOrLightMode}`
|
|
: `hover:border-black-300 focus:border-black-300 ${this.isInputDarkOrLightMode} ${this.inputBorderColor}`;
|
|
},
|
|
},
|
|
methods: {
|
|
onChange(event) {
|
|
this.$emit('input', event.target.value);
|
|
},
|
|
},
|
|
};
|
|
</script>
|