mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
166 lines
4.5 KiB
Vue
166 lines
4.5 KiB
Vue
<script lang="ts">
|
|
import type { InputHTMLAttributes } from 'vue'
|
|
import { tv, type VariantProps } from 'tailwind-variants'
|
|
import type { AppConfig } from '@nuxt/schema'
|
|
import _appConfig from '#build/app.config'
|
|
import theme from '#build/ui/input'
|
|
import type { UseComponentIconsProps } from '#ui/composables/useComponentIcons'
|
|
|
|
const appConfig = _appConfig as AppConfig & { ui: { input: Partial<typeof theme> } }
|
|
|
|
const input = tv({ extend: tv(theme), ...(appConfig.ui?.input || {}) })
|
|
|
|
type InputVariants = VariantProps<typeof input>
|
|
|
|
export interface InputProps extends UseComponentIconsProps {
|
|
id?: string
|
|
name?: string
|
|
type?: InputHTMLAttributes['type']
|
|
/**
|
|
* The placeholder text when the input is empty.
|
|
* @defaultValue `'Type a command or search...'`
|
|
*/
|
|
placeholder?: string
|
|
color?: InputVariants['color']
|
|
variant?: InputVariants['variant']
|
|
size?: InputVariants['size']
|
|
required?: boolean
|
|
autofocus?: boolean
|
|
autofocusDelay?: number
|
|
disabled?: boolean
|
|
class?: any
|
|
ui?: Partial<typeof input.slots>
|
|
}
|
|
|
|
export interface InputEmits {
|
|
(e: 'blur', event: FocusEvent): void
|
|
}
|
|
|
|
export interface InputSlots {
|
|
leading(): any
|
|
default(): any
|
|
trailing(props: { iconClass: string }): any
|
|
}
|
|
</script>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, computed, onMounted } from 'vue'
|
|
import { useComponentIcons, useFormField } from '#imports'
|
|
import { UIcon, UAvatar } from '#components'
|
|
import { looseToNumber } from '#ui/utils'
|
|
|
|
defineOptions({ inheritAttrs: false })
|
|
|
|
const props = withDefaults(defineProps<InputProps>(), {
|
|
type: 'text',
|
|
autofocusDelay: 100
|
|
})
|
|
const emits = defineEmits<InputEmits>()
|
|
const slots = defineSlots<InputSlots>()
|
|
|
|
const [modelValue, modelModifiers] = defineModel<string | number>()
|
|
|
|
const { emitFormBlur, emitFormInput, size, color, id, name, disabled } = useFormField<InputProps>(props)
|
|
const { isLeading, isTrailing, leadingIconName, trailingIconName, avatarSize } = useComponentIcons<InputProps>(props)
|
|
// const { size: sizeButtonGroup, rounded } = useInjectButtonGroup({ ui, props })
|
|
|
|
// const size = computed(() => sizeButtonGroup.value || sizeFormGroup.value)
|
|
|
|
const ui = computed(() => tv({ extend: input, slots: props.ui })({
|
|
type: props.type as InputVariants['type'],
|
|
color: color.value,
|
|
variant: props.variant,
|
|
size: size?.value,
|
|
loading: props.loading,
|
|
leading: isLeading.value || !!slots.leading,
|
|
trailing: isTrailing.value || !!slots.trailing
|
|
}))
|
|
|
|
const inputRef = ref<HTMLInputElement | null>(null)
|
|
|
|
function autoFocus() {
|
|
if (props.autofocus) {
|
|
inputRef.value?.focus()
|
|
}
|
|
}
|
|
|
|
// Custom function to handle the v-model properties
|
|
function updateInput(value: string) {
|
|
if (modelModifiers.trim) {
|
|
value = value.trim()
|
|
}
|
|
|
|
if (modelModifiers.number || props.type === 'number') {
|
|
value = looseToNumber(value)
|
|
}
|
|
|
|
modelValue.value = value
|
|
emitFormInput()
|
|
}
|
|
|
|
function onInput(event: Event) {
|
|
if (!modelModifiers.lazy) {
|
|
updateInput((event.target as HTMLInputElement).value)
|
|
}
|
|
}
|
|
|
|
function onChange(event: Event) {
|
|
const value = (event.target as HTMLInputElement).value
|
|
|
|
if (modelModifiers.lazy) {
|
|
updateInput(value)
|
|
}
|
|
|
|
// Update trimmed input so that it has same behavior as native input https://github.com/vuejs/core/blob/5ea8a8a4fab4e19a71e123e4d27d051f5e927172/packages/runtime-dom/src/directives/vModel.ts#L63
|
|
if (modelModifiers.trim) {
|
|
(event.target as HTMLInputElement).value = value.trim()
|
|
}
|
|
}
|
|
|
|
function onBlur(event: FocusEvent) {
|
|
emitFormBlur()
|
|
emits('blur', event)
|
|
}
|
|
|
|
onMounted(() => {
|
|
setTimeout(() => {
|
|
autoFocus()
|
|
}, props.autofocusDelay)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="ui.root({ class: props.class })">
|
|
<input
|
|
:id="id"
|
|
ref="inputRef"
|
|
:type="type"
|
|
:value="modelValue"
|
|
:name="name"
|
|
:placeholder="placeholder"
|
|
:class="ui.base()"
|
|
:disabled="disabled"
|
|
:required="required"
|
|
v-bind="$attrs"
|
|
@input="onInput"
|
|
@blur="onBlur"
|
|
@change="onChange"
|
|
>
|
|
|
|
<slot />
|
|
|
|
<span v-if="isLeading || $slots.leading" :class="ui.leading()">
|
|
<slot name="leading">
|
|
<UAvatar v-if="avatar" :size="avatarSize" v-bind="avatar" :class="ui.leadingAvatar()" />
|
|
<UIcon v-else-if="leadingIconName" :name="leadingIconName" :class="ui.leadingIcon()" />
|
|
</slot>
|
|
</span>
|
|
|
|
<span v-if="isTrailing || $slots.trailing" :class="ui.trailing()">
|
|
<slot name="trailing" :icon-class="ui.trailingIcon()">
|
|
<UIcon v-if="trailingIconName" :name="trailingIconName" :class="ui.trailingIcon()" />
|
|
</slot>
|
|
</span>
|
|
</div>
|
|
</template>
|