-
Notifications
You must be signed in to change notification settings - Fork 43
/
index.js
68 lines (58 loc) · 1.55 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
65
66
67
68
import React, { Component, PropTypes } from 'react';
import {
NativeModules,
TextInput,
findNodeHandle,
AppRegistry,
} from 'react-native';
const { CustomKeyboard} = NativeModules;
const {
install, uninstall,
insertText, backSpace, doDelete,
moveLeft, moveRight,
switchSystemKeyboard,
} = CustomKeyboard;
export {
install, uninstall,
insertText, backSpace, doDelete,
moveLeft, moveRight,
switchSystemKeyboard,
};
const keyboardTypeRegistry = {};
export function register(type, factory) {
keyboardTypeRegistry[type] = factory;
}
class CustomKeyboardContainer extends Component {
render() {
const {tag, type} = this.props;
const factory = keyboardTypeRegistry[type];
if (!factory) {
console.warn(`Custom keyboard type ${type} not registered.`);
return null;
}
const Comp = factory();
return <Comp tag={tag} />;
}
}
AppRegistry.registerComponent("CustomKeyboard", ()=>CustomKeyboardContainer);
export class CustomTextInput extends Component {
static propTypes = {
...TextInput.propTypes,
customKeyboardType: PropTypes.string,
};
componentDidMount() {
install(findNodeHandle(this.input), this.props.customKeyboardType);
}
componentWillReceiveProps(newProps) {
if (newProps.customKeyboardType !== this.props.customKeyboardType) {
install(findNodeHandle(this.input), newProps.customKeyboardType);
}
}
onRef = ref => {
this.input = ref;
};
render() {
const { customKeyboardType, ...others } = this.props;
return <TextInput {...others} ref={this.onRef}/>;
}
}