-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathPinKeyboard.js
333 lines (308 loc) · 7.37 KB
/
PinKeyboard.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/**
* @author Luke Brandon Farrell
* @description Keyboard component with error status bar and interactive keys
*/
import React, { Component } from "react";
import { View, Image, Text, StyleSheet, Platform, TouchableOpacity } from "react-native";
import Ripple from "react-native-material-ripple";
import PropTypes from "prop-types";
const backAsset = require("./back.png");
class PinKeyboard extends Component {
/**
* [ Built-in React method. ]
*
* Setup the component. Executes when the component is created
*
* @param {object} props
*
*/
constructor(props) {
super(props);
this.state = {
disabled: false,
error: null
};
}
/**
* [ Built-in React method. ]
*
* Executed when the component is mounted to the screen.
*/
componentDidMount() {
this.props.onRef(this);
}
/**
* [ Built-in React method. ]
*
* Executed when the component is unmounted from the screen
*/
componentWillUnmount() {
this.props.onRef(undefined);
}
/**
* [ Built-in React method. ]
*
* Allows us to render JSX to the screen
*/
render() {
/** Styles */
const { containerStyle, keyboardDefaultStyle, keyboardRowStyle } = styles;
/** Props */
const {
keyboard,
// Style Props
keyboardStyle
} = this.props;
return (
<View style={containerStyle}>
{this.renderError()}
<View style={[keyboardDefaultStyle, keyboardStyle]}>
{// Maps each array of numbers in the keyboardValues array
keyboard.map((row, r) => {
return (
<View key={r} style={keyboardRowStyle}>
{// Maps each number in row and creates key for that number
row.map((element, k) => {
return this.renderKey(element, r, k);
})}
</View>
);
})}
</View>
</View>
);
}
/**
* Renders the error
*
* @return {*}
*/
renderError() {
// Styles
const { errorDefaultStyle, errorTextDefaultStyle } = styles;
// Props
const {
// Style Props
errorStyle,
errorTextStyle
} = this.props;
// State
const { error } = this.state;
if (error) {
return (
<View style={[errorDefaultStyle, errorStyle]}>
<Text style={[errorTextDefaultStyle, errorTextStyle]}>{error}</Text>
</View>
);
}
return null;
}
/**
* Renders a key on the keyboard
*
* @param entity
* @param row
* @param column
*
* @return {jsx}
*/
renderKey(entity, row, column) {
/** Styles */
const {
keyContainerStyle,
keyboardDisabledDefaultStyle,
keyDefaultStyle,
keyTextDefaultStyle,
keyImageDefaultStyle
} = styles;
/** Props */
const {
disableRippleEffect,
keyDown,
keyboardFunc,
keyboardDisabledStyle,
// Style Props
keyStyle,
keyTextStyle,
keyImageStyle
} = this.props;
/** State */
const { disabled } = this.state;
// Custom functions for the keyboard key
const keyboardFuncSet = keyboardFunc
? keyboardFunc
: [
[null, null, null],
[null, null, null],
[null, null, null],
[null, 0, () => this.props.keyDown("back")]
];
// Decide if the element passed as the key is text
const keyJsx = keyboardFuncSet[row][column] ? (
<Image style={[keyImageDefaultStyle, keyImageStyle]} source={entity} />
) : (
<Text style={[keyTextDefaultStyle, keyTextStyle]}>{entity}</Text>
);
// We want to block keyboard interactions if it has been disabled.
if (!disabled) {
const KeyComponent = disableRippleEffect ? TouchableOpacity : Ripple;
const keyProps = {
[disableRippleEffect ? 'onPress' : 'onPressIn'] : () =>
keyboardFuncSet[row][column]
? keyboardFuncSet[row][column]()
: keyDown(entity)
}
return (
<KeyComponent
rippleColor={"#000"}
key={column}
{...keyProps}
style={[keyContainerStyle, keyDefaultStyle, keyStyle]}
>
{keyJsx}
</KeyComponent>
);
} else {
return (
<View
key={column}
style={[
keyContainerStyle,
keyDefaultStyle,
keyStyle,
keyboardDisabledDefaultStyle,
keyboardDisabledStyle
]}
>
{keyJsx}
</View>
);
}
}
/**
* Function used to display an error above the keyboard
*
* @param error
*/
throwError(error) {
this.setState({
error
});
}
/**
* Function used to clear the error on the keyboard
*/
clearError() {
this.setState({ error: null });
}
/**
* Function used to disable the keyboard
*/
disable() {
this.setState({
disabled: true
});
}
/**
* Function used to enable the keyboard
*/
enable() {
this.setState({
disabled: false
});
}
}
PinKeyboard.propTypes = {
onRef: PropTypes.any.isRequired,
keyDown: PropTypes.func.isRequired,
keyboard: PropTypes.array,
keyboardFunc: PropTypes.array,
// Style props
keyboardStyle: PropTypes.object,
keyboardDisabledStyle: PropTypes.object,
keyStyle: PropTypes.object,
keyTextStyle: PropTypes.object,
keyImageStyle: PropTypes.object,
errorStyle: PropTypes.object,
errorTextStyle: PropTypes.object,
disableRippleEffect: PropTypes.bool
};
PinKeyboard.defaultProps = {
// Keyboard configuration. The default contains a key
// for each number 0 - 9 and a back button.
keyboard: [[1, 2, 3], [4, 5, 6], [7, 8, 9], [null, 0, backAsset]],
// Keyboard functions. By default the text (number) in the
// keyboard array will be passed via the keyDown callback.
// Use this array to set custom functions for certain keys.
keyboardFunc: null,
keyboardErrorDisplayTime: 3000
};
const styles = StyleSheet.create({
containerStyle: {
flex: null,
width: "100%",
flexDirection: "column",
justifyContent: "flex-end"
},
// Style applied to the keyboard. Must contain a height or
// the keyboard will not be displayed.
keyboardDefaultStyle: {
height: 250,
backgroundColor: "#FFF"
},
keyboardRowStyle: {
flex: 1,
flexDirection: "row"
},
keyContainerStyle: {
flex: 1,
flexDirection: "column",
justifyContent: "center",
alignItems: "center"
},
// Style applied to keyboard when it is disabled.
keyboardDisabledDefaultStyle: {
backgroundColor: "#FFF"
},
// Style the individual keys
keyDefaultStyle: {
backgroundColor: "#FFF",
borderRightColor: "#e8e8e8",
borderRightWidth: 1,
borderBottomColor: "#e8e8e8",
borderBottomWidth: 1
},
// Style for the text inside a key
keyTextDefaultStyle: {
...Platform.select({
ios: {
fontFamily: "HelveticaNeue"
},
android: {
fontFamily: "Roboto"
}
}),
fontWeight: "400",
fontSize: 25,
textAlign: "center",
color: "#222222"
},
// Style for an image inside a key
keyImageDefaultStyle: {
width: 28,
height: 28
},
errorDefaultStyle: {
height: 30,
width: "100%",
justifyContent: "center",
alignItems: "center",
backgroundColor: "#DA0F72"
},
errorTextDefaultStyle: {
color: "#FFF",
fontSize: 15,
fontWeight: "bold"
}
});
export default PinKeyboard;