mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 05:03:52 +01:00
76 lines
2.3 KiB
Vue
76 lines
2.3 KiB
Vue
|
<script setup>
|
||
|
import { useIdGenerator } from '@/composables/helpers'
|
||
|
|
||
|
defineOptions({
|
||
|
inheritAttrs: false
|
||
|
})
|
||
|
|
||
|
const { inputId } = useIdGenerator(props.inputType, props.fieldName)
|
||
|
|
||
|
const props = defineProps({
|
||
|
modelValue: [String, Number, Boolean],
|
||
|
label: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
fieldName: {
|
||
|
type: String,
|
||
|
default: '',
|
||
|
required: true
|
||
|
},
|
||
|
fieldError: [String],
|
||
|
placeholder: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
help: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
size: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
|
hasOffset: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
isDisabled: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
maxLength: {
|
||
|
type: Number,
|
||
|
default: null
|
||
|
},
|
||
|
isIndented: Boolean,
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="mb-3" :class="{ 'pt-3' : hasOffset, 'is-flex' : isIndented }">
|
||
|
<div v-if="isIndented" class="mx-2 pr-1" :style="{ 'opacity': isDisabled ? '0.5' : '1' }">
|
||
|
<FontAwesomeIcon class="has-text-grey" :icon="['fas', 'chevron-right']" transform="rotate-135"/>
|
||
|
</div>
|
||
|
<div class="field" :class="{ 'is-flex-grow-5' : isIndented }">
|
||
|
<label :for="inputId" class="label" v-html="$t(label)"></label>
|
||
|
<div class="control" :class="{ 'has-icons-left' : leftIcon, 'has-icons-right': rightIcon }">
|
||
|
<textarea
|
||
|
:disabled="isDisabled"
|
||
|
:id="inputId"
|
||
|
class="textarea"
|
||
|
:class="size"
|
||
|
:value="modelValue"
|
||
|
:placeholder="placeholder"
|
||
|
v-bind="$attrs"
|
||
|
v-on:input="$emit('update:modelValue', $event.target.value)"
|
||
|
v-on:change="$emit('change:modelValue', $event.target.value)"
|
||
|
:maxlength="maxLength"
|
||
|
/>
|
||
|
</div>
|
||
|
<FieldError v-if="fieldError != undefined" :error="fieldError" :field="fieldName" />
|
||
|
<p class="help" v-html="$t(help)" v-if="help"></p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|