/**
 * 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 { isServer } from '@opentiny/utils'

export const px2percent = ({ numerator, denominator }) => parseFloat(numerator) / parseFloat(denominator)

export const getComputedThresholdValue =
  ({ api, props, vm, state }) =>
  (type) => {
    const size = vm.$refs.outerWrapper[state.offsetSize]

    if (state.valueIsPx) {
      return typeof props[type] === 'string' ? props[type] : size * props[type]
    } else {
      return typeof props[type] === 'string'
        ? api.px2percent({ numerator: props[type], denominator: size })
        : props[type]
    }
  }

export const getleftTopMin =
  (state) =>
  ({ oldvalue, newvalue }) =>
    state.valueIsPx ? `${Math.min(parseFloat(oldvalue), parseFloat(newvalue))}px` : Math.min(oldvalue, newvalue)

export const getrightBottomMin =
  (state) =>
  ({ oldvalue, newvalue }) =>
    state.valueIsPx ? `${Math.max(parseFloat(oldvalue), parseFloat(newvalue))}px` : Math.max(oldvalue, newvalue)

export const getAnotherOffset =
  ({ vm, state }) =>
  (value, isPercent) => {
    return isPercent
      ? 100 - value
      : state.valueIsPx
      ? `${vm.$refs.outerWrapper[state.offsetSize] - parseFloat(value)}px`
      : 1 - value
  }

export const handleMove =
  ({ api, emit, props, vm, state }) =>
  (event) => {
    const pageOffset = state.isHorizontal ? event.pageX : event.pageY
    const offset = pageOffset - state.initOffset
    const outerWidth = vm.$refs.outerWrapper[state.offsetSize]

    let value = state.valueIsPx
      ? `${parseFloat(state.oldOffset) + offset}px`
      : api.px2percent({ numerator: outerWidth * state.oldOffset + offset, denominator: outerWidth })

    const anotherValue = props.rightBottomValue ? value : api.getAnotherOffset(value)

    if (props.rightBottomValue) {
      value = api.getAnotherOffset(value)
    }

    if (parseFloat(value) <= parseFloat(state.computedleftTopMin)) {
      value = api.getrightBottomMin({
        oldvalue: value,
        newvalue: state.computedleftTopMin
      })
    }

    if (parseFloat(anotherValue) <= parseFloat(state.computedrightBottomMin)) {
      value = api.getAnotherOffset(
        api.getrightBottomMin({
          oldvalue: anotherValue,
          newvalue: state.computedrightBottomMin
        })
      )
    }

    event.atMin = props.modelValue === state.computedleftTopMin
    event.atMax = state.valueIsPx
      ? api.getAnotherOffset(props.modelValue) === state.computedrightBottomMin
      : api.getAnotherOffset(props.modelValue).toFixed(5) === state.computedrightBottomMin.toFixed(5)

    state.leftTopPane = outerWidth * value

    emit('update:modelValue', value)
    emit('moving', event)
  }

export const handleUp =
  ({ api, emit, off, state }) =>
  () => {
    state.isMoving = false

    off(document, 'mousemove', api.handleMove)
    off(document, 'mouseup', api.handleUp)

    emit('moveend')
  }

export const handleMousedown =
  ({ api, emit, on, props, state, vm }) =>
  (event) => {
    if (!props.disabled) {
      state.initOffset = state.isHorizontal ? event.pageX : event.pageY
      if (state.offset === 0) {
        state.oldOffset = 0
      } else if (state.offset === 100) {
        state.oldOffset = 1
      } else {
        if (props.threeAreas) {
          state.totalPane = vm.$refs.outerWrapper[state.offsetSize]
          let val = api.px2percent({ numerator: state.leftTopPane, denominator: state.totalPane })
          state.oldOffset = val
          emit('update:modelValue', val)
        } else {
          state.oldOffset = props.rightBottomValue ? api.getAnotherOffset(props.modelValue) : props.modelValue
        }
      }
      state.isMoving = true

      on(document, 'mousemove', api.handleMove)
      on(document, 'mouseup', api.handleUp)

      emit('movestart')
    }
  }

export const buttonMousedown = () => (event) => {
  event.stopPropagation()
}

export const buttonLeftTopClick =
  ({ emit, props, state }) =>
  () => {
    if (state.offset === 100) {
      state.offset = state.lastClickOffset

      emit('update:modelValue', state.lastmodelValue)
    } else if (state.offset !== 0) {
      state.lastClickOffset = state.offset
      state.offset = props.rightBottomValue ? 100 : 0
      state.lastmodelValue = props.modelValue

      emit('update:modelValue', props.rightBottomValue ? 1 : 0)
    }
    emit('left-top-click')
  }

export const buttonRightBottomClick =
  ({ emit, props, state }) =>
  () => {
    if (state.offset === 0) {
      state.offset = state.lastClickOffset

      emit('update:modelValue', state.lastmodelValue)
    } else if (state.offset !== 100) {
      state.lastClickOffset = state.offset
      state.offset = props.rightBottomValue ? 0 : 100
      state.lastmodelValue = props.modelValue

      emit('update:modelValue', props.rightBottomValue ? 0 : 1)
    }
    emit('right-bottom-click')
  }

export const computeOffset =
  ({ api, nextTick, props, vm, state }) =>
  () => {
    setTimeout(() => {
      // 防止当split组件销毁时,state为undefined导致的报错
      if (state && !isServer) {
        state.totalPane = vm.$refs.outerWrapper[state.offsetSize]
        state.leftTopPane = state.totalPane * (state.offset / 100)
      }
    })

    if (state.valueIsPx) {
      nextTick(() => {
        const offset =
          (api.px2percent({
            numerator: props.modelValue,
            denominator: vm.$refs.outerWrapper && vm.$refs.outerWrapper[state.offsetSize]
          }) *
            10000) /
          100

        state.offset = props.rightBottomValue ? api.getAnotherOffset(offset, true) : offset
      })
    } else {
      const offset = (props.modelValue * 10000) / 100

      state.offset = props.rightBottomValue ? api.getAnotherOffset(offset, true) : offset
    }
  }