2024-11-12 09:18:07 +00:00
|
|
|
<template>
|
|
|
|
<span class="text-sm">{{ label }}</span>
|
|
|
|
<div class="relative">
|
2024-11-12 14:33:35 +00:00
|
|
|
<input v-if="false" type="text" :value="modelValue" @input="onInput" :class="['border border-surface-300 dark:border-surface-600 rounded-lg py-2 px-2 w-full', { 'pr-8': type === 'color' }]" />
|
2024-11-12 13:44:52 +00:00
|
|
|
<AutoComplete
|
|
|
|
:modelValue="modelValue"
|
|
|
|
@input="onInput"
|
|
|
|
:suggestions="items"
|
|
|
|
@complete="search"
|
|
|
|
unstyled
|
|
|
|
:pt="{
|
|
|
|
pcInputText: {
|
|
|
|
root: ['border border-surface-300 dark:border-surface-600 rounded-lg py-2 px-2 w-full', { 'pr-8': type === 'color' }]
|
|
|
|
},
|
2024-11-12 14:33:35 +00:00
|
|
|
overlay: 'border border-surface-200 dark:border-surface-700 bg-surface-0 dark:bg-surface-950 shadow-2 rounded-md',
|
2024-11-12 13:44:52 +00:00
|
|
|
listContainer: 'max-h-40 overflow-auto',
|
|
|
|
list: 'm-0 py-2 px-0 list-none',
|
2024-11-12 14:33:35 +00:00
|
|
|
option: 'cursor-pointer py-1 px-2 text-sm text-surface-700 dark:text-white/80 data-[p-focus=true]:bg-surface-100 data-[p-focus=true]:dark:bg-surface-800'
|
2024-11-12 13:44:52 +00:00
|
|
|
}"
|
2024-11-12 14:33:35 +00:00
|
|
|
@option-select="onOptionSelect"
|
2024-11-12 13:44:52 +00:00
|
|
|
/>
|
2024-11-12 09:18:07 +00:00
|
|
|
<div v-if="type === 'color'" class="absolute right-[4px] top-1/2 -mt-3 w-6 h-6 rounded-md border border-surface-300 dark:border-surface-600" :style="{ backgroundColor: previewColor }"></div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { $dt } from '@primevue/themes';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
emits: ['update:modelValue'],
|
|
|
|
props: {
|
|
|
|
label: {
|
|
|
|
type: String,
|
|
|
|
default: undefined
|
|
|
|
},
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
default: undefined
|
|
|
|
},
|
|
|
|
modelValue: {
|
|
|
|
type: null,
|
|
|
|
default: undefined
|
|
|
|
}
|
|
|
|
},
|
2024-11-12 23:14:58 +00:00
|
|
|
inject: ['$acTokens'],
|
2024-11-12 13:44:52 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
items: []
|
|
|
|
};
|
|
|
|
},
|
2024-11-12 09:18:07 +00:00
|
|
|
methods: {
|
2024-11-12 14:33:35 +00:00
|
|
|
onOptionSelect(event) {
|
|
|
|
this.$emit('update:modelValue', event.value);
|
|
|
|
},
|
2024-11-12 09:18:07 +00:00
|
|
|
onInput(event) {
|
|
|
|
this.$emit('update:modelValue', event.target.value);
|
2024-11-12 13:44:52 +00:00
|
|
|
},
|
|
|
|
search(event) {
|
|
|
|
const query = event.query;
|
|
|
|
|
|
|
|
if (query.startsWith('{')) {
|
2024-11-12 23:14:58 +00:00
|
|
|
this.items = this.$acTokens.filter((t) => t.startsWith(query));
|
2024-11-12 13:44:52 +00:00
|
|
|
} else {
|
|
|
|
this.items = [];
|
|
|
|
}
|
2024-11-12 09:18:07 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
previewColor() {
|
2024-11-12 14:33:35 +00:00
|
|
|
return this.modelValue && this.modelValue.startsWith('{') && this.modelValue.endsWith('}') ? $dt(this.modelValue).variable : this.modelValue;
|
2024-11-12 09:18:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|