/**
 * Copyright (c) 2022 - present TinyVue Authors.
 * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd.
 *
 * Use of this source code is governed by an MIT-style license.
 *
 * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
 * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
 * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
 *
 */

import type {
  IAutoCompleteProps,
  IAutoCompleteState,
  IAutoCompleteApi,
  IAutoCompleteConstants,
  IAutoCompleteRenderlessParams,
  IAutoCompleteRenderlessParamUtils
} from '@/types'
import { FORM_ITEM, FORM_EVENT } from '@opentiny/utils'

export const getData =
  ({
    props,
    state,
    updatePopper,
    nextTick
  }: {
    props: IAutoCompleteProps
    state: IAutoCompleteState
    updatePopper: (popperElm?: HTMLElement | undefined) => void
    nextTick: IAutoCompleteRenderlessParamUtils['nextTick']
  }) =>
  (queryString) => {
    if (state.suggestionDisabled) {
      return
    }

    state.loading = true

    props?.fetchSuggestions?.(queryString, (suggestions) => {
      state.loading = false

      if (state.suggestionDisabled) {
        return
      }

      if (Array.isArray(suggestions)) {
        state.suggestions = suggestions
        state.highlightedIndex = props.highlightFirstItem ? 0 : -1
      } else {
        throw new TypeError('[TINY Error][Autocomplete]autocomplete suggestions must be an array')
      }

      nextTick(updatePopper)
    })
  }

export const handleChange =
  ({
    api,
    emit,
    state,
    props,
    dispatch
  }: Pick<IAutoCompleteRenderlessParams, 'api' | 'emit' | 'state' | 'props' | 'dispatch'>) =>
  (value) => {
    state.activated = true
    emit('update:modelValue', value)
    state.suggestionDisabled = false
    if (state.validateEvent) {
      dispatch(FORM_ITEM, FORM_EVENT.change, [value])
    }

    if (!props.triggerOnFocus && !value) {
      state.suggestionDisabled = true
      state.suggestions = []

      return
    }

    api.debouncedGetData(value)
  }

export const handleFocus =
  ({
    api,
    emit,
    props,
    state
  }: {
    api: IAutoCompleteApi
    emit: IAutoCompleteRenderlessParamUtils['emit']
    state: IAutoCompleteState
    props: IAutoCompleteProps
  }) =>
  (event) => {
    state.activated = true
    emit('focus', event)

    if (props.triggerOnFocus) {
      state.suggestions = []
      state.highlightedIndex = -1
      state.suggestionDisabled = false
      api.debouncedGetData(props.modelValue)
    }
  }

export const handleBlur =
  ({ emit, state, dispatch, props }: Pick<IAutoCompleteRenderlessParams, 'emit' | 'state' | 'dispatch' | 'props'>) =>
  () => {
    // 如果没有激活状态,直接返回
    if (!state.activated) {
      return
    }
    state.suggestionDisabled = true
    emit('blur')
    if (state.validateEvent) {
      dispatch(FORM_ITEM, FORM_EVENT.blur, [props.modelValue])
    }
  }

export const handleClear =
  ({ emit, state }: { emit: IAutoCompleteRenderlessParamUtils['emit']; state: IAutoCompleteState }) =>
  () => {
    state.activated = false
    emit('clear')
  }

export const close = (state: IAutoCompleteState) => () => {
  state.activated = false
}

export const open = (api) => () => {
  api.handleFocus()
}

export const handleKeyEnter =
  ({
    api,
    emit,
    nextTick,
    props,
    state
  }: {
    api: IAutoCompleteApi
    emit: IAutoCompleteRenderlessParamUtils['emit']
    nextTick: IAutoCompleteRenderlessParamUtils['nextTick']
    props: IAutoCompleteProps
    state: IAutoCompleteState
  }) =>
  (event) => {
    if (state.suggestionVisible && state.highlightedIndex >= 0 && state.highlightedIndex < state.suggestions.length) {
      event.preventDefault()
      api.select(state.suggestions[state.highlightedIndex])
    } else if (props.selectWhenUnmatched) {
      emit('select', { value: props.modelValue })

      nextTick(() => {
        state.suggestions = []
        state.highlightedIndex = -1
      })
    }
  }

export const select =
  ({
    emit,
    nextTick,
    props,
    state,
    dispatch
  }: {
    emit: IAutoCompleteRenderlessParamUtils['emit']
    nextTick: IAutoCompleteRenderlessParamUtils['nextTick']
    props: IAutoCompleteProps
    state: IAutoCompleteState
  }) =>
  (item) => {
    const value = item[props.valueKey]
    emit('update:modelValue', value)
    emit('select', item)

    if (state.validateEvent) {
      dispatch(FORM_ITEM, FORM_EVENT.change, [value])
    }
    nextTick(() => {
      state.activated = false
      state.suggestions = []
      state.highlightedIndex = -1
    })
  }

export const highlight =
  ({ constants, vm, state }: { constants: IAutoCompleteConstants; state: IAutoCompleteState }) =>
  (index) => {
    if (!state.suggestionVisible || state.loading) {
      return
    }

    if (index < 0) {
      state.highlightedIndex = -1
      return
    }

    if (index >= state.suggestions.length) {
      index = state.suggestions.length - 1
    }

    const suggestion = vm.$refs.popper.querySelector(constants.WARP_CLS)
    const suggestionList = suggestion.querySelectorAll(constants.ITEM_CLS)
    let highlightItem = suggestionList[index]
    let scrollTop = suggestion.scrollTop
    let offsetTop = highlightItem.offsetTop

    if (offsetTop + highlightItem.scrollHeight > scrollTop + suggestion.clientHeight) {
      suggestion.scrollTop += highlightItem.scrollHeight
    }

    if (offsetTop < scrollTop) {
      suggestion.scrollTop -= highlightItem.scrollHeight
    }

    state.highlightedIndex = index

    let $input = vm.$refs.input.getInput()

    $input.setAttribute('aria-activedescendant', `${state.id}-item-${state.highlightedIndex}`)
  }

export const computedVisible = (state: IAutoCompleteState) => {
  const suggestions = state.suggestions
  let isValidData = Array.isArray(suggestions) && suggestions.length > 0

  return (isValidData || state.loading) && state.activated
}

export const watchVisible =
  ({ suggestionState, vm }: { suggestionState: IAutoCompleteApi['suggestionState'] }) =>
  (val) => {
    let $input = vm.$refs.input.getInput()

    if ($input) {
      suggestionState.dropdownWidth = $input.offsetWidth + 'px'
      suggestionState.showPopper = val
    }
  }

export const mounted =
  ({
    vm,
    state,
    suggestionState,
    props
  }: {
    state: IAutoCompleteState
    suggestionState: IAutoCompleteApi['suggestionState']
    props: IAutoCompleteProps
  }) =>
  () => {
    const input = vm.$refs.input
    const $input = input.getInput()

    suggestionState.popperElm = state.popperElm = vm.$refs.popper
    suggestionState.referenceElm = $input

    // 补充无障碍信息,便于辅助/AI读取
    $input.setAttribute('role', 'textbox')
    $input.setAttribute('aria-autocomplete', 'list')
    $input.setAttribute('aria-controls', state.id)
    $input.setAttribute('aria-owns', state.id)
    $input.setAttribute('aria-activedescendant', `${state.id}-item-${state.highlightedIndex}`)
    if (props.label || props.placeholder) {
      $input.setAttribute('aria-label', String(props.label || props.placeholder))
    }
  }