68 lines
2.1 KiB
JavaScript
68 lines
2.1 KiB
JavaScript
/*
|
|
Copyright 2013-2015 ASIAL CORPORATION
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
import util from './util';
|
|
import MicroEvent from './microevent';
|
|
|
|
var softwareKeyboard = new MicroEvent();
|
|
softwareKeyboard._visible = false;
|
|
|
|
var onShow = function onShow() {
|
|
softwareKeyboard._visible = true;
|
|
softwareKeyboard.emit('show');
|
|
};
|
|
|
|
var onHide = function onHide() {
|
|
softwareKeyboard._visible = false;
|
|
softwareKeyboard.emit('hide');
|
|
};
|
|
|
|
var bindEvents = function bindEvents() {
|
|
if (typeof Keyboard !== 'undefined') {
|
|
// https://github.com/martinmose/cordova-keyboard/blob/95f3da3a38d8f8e1fa41fbf40145352c13535a00/README.md
|
|
Keyboard.onshow = onShow;
|
|
Keyboard.onhide = onHide;
|
|
softwareKeyboard.emit('init', { visible: Keyboard.isVisible });
|
|
|
|
return true;
|
|
} else if (typeof cordova.plugins !== 'undefined' && typeof cordova.plugins.Keyboard !== 'undefined') {
|
|
// https://github.com/driftyco/ionic-plugins-keyboard/blob/ca27ecf/README.md
|
|
window.addEventListener('native.keyboardshow', onShow);
|
|
window.addEventListener('native.keyboardhide', onHide);
|
|
softwareKeyboard.emit('init', { visible: cordova.plugins.Keyboard.isVisible });
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
var noPluginError = function noPluginError() {
|
|
util.warn('ons-keyboard: Cordova Keyboard plugin is not present.');
|
|
};
|
|
|
|
document.addEventListener('deviceready', function () {
|
|
if (!bindEvents()) {
|
|
if (document.querySelector('[ons-keyboard-active]') || document.querySelector('[ons-keyboard-inactive]')) {
|
|
noPluginError();
|
|
}
|
|
|
|
softwareKeyboard.on = noPluginError;
|
|
}
|
|
});
|
|
|
|
export default softwareKeyboard; |