revert: added contact email dropdown in multiselectinput
This commit is contained in:
parent
c39588e228
commit
11b5563fa2
@ -19,83 +19,20 @@
|
|||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</Button>
|
</Button>
|
||||||
<div class="flex-1">
|
<TextInput
|
||||||
<Combobox v-model="selectedValue" nullable>
|
class="min-w-20 flex-1 border-none bg-white hover:bg-white focus:border-none focus:!shadow-none focus-visible:!ring-0"
|
||||||
<Popover class="w-full" v-model:show="showOptions">
|
v-model="currentValue"
|
||||||
<template #target="{ togglePopover }">
|
@keydown.enter.capture.stop="addValue"
|
||||||
<ComboboxInput
|
@keydown.tab.capture.stop="addValue"
|
||||||
ref="search"
|
@keydown.delete.capture.stop="removeLastValue"
|
||||||
class="search-input form-input w-full border-none bg-white hover:bg-white focus:border-none focus:!shadow-none focus-visible:!ring-0"
|
/>
|
||||||
type="text"
|
|
||||||
:value="query"
|
|
||||||
@change="
|
|
||||||
(e) => {
|
|
||||||
query = e.target.value
|
|
||||||
showOptions = true
|
|
||||||
}
|
|
||||||
"
|
|
||||||
autocomplete="off"
|
|
||||||
@focus="() => togglePopover()"
|
|
||||||
@keydown.delete.capture.stop="removeLastValue"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
<template #body="{ isOpen }">
|
|
||||||
<div v-show="isOpen">
|
|
||||||
<div class="mt-1 rounded-lg bg-white py-1 text-base shadow-2xl">
|
|
||||||
<ComboboxOptions
|
|
||||||
class="my-1 max-h-[12rem] overflow-y-auto px-1.5"
|
|
||||||
static
|
|
||||||
>
|
|
||||||
<ComboboxOption
|
|
||||||
v-for="option in filterOptions"
|
|
||||||
:key="option.value"
|
|
||||||
:value="option"
|
|
||||||
v-slot="{ active }"
|
|
||||||
>
|
|
||||||
<li
|
|
||||||
:class="[
|
|
||||||
'flex cursor-pointer items-center rounded px-2 py-1 text-base',
|
|
||||||
{ 'bg-gray-100': active },
|
|
||||||
]"
|
|
||||||
>
|
|
||||||
<UserAvatar
|
|
||||||
class="mr-2"
|
|
||||||
:user="option.value"
|
|
||||||
size="lg"
|
|
||||||
/>
|
|
||||||
<div class="flex flex-col gap-1 p-1 text-gray-800">
|
|
||||||
<div class="text-base font-medium">
|
|
||||||
{{ option.label }}
|
|
||||||
</div>
|
|
||||||
<div class="text-sm text-gray-600">
|
|
||||||
{{ option.value }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ComboboxOption>
|
|
||||||
</ComboboxOptions>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
</Popover>
|
|
||||||
</Combobox>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<ErrorMessage class="mt-2 pl-2" v-if="error" :message="error" />
|
<ErrorMessage class="mt-2 pl-2" v-if="error" :message="error" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import {
|
import { ref, defineModel } from 'vue'
|
||||||
Combobox,
|
|
||||||
ComboboxInput,
|
|
||||||
ComboboxOptions,
|
|
||||||
ComboboxOption,
|
|
||||||
} from '@headlessui/vue'
|
|
||||||
import UserAvatar from '@/components/UserAvatar.vue'
|
|
||||||
import { contactsStore } from '@/stores/contacts'
|
|
||||||
import { Popover } from 'frappe-ui'
|
|
||||||
import { ref, defineModel, computed, nextTick } from 'vue'
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
validate: {
|
validate: {
|
||||||
@ -109,65 +46,16 @@ const props = defineProps({
|
|||||||
})
|
})
|
||||||
|
|
||||||
const values = defineModel()
|
const values = defineModel()
|
||||||
|
const currentValue = ref('')
|
||||||
const { getContacts } = contactsStore()
|
|
||||||
|
|
||||||
const emails = ref([])
|
const emails = ref([])
|
||||||
const search = ref(null)
|
const search = ref(null)
|
||||||
const error = ref(null)
|
const error = ref(null)
|
||||||
const query = ref('')
|
|
||||||
const showOptions = ref(false)
|
|
||||||
|
|
||||||
const emailList = computed(() => {
|
const addValue = () => {
|
||||||
let contacts = getContacts() || []
|
|
||||||
return (
|
|
||||||
contacts
|
|
||||||
?.filter((contact) => contact.email_id)
|
|
||||||
.map((contact) => {
|
|
||||||
return {
|
|
||||||
label: contact.full_name || contact.email_id,
|
|
||||||
value: contact.email_id,
|
|
||||||
}
|
|
||||||
}) || []
|
|
||||||
)
|
|
||||||
})
|
|
||||||
|
|
||||||
const selectedValue = computed({
|
|
||||||
get: () => query.value || '',
|
|
||||||
set: (val) => {
|
|
||||||
query.value = ''
|
|
||||||
if (val) {
|
|
||||||
showOptions.value = false
|
|
||||||
}
|
|
||||||
addValue(val.value)
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
const filterOptions = computed(() => {
|
|
||||||
if (!query.value) {
|
|
||||||
return emailList.value
|
|
||||||
}
|
|
||||||
let filteredList = emailList.value?.filter((option) => {
|
|
||||||
let searchTexts = [option.label, option.value]
|
|
||||||
return searchTexts.some((text) =>
|
|
||||||
(text || '').toString().toLowerCase().includes(query.value.toLowerCase())
|
|
||||||
)
|
|
||||||
})
|
|
||||||
|
|
||||||
if (filteredList.length === 0) {
|
|
||||||
filteredList.push({
|
|
||||||
label: query.value,
|
|
||||||
value: query.value,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
return filteredList
|
|
||||||
})
|
|
||||||
|
|
||||||
const addValue = (value) => {
|
|
||||||
error.value = null
|
error.value = null
|
||||||
if (value) {
|
if (currentValue.value) {
|
||||||
const splitValues = value.split(',')
|
const splitValues = currentValue.value.split(',')
|
||||||
splitValues.forEach((value) => {
|
splitValues.forEach((value) => {
|
||||||
value = value.trim()
|
value = value.trim()
|
||||||
if (value) {
|
if (value) {
|
||||||
@ -180,11 +68,11 @@ const addValue = (value) => {
|
|||||||
}
|
}
|
||||||
// add value to values array
|
// add value to values array
|
||||||
values.value.push(value)
|
values.value.push(value)
|
||||||
value = value.replace(value, '')
|
currentValue.value = currentValue.value.replace(value, '')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
!error.value && (value = '')
|
!error.value && (currentValue.value = '')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -193,21 +81,8 @@ const removeValue = (value) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const removeLastValue = () => {
|
const removeLastValue = () => {
|
||||||
if (query.value) return
|
if (!currentValue.value) {
|
||||||
|
|
||||||
let emailRef = emails.value[emails.value.length - 1].$el
|
|
||||||
if (document.activeElement === emailRef) {
|
|
||||||
values.value.pop()
|
values.value.pop()
|
||||||
nextTick(() => {
|
|
||||||
if (values.value.length) {
|
|
||||||
emailRef = emails.value[emails.value.length - 1].$el
|
|
||||||
emailRef.focus()
|
|
||||||
} else {
|
|
||||||
setFocus()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
emailRef.focus()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user