mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-11 14:38:00 -05:00
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
import React, { useEffect } from 'react';
|
|
import { TextInput } from 'react-native';
|
|
import { usePinInput } from '../machines/pinInput';
|
|
import { Row } from './ui';
|
|
import { Theme } from './ui/styleUtils';
|
|
|
|
export const PinInput: React.FC<PinInputProps> = (props) => {
|
|
const { state, send, events } = usePinInput(props.length);
|
|
const { inputRefs, values } = state.context;
|
|
const { UPDATE_INPUT, FOCUS_INPUT, KEY_PRESS } = events;
|
|
|
|
useEffect(() => {
|
|
if (props.onDone && values.filter(Boolean).length === inputRefs.length) {
|
|
props.onDone(values.join(''));
|
|
}
|
|
}, [state]);
|
|
|
|
return (
|
|
<Row width="100%">
|
|
{inputRefs.map((input, index) => (
|
|
<TextInput
|
|
selectTextOnFocus
|
|
keyboardType="numeric"
|
|
maxLength={1}
|
|
selectionColor={Theme.Colors.inputSelection}
|
|
style={Theme.PinInputStyle.input}
|
|
key={index}
|
|
ref={input}
|
|
value={values[index]}
|
|
// KNOWN ISSUE: https://github.com/facebook/react-native/issues/19507
|
|
onKeyPress={({ nativeEvent }) => send(KEY_PRESS(nativeEvent.key))}
|
|
onChangeText={(value: string) =>
|
|
send(UPDATE_INPUT(value.replace(/\D/g, ''), index))
|
|
}
|
|
onFocus={() => send(FOCUS_INPUT(index))}
|
|
/>
|
|
))}
|
|
</Row>
|
|
);
|
|
};
|
|
|
|
interface PinInputProps {
|
|
length: number;
|
|
onDone?: (value: string) => void;
|
|
}
|