element-plus/packages/components/select/src/useSelect.ts
Alan Wang 07353a13e1
fix(components): [el-select] first item hover status error (#3880)
Co-authored-by: “Alanscut” <“wp_scut@163.com”>
2021-11-05 18:40:07 +08:00

860 lines
22 KiB
TypeScript

import {
inject,
nextTick,
computed,
watch,
ref,
reactive,
shallowRef,
triggerRef,
} from 'vue'
import { isObject, toRawType } from '@vue/shared'
import lodashDebounce from 'lodash/debounce'
import isEqual from 'lodash/isEqual'
import { UPDATE_MODEL_EVENT, CHANGE_EVENT } from '@element-plus/utils/constants'
import { EVENT_CODE } from '@element-plus/utils/aria'
import { useLocaleInject } from '@element-plus/hooks'
import isServer from '@element-plus/utils/isServer'
import scrollIntoView from '@element-plus/utils/scroll-into-view'
import { isKorean } from '@element-plus/utils/isDef'
import { getValueByPath, useGlobalConfig } from '@element-plus/utils/util'
import { elFormKey, elFormItemKey } from '@element-plus/tokens'
import { ArrowUp } from '@element-plus/icons'
import type { QueryChangeCtx, SelectOptionProxy } from './token'
import type { ElFormContext, ElFormItemContext } from '@element-plus/tokens'
export function useSelectStates(props) {
const { t } = useLocaleInject()
return reactive({
options: new Map(),
cachedOptions: new Map(),
createdLabel: null,
createdSelected: false,
selected: props.multiple ? [] : ({} as any),
inputLength: 20,
inputWidth: 0,
initialInputHeight: 0,
optionsCount: 0,
filteredOptionsCount: 0,
visible: false,
softFocus: false,
selectedLabel: '',
hoverIndex: -1,
query: '',
previousQuery: null,
inputHovering: false,
cachedPlaceHolder: '',
currentPlaceholder: t('el.select.placeholder'),
menuVisibleOnFocus: false,
isOnComposition: false,
isSilentBlur: false,
prefixWidth: null,
tagInMultiLine: false,
})
}
type States = ReturnType<typeof useSelectStates>
export const useSelect = (props, states: States, ctx) => {
const ELEMENT = useGlobalConfig()
const { t } = useLocaleInject()
// template refs
const reference = ref(null)
const input = ref(null)
const popper = ref(null)
const tags = ref(null)
const selectWrapper = ref<HTMLElement | null>(null)
const scrollbar = ref(null)
const hoverOption = ref(-1)
const queryChange = shallowRef<QueryChangeCtx>({ query: '' })
const groupQueryChange = shallowRef('')
// inject
const elForm = inject(elFormKey, {} as ElFormContext)
const elFormItem = inject(elFormItemKey, {} as ElFormItemContext)
const readonly = computed(
() => !props.filterable || props.multiple || !states.visible
)
const selectDisabled = computed(() => props.disabled || elForm.disabled)
const showClose = computed(() => {
const hasValue = props.multiple
? Array.isArray(props.modelValue) && props.modelValue.length > 0
: props.modelValue !== undefined &&
props.modelValue !== null &&
props.modelValue !== ''
const criteria =
props.clearable &&
!selectDisabled.value &&
states.inputHovering &&
hasValue
return criteria
})
const iconComponent = computed(() =>
props.remote && props.filterable ? '' : ArrowUp
)
const iconReverse = computed(() =>
iconComponent.value && states.visible ? 'is-reverse' : ''
)
const debounce = computed(() => (props.remote ? 300 : 0))
const emptyText = computed(() => {
if (props.loading) {
return props.loadingText || t('el.select.loading')
} else {
if (props.remote && states.query === '' && states.options.size === 0)
return false
if (
props.filterable &&
states.query &&
states.options.size > 0 &&
states.filteredOptionsCount === 0
) {
return props.noMatchText || t('el.select.noMatch')
}
if (states.options.size === 0) {
return props.noDataText || t('el.select.noData')
}
}
return null
})
const optionsArray = computed(() => Array.from(states.options.values()))
const cachedOptionsArray = computed(() =>
Array.from(states.cachedOptions.values())
)
const showNewOption = computed(() => {
const hasExistingOption = optionsArray.value
.filter((option) => {
return !option.created
})
.some((option) => {
return option.currentLabel === states.query
})
return (
props.filterable &&
props.allowCreate &&
states.query !== '' &&
!hasExistingOption
)
})
const selectSize = computed(
() => props.size || elFormItem.size || ELEMENT.size
)
const collapseTagSize = computed(() =>
['small', 'mini'].indexOf(selectSize.value) > -1 ? 'mini' : 'small'
)
const dropMenuVisible = computed(
() => states.visible && emptyText.value !== false
)
// watch
watch(
() => selectDisabled.value,
() => {
nextTick(() => {
resetInputHeight()
})
}
)
watch(
() => props.placeholder,
(val) => {
states.cachedPlaceHolder = states.currentPlaceholder = val
}
)
watch(
() => props.modelValue,
(val, oldVal) => {
if (props.multiple) {
resetInputHeight()
if ((val && val.length > 0) || (input.value && states.query !== '')) {
states.currentPlaceholder = ''
} else {
states.currentPlaceholder = states.cachedPlaceHolder
}
if (props.filterable && !props.reserveKeyword) {
states.query = ''
handleQueryChange(states.query)
}
}
setSelected()
if (props.filterable && !props.multiple) {
states.inputLength = 20
}
if (!isEqual(val, oldVal)) {
elFormItem.validate?.('change')
}
},
{
flush: 'post',
deep: true,
}
)
watch(
() => states.visible,
(val) => {
if (!val) {
input.value && input.value.blur()
states.query = ''
states.previousQuery = null
states.selectedLabel = ''
states.inputLength = 20
states.menuVisibleOnFocus = false
resetHoverIndex()
nextTick(() => {
if (
input.value &&
input.value.value === '' &&
states.selected.length === 0
) {
states.currentPlaceholder = states.cachedPlaceHolder
}
})
if (!props.multiple) {
if (states.selected) {
if (
props.filterable &&
props.allowCreate &&
states.createdSelected &&
states.createdLabel
) {
states.selectedLabel = states.createdLabel
} else {
states.selectedLabel = states.selected.currentLabel
}
if (props.filterable) states.query = states.selectedLabel
}
if (props.filterable) {
states.currentPlaceholder = states.cachedPlaceHolder
}
}
} else {
popper.value?.update?.()
if (props.filterable) {
states.filteredOptionsCount = states.optionsCount
states.query = props.remote ? '' : states.selectedLabel
if (props.multiple) {
input.value.focus()
} else {
if (states.selectedLabel) {
states.currentPlaceholder = states.selectedLabel
states.selectedLabel = ''
}
}
handleQueryChange(states.query)
if (!props.multiple && !props.remote) {
queryChange.value.query = ''
triggerRef(queryChange)
triggerRef(groupQueryChange)
}
}
}
ctx.emit('visible-change', val)
}
)
watch(
// fix `Array.prototype.push/splice/..` cannot trigger non-deep watcher
// https://github.com/vuejs/vue-next/issues/2116
() => states.options.entries(),
() => {
if (isServer) return
popper.value?.update?.()
if (props.multiple) {
resetInputHeight()
}
const inputs = selectWrapper.value?.querySelectorAll('input') || []
if ([].indexOf.call(inputs, document.activeElement) === -1) {
setSelected()
}
if (
props.defaultFirstOption &&
(props.filterable || props.remote) &&
states.filteredOptionsCount
) {
checkDefaultFirstOption()
}
},
{
flush: 'post',
}
)
watch(
() => states.hoverIndex,
(val) => {
if (typeof val === 'number' && val > -1) {
hoverOption.value = optionsArray.value[val] || {}
}
optionsArray.value.forEach((option) => {
option.hover = hoverOption.value === option
})
}
)
// methods
const resetInputHeight = () => {
if (props.collapseTags && !props.filterable) return
nextTick(() => {
if (!reference.value) return
const inputChildNodes = reference.value.$el.childNodes
const input = [].filter.call(
inputChildNodes,
(item) => item.tagName === 'INPUT'
)[0]
const _tags = tags.value
const sizeInMap = states.initialInputHeight || 40
input.style.height =
states.selected.length === 0
? `${sizeInMap}px`
: `${Math.max(
_tags
? _tags.clientHeight + (_tags.clientHeight > sizeInMap ? 6 : 0)
: 0,
sizeInMap
)}px`
states.tagInMultiLine = parseFloat(input.style.height) > sizeInMap
if (states.visible && emptyText.value !== false) {
popper.value?.update?.()
}
})
}
const handleQueryChange = (val) => {
if (states.previousQuery === val || states.isOnComposition) return
if (
states.previousQuery === null &&
(typeof props.filterMethod === 'function' ||
typeof props.remoteMethod === 'function')
) {
states.previousQuery = val
return
}
states.previousQuery = val
nextTick(() => {
if (states.visible) popper.value?.update?.()
})
states.hoverIndex = -1
if (props.multiple && props.filterable) {
nextTick(() => {
const length = input.value.length * 15 + 20
states.inputLength = props.collapseTags ? Math.min(50, length) : length
managePlaceholder()
resetInputHeight()
})
}
if (props.remote && typeof props.remoteMethod === 'function') {
states.hoverIndex = -1
props.remoteMethod(val)
} else if (typeof props.filterMethod === 'function') {
props.filterMethod(val)
triggerRef(groupQueryChange)
} else {
states.filteredOptionsCount = states.optionsCount
queryChange.value.query = val
triggerRef(queryChange)
triggerRef(groupQueryChange)
}
if (
props.defaultFirstOption &&
(props.filterable || props.remote) &&
states.filteredOptionsCount
) {
checkDefaultFirstOption()
}
}
const managePlaceholder = () => {
if (states.currentPlaceholder !== '') {
states.currentPlaceholder = input.value.value
? ''
: states.cachedPlaceHolder
}
}
/**
* find and highlight first option as default selected
* @remark
* - if the first option in dropdown list is user-created,
* it would be at the end of the optionsArray
* so find it and set hover.
* (NOTE: there must be only one user-created option in dropdown list with query)
* - if there's no user-created option in list, just find the first one as usual
* (NOTE: exclude options that are disabled or in disabled-group)
*/
const checkDefaultFirstOption = () => {
const optionsInDropdown = optionsArray.value.filter(
(n) => n.visible && !n.disabled && !n.groupDisabled
)
const userCreatedOption = optionsInDropdown.filter((n) => n.created)[0]
const firstOriginOption = optionsInDropdown[0]
states.hoverIndex = getValueIndex(
optionsArray.value,
userCreatedOption || firstOriginOption
)
}
const setSelected = () => {
if (!props.multiple) {
const option = getOption(props.modelValue)
if (option.props?.created) {
states.createdLabel = option.props.value
states.createdSelected = true
} else {
states.createdSelected = false
}
states.selectedLabel = option.currentLabel
states.selected = option
if (props.filterable) states.query = states.selectedLabel
return
}
const result = []
if (Array.isArray(props.modelValue)) {
props.modelValue.forEach((value) => {
result.push(getOption(value))
})
}
states.selected = result
nextTick(() => {
resetInputHeight()
})
}
const getOption = (value) => {
let option
const isObjectValue = toRawType(value).toLowerCase() === 'object'
const isNull = toRawType(value).toLowerCase() === 'null'
const isUndefined = toRawType(value).toLowerCase() === 'undefined'
for (let i = states.cachedOptions.size - 1; i >= 0; i--) {
const cachedOption = cachedOptionsArray.value[i]
const isEqualValue = isObjectValue
? getValueByPath(cachedOption.value, props.valueKey) ===
getValueByPath(value, props.valueKey)
: cachedOption.value === value
if (isEqualValue) {
option = {
value,
currentLabel: cachedOption.currentLabel,
isDisabled: cachedOption.isDisabled,
}
break
}
}
if (option) return option
const label = !isObjectValue && !isNull && !isUndefined ? value : ''
const newOption = {
value,
currentLabel: label,
}
if (props.multiple) {
;(newOption as any).hitState = false
}
return newOption
}
const resetHoverIndex = () => {
setTimeout(() => {
const valueKey = props.valueKey
if (!props.multiple) {
states.hoverIndex = optionsArray.value.findIndex((item) => {
return getValueKey(item) === getValueKey(states.selected)
})
} else {
if (states.selected.length > 0) {
states.hoverIndex = Math.min.apply(
null,
states.selected.map((selected) => {
return optionsArray.value.findIndex((item) => {
return (
getValueByPath(item, valueKey) ===
getValueByPath(selected, valueKey)
)
})
})
)
} else {
states.hoverIndex = -1
}
}
}, 300)
}
const handleResize = () => {
resetInputWidth()
popper.value?.update?.()
if (props.multiple) resetInputHeight()
}
const resetInputWidth = () => {
states.inputWidth = reference.value?.$el.getBoundingClientRect().width
}
const onInputChange = () => {
if (props.filterable && states.query !== states.selectedLabel) {
states.query = states.selectedLabel
handleQueryChange(states.query)
}
}
const debouncedOnInputChange = lodashDebounce(() => {
onInputChange()
}, debounce.value)
const debouncedQueryChange = lodashDebounce((e) => {
handleQueryChange(e.target.value)
}, debounce.value)
const emitChange = (val) => {
if (!isEqual(props.modelValue, val)) {
ctx.emit(CHANGE_EVENT, val)
}
}
const deletePrevTag = (e) => {
if (e.target.value.length <= 0 && !toggleLastOptionHitState()) {
const value = props.modelValue.slice()
value.pop()
ctx.emit(UPDATE_MODEL_EVENT, value)
emitChange(value)
}
if (e.target.value.length === 1 && props.modelValue.length === 0) {
states.currentPlaceholder = states.cachedPlaceHolder
}
}
const deleteTag = (event, tag) => {
const index = states.selected.indexOf(tag)
if (index > -1 && !selectDisabled.value) {
const value = props.modelValue.slice()
value.splice(index, 1)
ctx.emit(UPDATE_MODEL_EVENT, value)
emitChange(value)
ctx.emit('remove-tag', tag.value)
}
event.stopPropagation()
}
const deleteSelected = (event) => {
event.stopPropagation()
const value = props.multiple ? [] : ''
if (typeof value !== 'string') {
for (const item of states.selected) {
if (item.isDisabled) value.push(item.value)
}
}
ctx.emit(UPDATE_MODEL_EVENT, value)
emitChange(value)
states.visible = false
ctx.emit('clear')
}
const handleOptionSelect = (option, byClick) => {
if (props.multiple) {
const value = (props.modelValue || []).slice()
const optionIndex = getValueIndex(value, option.value)
if (optionIndex > -1) {
value.splice(optionIndex, 1)
} else if (
props.multipleLimit <= 0 ||
value.length < props.multipleLimit
) {
value.push(option.value)
}
ctx.emit(UPDATE_MODEL_EVENT, value)
emitChange(value)
if (option.created) {
states.query = ''
handleQueryChange('')
states.inputLength = 20
}
if (props.filterable) input.value.focus()
} else {
ctx.emit(UPDATE_MODEL_EVENT, option.value)
emitChange(option.value)
states.visible = false
}
states.isSilentBlur = byClick
setSoftFocus()
if (states.visible) return
nextTick(() => {
scrollToOption(option)
})
}
const getValueIndex = (arr = [], value) => {
if (!isObject(value)) return arr.indexOf(value)
const valueKey = props.valueKey
let index = -1
arr.some((item, i) => {
if (getValueByPath(item, valueKey) === getValueByPath(value, valueKey)) {
index = i
return true
}
return false
})
return index
}
const setSoftFocus = () => {
states.softFocus = true
const _input = input.value || reference.value
if (_input) {
_input.focus()
}
}
const scrollToOption = (option) => {
const targetOption = Array.isArray(option) ? option[0] : option
let target = null
if (targetOption?.value) {
const options = optionsArray.value.filter(
(item) => item.value === targetOption.value
)
if (options.length > 0) {
target = options[0].$el
}
}
if (popper.value && target) {
const menu = popper.value?.popperRef?.querySelector?.(
'.el-select-dropdown__wrap'
)
if (menu) {
scrollIntoView(menu, target)
}
}
scrollbar.value?.handleScroll()
}
const onOptionCreate = (vm: SelectOptionProxy) => {
states.optionsCount++
states.filteredOptionsCount++
states.options.set(vm.value, vm)
states.cachedOptions.set(vm.value, vm)
}
const onOptionDestroy = (key) => {
states.optionsCount--
states.filteredOptionsCount--
states.options.delete(key)
}
const resetInputState = (e: KeyboardEvent) => {
if (e.code !== EVENT_CODE.backspace) toggleLastOptionHitState(false)
states.inputLength = input.value.length * 15 + 20
resetInputHeight()
}
const toggleLastOptionHitState = (hit?: boolean) => {
if (!Array.isArray(states.selected)) return
const option = states.selected[states.selected.length - 1]
if (!option) return
if (hit === true || hit === false) {
option.hitState = hit
return hit
}
option.hitState = !option.hitState
return option.hitState
}
const handleComposition = (event) => {
const text = event.target.value
if (event.type === 'compositionend') {
states.isOnComposition = false
nextTick(() => handleQueryChange(text))
} else {
const lastCharacter = text[text.length - 1] || ''
states.isOnComposition = !isKorean(lastCharacter)
}
}
const handleMenuEnter = () => {
nextTick(() => scrollToOption(states.selected))
}
const handleFocus = (event) => {
if (!states.softFocus) {
if (props.automaticDropdown || props.filterable) {
states.visible = true
if (props.filterable) {
states.menuVisibleOnFocus = true
}
}
ctx.emit('focus', event)
} else {
states.softFocus = false
}
}
const blur = () => {
states.visible = false
reference.value.blur()
}
const handleBlur = (event: Event) => {
// https://github.com/ElemeFE/element/pull/10822
nextTick(() => {
if (states.isSilentBlur) {
states.isSilentBlur = false
} else {
ctx.emit('blur', event)
}
})
states.softFocus = false
}
const handleClearClick = (event: Event) => {
deleteSelected(event)
}
const handleClose = () => {
states.visible = false
}
const toggleMenu = () => {
if (props.automaticDropdown) return
if (!selectDisabled.value) {
if (states.menuVisibleOnFocus) {
states.menuVisibleOnFocus = false
} else {
states.visible = !states.visible
}
if (states.visible) {
;(input.value || reference.value).focus()
}
}
}
const selectOption = () => {
if (!states.visible) {
toggleMenu()
} else {
if (optionsArray.value[states.hoverIndex]) {
handleOptionSelect(optionsArray.value[states.hoverIndex], undefined)
}
}
}
const getValueKey = (item) => {
return isObject(item.value)
? getValueByPath(item.value, props.valueKey)
: item.value
}
const optionsAllDisabled = computed(() =>
optionsArray.value
.filter((option) => option.visible)
.every((option) => option.disabled)
)
const navigateOptions = (direction) => {
if (!states.visible) {
states.visible = true
return
}
if (states.options.size === 0 || states.filteredOptionsCount === 0) return
if (states.isOnComposition) return
if (!optionsAllDisabled.value) {
if (direction === 'next') {
states.hoverIndex++
if (states.hoverIndex === states.options.size) {
states.hoverIndex = 0
}
} else if (direction === 'prev') {
states.hoverIndex--
if (states.hoverIndex < 0) {
states.hoverIndex = states.options.size - 1
}
}
const option = optionsArray.value[states.hoverIndex]
if (
option.disabled === true ||
option.groupDisabled === true ||
!option.visible
) {
navigateOptions(direction)
}
nextTick(() => scrollToOption(hoverOption.value))
}
}
return {
optionsArray,
selectSize,
handleResize,
debouncedOnInputChange,
debouncedQueryChange,
deletePrevTag,
deleteTag,
deleteSelected,
handleOptionSelect,
scrollToOption,
readonly,
resetInputHeight,
showClose,
iconComponent,
iconReverse,
showNewOption,
collapseTagSize,
setSelected,
managePlaceholder,
selectDisabled,
emptyText,
toggleLastOptionHitState,
resetInputState,
handleComposition,
onOptionCreate,
onOptionDestroy,
handleMenuEnter,
handleFocus,
blur,
handleBlur,
handleClearClick,
handleClose,
toggleMenu,
selectOption,
getValueKey,
navigateOptions,
dropMenuVisible,
queryChange,
groupQueryChange,
// DOM ref
reference,
input,
popper,
tags,
selectWrapper,
scrollbar,
}
}