keyboard.js 4.8 KB
Newer Older
1 2 3 4
import {
  plusReady
} from 'uni-shared'

5 6 7 8
/**
 * 保证iOS点击输入框外隐藏键盘
 */
function iosHideKeyboard () { }
9

10
function setSoftinputTemporary (vm, reset) {
11
  plusReady(() => {
12 13 14
    const MODE_ADJUSTRESIZE = 'adjustResize'
    const MODE_ADJUSTPAN = 'adjustPan'
    const MODE_NOTHING = 'nothing'
15 16
    const currentWebview = plus.webview.currentWebview()
    const style = currentWebview.getStyle() || {}
17 18
    const options = {
      mode: (reset || style.softinputMode === MODE_ADJUSTRESIZE) ? MODE_ADJUSTRESIZE : (vm.adjustPosition ? MODE_ADJUSTPAN : MODE_NOTHING),
19
      position: {
20 21
        top: 0,
        height: 0
22
      }
23 24 25 26 27 28 29
    }
    if (options.mode === MODE_ADJUSTPAN) {
      const rect = vm.$el.getBoundingClientRect()
      options.position.top = rect.top
      options.position.height = rect.height + (Number(vm.cursorSpacing) || 0)
    }
    currentWebview.setSoftinputTemporary(options)
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
  })
}

function setSoftinputNavBar (vm) {
  if (vm.showConfirmBar === 'auto') {
    delete vm.__softinputNavBar
    return
  }
  plusReady(() => {
    const currentWebview = plus.webview.currentWebview()
    const { softinputNavBar } = currentWebview.getStyle() || {}
    const showConfirmBar = softinputNavBar !== 'none'
    if (showConfirmBar !== vm.showConfirmBar) {
      vm.__softinputNavBar = softinputNavBar || 'auto'
      currentWebview.setStyle({
        softinputNavBar: vm.showConfirmBar ? 'auto' : 'none'
      })
    } else {
      delete vm.__softinputNavBar
    }
  })
}

function resetSoftinputNavBar (vm) {
  const softinputNavBar = vm.__softinputNavBar
  if (softinputNavBar) {
    plusReady(() => {
      const currentWebview = plus.webview.currentWebview()
      currentWebview.setStyle({
        softinputNavBar
      })
    })
  }
}

65
let resetTimer
66 67 68 69 70 71 72 73 74
let isAndroid
let osVersion
if (__PLATFORM__ === 'app-plus') {
  plusReady(() => {
    isAndroid = plus.os.name.toLowerCase() === 'android'
    osVersion = plus.os.version
  })
}

75 76
export default {
  name: 'Keyboard',
77 78
  props: {
    cursorSpacing: {
Q
qiang 已提交
79
      type: [Number, String],
80 81
      default: 0
    },
82 83 84 85
    showConfirmBar: {
      type: [Boolean, String],
      default: 'auto'
    },
86
    adjustPosition: {
87 88 89 90 91
      type: [Boolean, String],
      default: true
    },
    autoBlur: {
      type: [Boolean, String],
92
      default: false
93 94
    }
  },
95 96 97 98 99 100 101
  directives: {
    keyboard: {
      inserted (el, binding, vnode) {
        vnode.context.initKeyboard(el)
      }
    }
  },
102 103
  methods: {
    initKeyboard (el) {
104 105 106 107 108 109 110 111
      let focus
      let keyboardHeight

      const keyboardChange = (event) => {
        keyboardHeight = event.height
        // 安卓切换不同键盘类型时会导致键盘收回,需重新设置
        if (focus && keyboardHeight === 0) {
          setSoftinputTemporary(this)
112
        }
113 114 115 116 117 118 119 120
        // 安卓/iOS13收起键盘时主动失去焦点
        if (this.autoBlur && focus && keyboardHeight === 0 && (isAndroid || parseInt(osVersion) >= 13)) {
          document.activeElement.blur()
        }
      }

      el.addEventListener('focus', () => {
        focus = true
121
        clearTimeout(resetTimer)
122
        document.addEventListener('click', iosHideKeyboard, false)
123 124 125 126 127 128

        if (__PLATFORM__ === 'app-plus') {
          document.addEventListener('keyboardchange', keyboardChange, false)
          setSoftinputNavBar(this)
          setSoftinputTemporary(this)
        }
129
      })
130

131
      if (__PLATFORM__ === 'app-plus') {
132
        // 安卓单独隐藏键盘后点击输入框不会触发 focus 事件
133
        el.addEventListener('click', () => {
134
          if (!this.disabled && focus && keyboardHeight === 0) {
135
            setSoftinputTemporary(this)
136
          }
137
        })
138
        if (!isAndroid && parseInt(osVersion) < 12) {
139
          // iOS12 以下系统 focus 事件设置较迟,改在 touchstart 设置
140 141 142 143 144 145
          el.addEventListener('touchstart', () => {
            if (!this.disabled && !focus) {
              setSoftinputTemporary(this)
            }
          })
        }
146
      }
147 148 149 150 151 152 153

      const onKeyboardHide = () => {
        document.removeEventListener('click', iosHideKeyboard, false)

        if (__PLATFORM__ === 'app-plus') {
          document.removeEventListener('keyboardchange', keyboardChange, false)
          resetSoftinputNavBar(this)
154 155 156 157 158 159
          if (isAndroid) {
            // 还原安卓软键盘配置,避免影响 web-view 组件
            resetTimer = setTimeout(() => {
              setSoftinputTemporary(this, true)
            }, 300)
          }
160 161 162 163 164
        }

        // 修复ios端显示与点击位置错位的Bug by:wyq
        if (String(navigator.vendor).indexOf('Apple') === 0) {
          document.documentElement.scrollTo(document.documentElement.scrollLeft, document.documentElement.scrollTop)
165 166
        }
      }
167 168 169 170 171

      el.addEventListener('blur', () => {
        focus = false
        onKeyboardHide()
      })
172 173 174
    }
  }
}