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

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

10 11 12 13 14 15
function showSoftKeybord () {
  plusReady(() => {
    plus.key.showSoftKeybord()
  })
}

16
function setSoftinputTemporary (vm, reset) {
17
  plusReady(() => {
18 19 20
    const MODE_ADJUSTRESIZE = 'adjustResize'
    const MODE_ADJUSTPAN = 'adjustPan'
    const MODE_NOTHING = 'nothing'
21 22
    const currentWebview = plus.webview.currentWebview()
    const style = currentWebview.getStyle() || {}
23 24
    const options = {
      mode: (reset || style.softinputMode === MODE_ADJUSTRESIZE) ? MODE_ADJUSTRESIZE : (vm.adjustPosition ? MODE_ADJUSTPAN : MODE_NOTHING),
25
      position: {
26 27
        top: 0,
        height: 0
28
      }
29 30 31 32 33 34 35
    }
    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)
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 65 66 67 68 69 70
  })
}

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
      })
    })
  }
}

71
let resetTimer
72 73 74 75 76 77 78 79 80
let isAndroid
let osVersion
if (__PLATFORM__ === 'app-plus') {
  plusReady(() => {
    isAndroid = plus.os.name.toLowerCase() === 'android'
    osVersion = plus.os.version
  })
}

81 82
export default {
  name: 'Keyboard',
83 84
  props: {
    cursorSpacing: {
Q
qiang 已提交
85
      type: [Number, String],
86 87
      default: 0
    },
88 89 90 91
    showConfirmBar: {
      type: [Boolean, String],
      default: 'auto'
    },
92
    adjustPosition: {
93 94 95 96 97
      type: [Boolean, String],
      default: true
    },
    autoBlur: {
      type: [Boolean, String],
98 99 100
      default: true
    }
  },
101 102
  watch: {
    focus (val) {
103 104
      if (val && __PLATFORM__ === 'app-plus') {
        showSoftKeybord()
105 106 107
      }
    }
  },
108 109 110 111 112 113 114
  directives: {
    keyboard: {
      inserted (el, binding, vnode) {
        vnode.context.initKeyboard(el)
      }
    }
  },
115
  mounted () {
116 117
    if ((this.autoFocus || this.focus) && __PLATFORM__ === 'app-plus') {
      showSoftKeybord()
118 119
    }
  },
120 121
  methods: {
    initKeyboard (el) {
122 123 124 125 126 127 128 129
      let focus
      let keyboardHeight

      const keyboardChange = (event) => {
        keyboardHeight = event.height
        // 安卓切换不同键盘类型时会导致键盘收回,需重新设置
        if (focus && keyboardHeight === 0) {
          setSoftinputTemporary(this)
130
        }
131 132 133 134 135 136 137 138
        // 安卓/iOS13收起键盘时主动失去焦点
        if (this.autoBlur && focus && keyboardHeight === 0 && (isAndroid || parseInt(osVersion) >= 13)) {
          document.activeElement.blur()
        }
      }

      el.addEventListener('focus', () => {
        focus = true
139
        clearTimeout(resetTimer)
140
        document.addEventListener('click', iosHideKeyboard, false)
141 142 143 144 145 146

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

149
      if (__PLATFORM__ === 'app-plus') {
150
        // 安卓单独隐藏键盘后点击输入框不会触发 focus 事件
151
        el.addEventListener('click', () => {
152
          if (!this.disabled && focus && keyboardHeight === 0) {
153
            setSoftinputTemporary(this)
154
          }
155
        })
156
        if (!isAndroid && parseInt(osVersion) < 12) {
157
          // iOS12 以下系统 focus 事件设置较迟,改在 touchstart 设置
158 159 160 161 162 163
          el.addEventListener('touchstart', () => {
            if (!this.disabled && !focus) {
              setSoftinputTemporary(this)
            }
          })
        }
164
      }
165 166 167 168 169 170 171

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

        if (__PLATFORM__ === 'app-plus') {
          document.removeEventListener('keyboardchange', keyboardChange, false)
          resetSoftinputNavBar(this)
172 173 174 175 176 177
          if (isAndroid) {
            // 还原安卓软键盘配置,避免影响 web-view 组件
            resetTimer = setTimeout(() => {
              setSoftinputTemporary(this, true)
            }, 300)
          }
178 179 180 181 182
        }

        // 修复ios端显示与点击位置错位的Bug by:wyq
        if (String(navigator.vendor).indexOf('Apple') === 0) {
          document.documentElement.scrollTo(document.documentElement.scrollLeft, document.documentElement.scrollTop)
183 184
        }
      }
185 186 187 188 189

      el.addEventListener('blur', () => {
        focus = false
        onKeyboardHide()
      })
190 191 192
    }
  }
}