forked from lyxia/react-native-yusha-customKeyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomKeyBoardView.js
183 lines (165 loc) · 5.73 KB
/
CustomKeyBoardView.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
//@flow
import React, { Component } from 'react';
import PropTypes from 'prop-types'
import {
TouchableOpacity,
Text,
Image,
View,
StyleSheet,
Platform,
findNodeHandle,
DeviceInfo,
} from 'react-native';
//提示
import {KeyTip} from './views'
export default class KeyBoard extends Component{
state
backSpaceRequest
insertTextRequest
clearFocusRequest
clearAllRequest
static propTypes = {
insertText: PropTypes.func.isRequired,
clearFocus: PropTypes.func.isRequired,
clearAll: PropTypes.func.isRequired,
KeyBoardView: PropTypes.any.isRequired,
}
constructor() {
super(...arguments)
this.state = {
width: 0,
showTip: {isShow:false, layout:{x:0,y:0,width:0,height:0}, keyValue:""}
}
}
_handleDelete = () => {
this.backSpaceRequest && cancelAnimationFrame(this.backSpaceRequest)
this.backSpaceRequest = requestAnimationFrame(() => {
this.props.backSpace(this.props.tag);
})
};
_handleKeyPress = (key) => {
this.insertTextRequest && cancelAnimationFrame(this.insertTextRequest)
this.insertTextRequest = requestAnimationFrame(() => {
this.props.insertText(this.props.tag, key);
})
}
_clearFocus = () => {
this.clearFocusRequest && cancelAnimationFrame(this.clearFocusRequest)
this.clearFocusRequest = requestAnimationFrame(() => {
this.props.clearFocus(this.props.tag)
this.props.doneCallBack && this.props.doneCallBack(this.props.tag)
})
}
_handlerClearAll = () => {
this.clearAllRequest && cancelAnimationFrame(this.clearAllRequest)
this.clearAllRequest = requestAnimationFrame(() => {
this.props.clearAll(this.props.tag)
})
}
//{isShow, ref, keyValue}
_showTip = (showTipData) => {
if(showTipData.isShow) {
showTipData.ref.measureLayout(findNodeHandle(this.refs.keyboard), (left, top, width, height) => {
console.log(`key: ${showTipData.keyValue} left:${left} top:${top} width:${width} height:${height}`)
//{isShow:false, layout:{x:0,y:0,width:0,height:0}, keyValue:""}
this.setState({...this.state, showTip:{...showTipData, layout:{x:left, y:top, width, height}}})
})
} else {
this.setState({...this.state, showTip:showTipData})
}
}
_onLayout = ({ nativeEvent }) => {
const width = nativeEvent.layout.width
let height = nativeEvent.layout.height
if (width > 0 && width !== this.state.width) {
this.setState({ ...this.state, width })
}
}
_renderTip = () => {
const {isShow, layout, keyValue} = this.state.showTip
return isShow ?
(
<KeyTip
layout = {layout}
keyValue = {keyValue}
/>
)
:
null
}
componentWillUnmount() {
this.clearFocusRequest && cancelAnimationFrame(this.clearFocusRequest)
this.insertTextRequest && cancelAnimationFrame(this.insertTextRequest)
this.backSpaceRequest && cancelAnimationFrame(this.backSpaceRequest)
this.clearAllRequest && cancelAnimationFrame(this.clearAllRequest)
}
render() {
const {KeyBoardView} = this.props
return (
<View
onLayout={this._onLayout} style={styles.container} ref="keyboard" pointerEvents="box-none">
<View style={styles.keyBoard} key="keyboard">
{
!KeyBoardView.customKeyboardTop && (
<View style={styles.top}>
<View style={styles.topLeft}>
{
KeyBoardView.getKeyBoardIcon && KeyBoardView.getKeyBoardIcon()
}
<Text style={styles.topDesText}>{KeyBoardView.getKeyBoardName && KeyBoardView.getKeyBoardName()}</Text>
</View>
<TouchableOpacity onPress={this._clearFocus}>
<Text style={styles.topCompleteText}>{KeyBoardView.getDoneText && KeyBoardView.getDoneText() || 'Done'}</Text>
</TouchableOpacity>
</View>
)
}
<KeyBoardView
{...this.props}
onKeyPress={(key)=>this._handleKeyPress(key)}
onDelete={()=>this._handleDelete()}
onClearAll={()=>this._handlerClearAll()}
showTip={(showTipData)=>this._showTip(showTipData)}
/>
</View>
{this._renderTip()}
</View>
)
}
}
const styles = StyleSheet.create({
container: {
marginTop: Platform.OS == 'ios' ? 0 : 54,
backgroundColor: 'transparent',
justifyContent: 'flex-end',
height: 252
},
keyBoard: {
backgroundColor: '#f6f5f2',
height: 252,
},
top: {
height: 36,
borderTopWidth: StyleSheet.hairlineWidth,
borderTopColor: '#a5a5a5',
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
},
topLeft: {
paddingLeft: 15,
flexDirection: 'row',
},
topDesText: {
color: '#adadad',
fontSize: 15,
paddingHorizontal: 8,
},
topCompleteText: {
color: '#0297fa',
fontSize: 15,
paddingHorizontal: 15,
paddingVertical: 10,
}
})