-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathindex.js
81 lines (67 loc) · 1.68 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
69
70
71
72
73
74
75
76
77
78
79
80
81
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import {
NativeModules,
TextInput,
findNodeHandle,
AppRegistry,
View,
Text,
} from 'react-native';
const { CustomKeyboardKit} = NativeModules;
const {
install, uninstall,
insertText, backSpace, doDelete,
moveLeft, moveRight,
switchSystemKeyboard,
hideKeyboard,
} = CustomKeyboardKit;
export {
install, uninstall,
insertText, backSpace, doDelete,
moveLeft, moveRight,
switchSystemKeyboard,
hideKeyboard,
};
const keyboardTypeRegistry = {};
export function register(type, factory) {
keyboardTypeRegistry[type] = factory;
}
class CustomKeyboardKitContainer 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("CustomKeyboardKit", () => CustomKeyboardKitContainer);
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 (
<View>
<TextInput {...others} ref={this.onRef} />
</View>
);
}
}