@draftbit/core 48.4.6-959edf.2 → 48.4.6-f29495.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/BottomSheet/BottomSheet.js +1 -1
- package/lib/commonjs/components/PinInput/CustomPinInputCell.js +1 -0
- package/lib/commonjs/components/PinInput/PinInput.js +1 -0
- package/lib/commonjs/components/{CodeInput/CodeInputText.js → PinInput/PinInputText.js} +1 -1
- package/lib/commonjs/components/PinInput/index.js +1 -0
- package/lib/commonjs/index.js +1 -1
- package/lib/commonjs/utilities.js +1 -1
- package/lib/typescript/src/components/BottomSheet/BottomSheet.d.ts +2 -3
- package/lib/typescript/src/components/BottomSheet/BottomSheet.js +3 -3
- package/lib/typescript/src/components/BottomSheet/BottomSheet.js.map +1 -1
- package/lib/typescript/src/components/PinInput/CustomPinInputCell.d.ts +11 -0
- package/lib/typescript/src/components/PinInput/CustomPinInputCell.js +11 -0
- package/lib/typescript/src/components/PinInput/CustomPinInputCell.js.map +1 -0
- package/lib/typescript/src/components/PinInput/PinInput.d.ts +30 -0
- package/lib/typescript/src/components/PinInput/PinInput.js +70 -0
- package/lib/typescript/src/components/PinInput/PinInput.js.map +1 -0
- package/lib/typescript/src/components/{CodeInput/CodeInputText.d.ts → PinInput/PinInputText.d.ts} +3 -3
- package/lib/typescript/src/components/{CodeInput/CodeInputText.js → PinInput/PinInputText.js} +4 -4
- package/lib/typescript/src/components/PinInput/PinInputText.js.map +1 -0
- package/lib/typescript/src/components/PinInput/index.d.ts +3 -0
- package/lib/typescript/src/components/PinInput/index.js +4 -0
- package/lib/typescript/src/components/PinInput/index.js.map +1 -0
- package/lib/typescript/src/index.d.ts +1 -1
- package/lib/typescript/src/index.js +1 -1
- package/lib/typescript/src/index.js.map +1 -1
- package/lib/typescript/src/utilities.js +6 -0
- package/lib/typescript/src/utilities.js.map +1 -1
- package/lib/typescript/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/components/BottomSheet/BottomSheet.js +3 -3
- package/src/components/BottomSheet/BottomSheet.js.map +1 -1
- package/src/components/BottomSheet/BottomSheet.tsx +81 -90
- package/src/components/PinInput/CustomPinInputCell.js +11 -0
- package/src/components/PinInput/CustomPinInputCell.js.map +1 -0
- package/src/components/PinInput/CustomPinInputCell.tsx +18 -0
- package/src/components/PinInput/PinInput.js +70 -0
- package/src/components/PinInput/PinInput.js.map +1 -0
- package/src/components/PinInput/PinInput.tsx +165 -0
- package/src/components/{CodeInput/CodeInputText.js → PinInput/PinInputText.js} +4 -4
- package/src/components/PinInput/PinInputText.js.map +1 -0
- package/src/components/{CodeInput/CodeInputText.tsx → PinInput/PinInputText.tsx} +4 -4
- package/src/components/PinInput/index.js +4 -0
- package/src/components/PinInput/index.js.map +1 -0
- package/src/components/PinInput/index.tsx +3 -0
- package/src/index.js +1 -1
- package/src/index.js.map +1 -1
- package/src/index.tsx +4 -4
- package/src/utilities.js +6 -0
- package/src/utilities.js.map +1 -1
- package/src/utilities.ts +7 -0
- package/lib/commonjs/components/CodeInput/CodeInput.js +0 -1
- package/lib/commonjs/components/CodeInput/CodeInputCell.js +0 -1
- package/lib/commonjs/components/CodeInput/index.js +0 -1
- package/lib/typescript/src/components/CodeInput/CodeInput.d.ts +0 -18
- package/lib/typescript/src/components/CodeInput/CodeInput.js +0 -30
- package/lib/typescript/src/components/CodeInput/CodeInput.js.map +0 -1
- package/lib/typescript/src/components/CodeInput/CodeInputCell.d.ts +0 -16
- package/lib/typescript/src/components/CodeInput/CodeInputCell.js +0 -43
- package/lib/typescript/src/components/CodeInput/CodeInputCell.js.map +0 -1
- package/lib/typescript/src/components/CodeInput/CodeInputText.js.map +0 -1
- package/lib/typescript/src/components/CodeInput/index.d.ts +0 -3
- package/lib/typescript/src/components/CodeInput/index.js +0 -4
- package/lib/typescript/src/components/CodeInput/index.js.map +0 -1
- package/src/components/CodeInput/CodeInput.js +0 -30
- package/src/components/CodeInput/CodeInput.js.map +0 -1
- package/src/components/CodeInput/CodeInput.tsx +0 -95
- package/src/components/CodeInput/CodeInputCell.js +0 -43
- package/src/components/CodeInput/CodeInputCell.js.map +0 -1
- package/src/components/CodeInput/CodeInputCell.tsx +0 -73
- package/src/components/CodeInput/CodeInputText.js.map +0 -1
- package/src/components/CodeInput/index.js +0 -4
- package/src/components/CodeInput/index.js.map +0 -1
- package/src/components/CodeInput/index.tsx +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@draftbit/core",
|
|
3
|
-
"version": "48.4.6-
|
|
3
|
+
"version": "48.4.6-f29495.2+f294955",
|
|
4
4
|
"description": "Core (non-native) Components",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"types": "lib/typescript/src/index.d.ts",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@date-io/date-fns": "^1.3.13",
|
|
43
43
|
"@draftbit/react-theme-provider": "^2.1.1",
|
|
44
|
-
"@draftbit/types": "^48.4.6-
|
|
44
|
+
"@draftbit/types": "^48.4.6-f29495.2+f294955",
|
|
45
45
|
"@expo/vector-icons": "^13.0.0",
|
|
46
46
|
"@material-ui/core": "^4.11.0",
|
|
47
47
|
"@material-ui/pickers": "^3.2.10",
|
|
@@ -100,5 +100,5 @@
|
|
|
100
100
|
],
|
|
101
101
|
"testEnvironment": "node"
|
|
102
102
|
},
|
|
103
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "f294955bf838045f67595649535c9ed22a890118"
|
|
104
104
|
}
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { StyleSheet, View, } from "react-native";
|
|
3
3
|
import BottomSheetComponent from "./BottomSheetComponent";
|
|
4
4
|
import { withTheme } from "../../theming";
|
|
5
|
-
const BottomSheet =
|
|
5
|
+
const BottomSheet = ({ theme, snapPoints: snapPointsProp, topSnapPosition = "10%", middleSnapPosition = "50%", bottomSnapPosition = "80%", initialSnapIndex, initialSnapPosition = "bottom", showHandle = true, handleColor = theme.colors.divider, topBorderRadius = 20, borderWidth = 1, borderColor = theme.colors.divider, onSettle, style, children, ...rest }) => {
|
|
6
6
|
const backgroundColor = (style === null || style === void 0 ? void 0 : style.backgroundColor) || theme.colors.background;
|
|
7
7
|
const snapPoints = snapPointsProp || [
|
|
8
8
|
topSnapPosition,
|
|
@@ -20,7 +20,7 @@ const BottomSheet = React.forwardRef(({ theme, snapPoints: snapPointsProp, topSn
|
|
|
20
20
|
}
|
|
21
21
|
};
|
|
22
22
|
return (React.createElement(View, { style: styles.parentContainer, pointerEvents: "box-none" },
|
|
23
|
-
React.createElement(BottomSheetComponent, {
|
|
23
|
+
React.createElement(BottomSheetComponent, { componentType: "ScrollView", snapPoints: snapPoints, initialSnapIndex: initialSnapIndex !== null && initialSnapIndex !== void 0 ? initialSnapIndex : getSnapIndexFromPosition(initialSnapPosition), renderHandle: () => (React.createElement(React.Fragment, null, showHandle && (React.createElement(View, { style: [
|
|
24
24
|
styles.handleContainer,
|
|
25
25
|
{
|
|
26
26
|
backgroundColor,
|
|
@@ -38,7 +38,7 @@ const BottomSheet = React.forwardRef(({ theme, snapPoints: snapPointsProp, topSn
|
|
|
38
38
|
borderColor,
|
|
39
39
|
},
|
|
40
40
|
]), onSettle: onSettle, ...rest }, children)));
|
|
41
|
-
}
|
|
41
|
+
};
|
|
42
42
|
const styles = StyleSheet.create({
|
|
43
43
|
//Render on top of everything
|
|
44
44
|
parentContainer: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BottomSheet.js","sourceRoot":"","sources":["BottomSheet.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACL,UAAU,EACV,IAAI,GAIL,MAAM,cAAc,CAAC;AAEtB,OAAO,oBAAoB,MAAM,wBAAwB,CAAC;AAE1D,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAuB1C,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"BottomSheet.js","sourceRoot":"","sources":["BottomSheet.tsx"],"names":[],"mappings":"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"}
|
|
@@ -32,100 +32,91 @@ export interface BottomSheetProps extends ScrollViewProps {
|
|
|
32
32
|
theme: Theme;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
const BottomSheet
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
children,
|
|
56
|
-
...rest
|
|
57
|
-
},
|
|
58
|
-
ref
|
|
59
|
-
) => {
|
|
60
|
-
const backgroundColor =
|
|
61
|
-
(style as ViewStyle)?.backgroundColor || theme.colors.background;
|
|
35
|
+
const BottomSheet: React.FC<React.PropsWithChildren<BottomSheetProps>> = ({
|
|
36
|
+
theme,
|
|
37
|
+
snapPoints: snapPointsProp,
|
|
38
|
+
topSnapPosition = "10%",
|
|
39
|
+
middleSnapPosition = "50%",
|
|
40
|
+
bottomSnapPosition = "80%",
|
|
41
|
+
initialSnapIndex,
|
|
42
|
+
initialSnapPosition = "bottom",
|
|
43
|
+
showHandle = true,
|
|
44
|
+
handleColor = theme.colors.divider,
|
|
45
|
+
topBorderRadius = 20,
|
|
46
|
+
borderWidth = 1,
|
|
47
|
+
borderColor = theme.colors.divider,
|
|
48
|
+
onSettle,
|
|
49
|
+
style,
|
|
50
|
+
children,
|
|
51
|
+
...rest
|
|
52
|
+
}) => {
|
|
53
|
+
const backgroundColor =
|
|
54
|
+
(style as ViewStyle)?.backgroundColor || theme.colors.background;
|
|
62
55
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
56
|
+
const snapPoints = snapPointsProp || [
|
|
57
|
+
topSnapPosition,
|
|
58
|
+
middleSnapPosition,
|
|
59
|
+
bottomSnapPosition,
|
|
60
|
+
];
|
|
68
61
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
62
|
+
const getSnapIndexFromPosition = (position: SnapPosition) => {
|
|
63
|
+
switch (position) {
|
|
64
|
+
case "top":
|
|
65
|
+
return 0;
|
|
66
|
+
case "middle":
|
|
67
|
+
return 1;
|
|
68
|
+
case "bottom":
|
|
69
|
+
return 2;
|
|
70
|
+
}
|
|
71
|
+
};
|
|
79
72
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
initialSnapIndex
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
73
|
+
return (
|
|
74
|
+
<View style={styles.parentContainer} pointerEvents="box-none">
|
|
75
|
+
<BottomSheetComponent
|
|
76
|
+
componentType="ScrollView"
|
|
77
|
+
snapPoints={snapPoints}
|
|
78
|
+
initialSnapIndex={
|
|
79
|
+
initialSnapIndex ?? getSnapIndexFromPosition(initialSnapPosition)
|
|
80
|
+
}
|
|
81
|
+
renderHandle={() => (
|
|
82
|
+
<>
|
|
83
|
+
{showHandle && (
|
|
84
|
+
<View
|
|
85
|
+
style={[
|
|
86
|
+
styles.handleContainer,
|
|
87
|
+
{
|
|
88
|
+
backgroundColor,
|
|
89
|
+
borderTopLeftRadius: topBorderRadius,
|
|
90
|
+
borderTopRightRadius: topBorderRadius,
|
|
91
|
+
},
|
|
92
|
+
]}
|
|
93
|
+
>
|
|
92
94
|
<View
|
|
93
|
-
style={[
|
|
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
|
-
onSettle={onSettle}
|
|
121
|
-
{...rest}
|
|
122
|
-
>
|
|
123
|
-
{children}
|
|
124
|
-
</BottomSheetComponent>
|
|
125
|
-
</View>
|
|
126
|
-
);
|
|
127
|
-
}
|
|
128
|
-
);
|
|
95
|
+
style={[styles.handle, { backgroundColor: handleColor }]}
|
|
96
|
+
/>
|
|
97
|
+
</View>
|
|
98
|
+
)}
|
|
99
|
+
</>
|
|
100
|
+
)}
|
|
101
|
+
contentContainerStyle={[styles.contentContainerStyle, style]}
|
|
102
|
+
containerStyle={StyleSheet.flatten([
|
|
103
|
+
styles.containerStyle,
|
|
104
|
+
{
|
|
105
|
+
backgroundColor,
|
|
106
|
+
borderTopLeftRadius: topBorderRadius,
|
|
107
|
+
borderTopRightRadius: topBorderRadius,
|
|
108
|
+
borderWidth,
|
|
109
|
+
borderColor,
|
|
110
|
+
},
|
|
111
|
+
])}
|
|
112
|
+
onSettle={onSettle}
|
|
113
|
+
{...rest}
|
|
114
|
+
>
|
|
115
|
+
{children}
|
|
116
|
+
</BottomSheetComponent>
|
|
117
|
+
</View>
|
|
118
|
+
);
|
|
119
|
+
};
|
|
129
120
|
|
|
130
121
|
const styles = StyleSheet.create({
|
|
131
122
|
//Render on top of everything
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { View } from "react-native";
|
|
3
|
+
/**
|
|
4
|
+
* Simple View wrapper component to create a custom pin input cell
|
|
5
|
+
* Meant to be used in PinInput's renderItem
|
|
6
|
+
*/
|
|
7
|
+
const CustomPinInputCell = ({ style, children }) => {
|
|
8
|
+
return React.createElement(View, { style: style, children: children });
|
|
9
|
+
};
|
|
10
|
+
export default CustomPinInputCell;
|
|
11
|
+
//# sourceMappingURL=CustomPinInputCell.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomPinInputCell.js","sourceRoot":"","sources":["CustomPinInputCell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAwB,IAAI,EAAE,MAAM,cAAc,CAAC;AAM1D;;;GAGG;AACH,MAAM,kBAAkB,GAEpB,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,EAAE;IAC1B,OAAO,oBAAC,IAAI,IAAC,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,GAAI,CAAC;AACpD,CAAC,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { StyleProp, ViewStyle, View } from "react-native";
|
|
3
|
+
|
|
4
|
+
interface CustomPinInputCellProps {
|
|
5
|
+
style?: StyleProp<ViewStyle>;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Simple View wrapper component to create a custom pin input cell
|
|
10
|
+
* Meant to be used in PinInput's renderItem
|
|
11
|
+
*/
|
|
12
|
+
const CustomPinInputCell: React.FC<
|
|
13
|
+
React.PropsWithChildren<CustomPinInputCellProps>
|
|
14
|
+
> = ({ style, children }) => {
|
|
15
|
+
return <View style={style} children={children} />;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export default CustomPinInputCell;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { View, StyleSheet, } from "react-native";
|
|
3
|
+
import TextInput from "../TextInput";
|
|
4
|
+
import { CodeField, useClearByFocusCell, } from "react-native-confirmation-code-field";
|
|
5
|
+
import { withTheme } from "../../theming";
|
|
6
|
+
import PinInputText from "./PinInputText";
|
|
7
|
+
import { extractStyles } from "../../utilities";
|
|
8
|
+
const PinInput = React.forwardRef(({ theme, onInputFull, cellCount = 4, clearOnCellFocus = true, blurOnFull = true, renderItem, value, onChangeText, focusedBorderColor = theme.colors.primary, unFocusedBorderColor = theme.colors.disabled, focusedBackgroundColor, unFocusedBackgroundColor, focusedBorderWidth = 2, unFocusedBorderWidth = 1, focusedTextColor = theme.colors.strong, unFocusedTextColor = focusedTextColor, style, ...rest }, ref) => {
|
|
9
|
+
const newPinInputRef = React.useRef(null);
|
|
10
|
+
// Use the provided ref or default to new ref when not provided
|
|
11
|
+
const pinInputRef = ref
|
|
12
|
+
? ref
|
|
13
|
+
: newPinInputRef;
|
|
14
|
+
const { viewStyles, textStyles } = extractStyles(style);
|
|
15
|
+
// Clears input of a cell when focused, configured as explained here (https://github.com/retyui/react-native-confirmation-code-field/blob/master/API.md#useclearbyfocuscellvalue-string-setvalue-text-string--void)
|
|
16
|
+
const [codeFieldProps, getCellOnLayout] = useClearByFocusCell({
|
|
17
|
+
value,
|
|
18
|
+
setValue: (text) => onChangeText === null || onChangeText === void 0 ? void 0 : onChangeText(text),
|
|
19
|
+
});
|
|
20
|
+
React.useEffect(() => {
|
|
21
|
+
var _a;
|
|
22
|
+
if ((value === null || value === void 0 ? void 0 : value.length) === cellCount) {
|
|
23
|
+
if (blurOnFull) {
|
|
24
|
+
(_a = pinInputRef.current) === null || _a === void 0 ? void 0 : _a.blur();
|
|
25
|
+
}
|
|
26
|
+
onInputFull === null || onInputFull === void 0 ? void 0 : onInputFull(value);
|
|
27
|
+
}
|
|
28
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
29
|
+
}, [value, cellCount, blurOnFull, pinInputRef]);
|
|
30
|
+
return (React.createElement(CodeField, { ref: pinInputRef, ...(clearOnCellFocus ? codeFieldProps : {}), value: value, onChangeText: onChangeText, textInputStyle: { height: "100%" }, InputComponent: TextInput, cellCount: cellCount, renderCell: ({ symbol: cellValue, index, isFocused }) => (React.createElement(View, { key: index, onLayout: clearOnCellFocus ? getCellOnLayout(index) : undefined, style: { flex: 1 } }, (renderItem === null || renderItem === void 0 ? void 0 : renderItem({ cellValue, index, isFocused })) || (React.createElement(View, { testID: "default-code-input-cell", style: [
|
|
31
|
+
styles.cell,
|
|
32
|
+
{
|
|
33
|
+
borderWidth: isFocused
|
|
34
|
+
? focusedBorderWidth
|
|
35
|
+
: unFocusedBorderWidth,
|
|
36
|
+
borderColor: isFocused
|
|
37
|
+
? focusedBorderColor
|
|
38
|
+
: unFocusedBorderColor,
|
|
39
|
+
backgroundColor: isFocused
|
|
40
|
+
? focusedBackgroundColor
|
|
41
|
+
: unFocusedBackgroundColor,
|
|
42
|
+
},
|
|
43
|
+
viewStyles,
|
|
44
|
+
] },
|
|
45
|
+
React.createElement(PinInputText, { style: [
|
|
46
|
+
styles.cellText,
|
|
47
|
+
{
|
|
48
|
+
color: isFocused ? focusedTextColor : unFocusedTextColor,
|
|
49
|
+
},
|
|
50
|
+
textStyles,
|
|
51
|
+
], isFocused: isFocused }, cellValue))))), ...rest }));
|
|
52
|
+
});
|
|
53
|
+
const styles = StyleSheet.create({
|
|
54
|
+
cell: {
|
|
55
|
+
marginStart: 5,
|
|
56
|
+
marginEnd: 5,
|
|
57
|
+
padding: 5,
|
|
58
|
+
borderRadius: 5,
|
|
59
|
+
justifyContent: "center",
|
|
60
|
+
alignItems: "center",
|
|
61
|
+
aspectRatio: 1,
|
|
62
|
+
maxWidth: 70,
|
|
63
|
+
maxHeight: 70,
|
|
64
|
+
},
|
|
65
|
+
cellText: {
|
|
66
|
+
fontSize: 25,
|
|
67
|
+
},
|
|
68
|
+
});
|
|
69
|
+
export default withTheme(PinInput);
|
|
70
|
+
//# sourceMappingURL=PinInput.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PinInput.js","sourceRoot":"","sources":["PinInput.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {
|
|
3
|
+
StyleProp,
|
|
4
|
+
ViewStyle,
|
|
5
|
+
TextInput as NativeTextInput,
|
|
6
|
+
View,
|
|
7
|
+
StyleSheet,
|
|
8
|
+
} from "react-native";
|
|
9
|
+
import TextInput, { TextInputProps } from "../TextInput";
|
|
10
|
+
import {
|
|
11
|
+
CodeField,
|
|
12
|
+
useClearByFocusCell,
|
|
13
|
+
} from "react-native-confirmation-code-field";
|
|
14
|
+
import type { Theme } from "../../styles/DefaultTheme";
|
|
15
|
+
import { withTheme } from "../../theming";
|
|
16
|
+
import PinInputText from "./PinInputText";
|
|
17
|
+
import { extractStyles } from "../../utilities";
|
|
18
|
+
|
|
19
|
+
interface CellItem {
|
|
20
|
+
cellValue: string;
|
|
21
|
+
index: number;
|
|
22
|
+
isFocused: boolean;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
interface PinInputProps extends TextInputProps {
|
|
26
|
+
onInputFull?: (value: string) => void;
|
|
27
|
+
cellCount?: number;
|
|
28
|
+
clearOnCellFocus?: boolean;
|
|
29
|
+
blurOnFull?: boolean;
|
|
30
|
+
renderItem?: ({ cellValue, index, isFocused }: CellItem) => JSX.Element;
|
|
31
|
+
focusedBorderColor?: string;
|
|
32
|
+
unFocusedBorderColor?: string;
|
|
33
|
+
focusedBackgroundColor?: string;
|
|
34
|
+
unFocusedBackgroundColor?: string;
|
|
35
|
+
focusedBorderWidth?: number;
|
|
36
|
+
unFocusedBorderWidth?: number;
|
|
37
|
+
focusedTextColor?: string;
|
|
38
|
+
unFocusedTextColor?: string;
|
|
39
|
+
style?: StyleProp<ViewStyle>;
|
|
40
|
+
theme: Theme;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
const PinInput = React.forwardRef<NativeTextInput, PinInputProps>(
|
|
44
|
+
(
|
|
45
|
+
{
|
|
46
|
+
theme,
|
|
47
|
+
onInputFull,
|
|
48
|
+
cellCount = 4,
|
|
49
|
+
clearOnCellFocus = true,
|
|
50
|
+
blurOnFull = true,
|
|
51
|
+
renderItem,
|
|
52
|
+
value,
|
|
53
|
+
onChangeText,
|
|
54
|
+
focusedBorderColor = theme.colors.primary,
|
|
55
|
+
unFocusedBorderColor = theme.colors.disabled,
|
|
56
|
+
focusedBackgroundColor,
|
|
57
|
+
unFocusedBackgroundColor,
|
|
58
|
+
focusedBorderWidth = 2,
|
|
59
|
+
unFocusedBorderWidth = 1,
|
|
60
|
+
focusedTextColor = theme.colors.strong,
|
|
61
|
+
unFocusedTextColor = focusedTextColor,
|
|
62
|
+
style,
|
|
63
|
+
...rest
|
|
64
|
+
},
|
|
65
|
+
ref
|
|
66
|
+
) => {
|
|
67
|
+
const newPinInputRef = React.useRef<NativeTextInput>(null);
|
|
68
|
+
|
|
69
|
+
// Use the provided ref or default to new ref when not provided
|
|
70
|
+
const pinInputRef = ref
|
|
71
|
+
? (ref as React.RefObject<NativeTextInput>)
|
|
72
|
+
: newPinInputRef;
|
|
73
|
+
|
|
74
|
+
const { viewStyles, textStyles } = extractStyles(style);
|
|
75
|
+
|
|
76
|
+
// Clears input of a cell when focused, configured as explained here (https://github.com/retyui/react-native-confirmation-code-field/blob/master/API.md#useclearbyfocuscellvalue-string-setvalue-text-string--void)
|
|
77
|
+
const [codeFieldProps, getCellOnLayout] = useClearByFocusCell({
|
|
78
|
+
value,
|
|
79
|
+
setValue: (text) => onChangeText?.(text),
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
React.useEffect(() => {
|
|
83
|
+
if (value?.length === cellCount) {
|
|
84
|
+
if (blurOnFull) {
|
|
85
|
+
pinInputRef.current?.blur();
|
|
86
|
+
}
|
|
87
|
+
onInputFull?.(value);
|
|
88
|
+
}
|
|
89
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
90
|
+
}, [value, cellCount, blurOnFull, pinInputRef]);
|
|
91
|
+
|
|
92
|
+
return (
|
|
93
|
+
<CodeField
|
|
94
|
+
ref={pinInputRef}
|
|
95
|
+
{...(clearOnCellFocus ? codeFieldProps : {})}
|
|
96
|
+
value={value}
|
|
97
|
+
onChangeText={onChangeText}
|
|
98
|
+
textInputStyle={{ height: "100%" }} // addresses issue on firefox where the hidden input did not fill the height
|
|
99
|
+
InputComponent={TextInput}
|
|
100
|
+
cellCount={cellCount}
|
|
101
|
+
renderCell={({ symbol: cellValue, index, isFocused }) => (
|
|
102
|
+
<View
|
|
103
|
+
key={index}
|
|
104
|
+
onLayout={clearOnCellFocus ? getCellOnLayout(index) : undefined}
|
|
105
|
+
style={{ flex: 1 }}
|
|
106
|
+
>
|
|
107
|
+
{renderItem?.({ cellValue, index, isFocused }) || (
|
|
108
|
+
<View
|
|
109
|
+
testID="default-code-input-cell"
|
|
110
|
+
style={[
|
|
111
|
+
styles.cell,
|
|
112
|
+
{
|
|
113
|
+
borderWidth: isFocused
|
|
114
|
+
? focusedBorderWidth
|
|
115
|
+
: unFocusedBorderWidth,
|
|
116
|
+
borderColor: isFocused
|
|
117
|
+
? focusedBorderColor
|
|
118
|
+
: unFocusedBorderColor,
|
|
119
|
+
backgroundColor: isFocused
|
|
120
|
+
? focusedBackgroundColor
|
|
121
|
+
: unFocusedBackgroundColor,
|
|
122
|
+
},
|
|
123
|
+
viewStyles,
|
|
124
|
+
]}
|
|
125
|
+
>
|
|
126
|
+
<PinInputText
|
|
127
|
+
style={[
|
|
128
|
+
styles.cellText,
|
|
129
|
+
{
|
|
130
|
+
color: isFocused ? focusedTextColor : unFocusedTextColor,
|
|
131
|
+
},
|
|
132
|
+
textStyles,
|
|
133
|
+
]}
|
|
134
|
+
isFocused={isFocused}
|
|
135
|
+
>
|
|
136
|
+
{cellValue}
|
|
137
|
+
</PinInputText>
|
|
138
|
+
</View>
|
|
139
|
+
)}
|
|
140
|
+
</View>
|
|
141
|
+
)}
|
|
142
|
+
{...rest}
|
|
143
|
+
/>
|
|
144
|
+
);
|
|
145
|
+
}
|
|
146
|
+
);
|
|
147
|
+
|
|
148
|
+
const styles = StyleSheet.create({
|
|
149
|
+
cell: {
|
|
150
|
+
marginStart: 5,
|
|
151
|
+
marginEnd: 5,
|
|
152
|
+
padding: 5,
|
|
153
|
+
borderRadius: 5,
|
|
154
|
+
justifyContent: "center",
|
|
155
|
+
alignItems: "center",
|
|
156
|
+
aspectRatio: 1,
|
|
157
|
+
maxWidth: 70,
|
|
158
|
+
maxHeight: 70,
|
|
159
|
+
},
|
|
160
|
+
cellText: {
|
|
161
|
+
fontSize: 25,
|
|
162
|
+
},
|
|
163
|
+
});
|
|
164
|
+
|
|
165
|
+
export default withTheme(PinInput);
|
|
@@ -4,11 +4,11 @@ import { withTheme } from "../../theming";
|
|
|
4
4
|
import { Cursor } from "react-native-confirmation-code-field";
|
|
5
5
|
/**
|
|
6
6
|
* Text component that can conditionally render a blinking cursor when focused and empty
|
|
7
|
-
* Meant to be used within a
|
|
7
|
+
* Meant to be used within a CustomPinInputCell component
|
|
8
8
|
*/
|
|
9
|
-
const
|
|
9
|
+
const CustomPinInputText = ({ isFocused, cursorBlinkDuration, cursorText, style, theme, children, ...rest }) => {
|
|
10
10
|
return (React.createElement(Text, { style: [{ color: theme.colors.strong }, style], ...rest }, children ||
|
|
11
11
|
(isFocused ? (React.createElement(Cursor, { cursorSymbol: cursorText, delay: cursorBlinkDuration })) : null)));
|
|
12
12
|
};
|
|
13
|
-
export default withTheme(
|
|
14
|
-
//# sourceMappingURL=
|
|
13
|
+
export default withTheme(CustomPinInputText);
|
|
14
|
+
//# sourceMappingURL=PinInputText.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PinInputText.js","sourceRoot":"","sources":["PinInputText.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,IAAI,EAAa,MAAM,cAAc,CAAC;AAE/C,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAC1C,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAS9D;;;GAGG;AACH,MAAM,kBAAkB,GAAsC,CAAC,EAC7D,SAAS,EACT,mBAAmB,EACnB,UAAU,EACV,KAAK,EACL,KAAK,EACL,QAAQ,EACR,GAAG,IAAI,EACR,EAAE,EAAE;IACH,OAAO,CACL,oBAAC,IAAI,IAAC,KAAK,EAAE,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,KAAK,CAAC,KAAM,IAAI,IAC3D,QAAQ;QACP,CAAC,SAAS,CAAC,CAAC,CAAC,CACX,oBAAC,MAAM,IAAC,YAAY,EAAE,UAAU,EAAE,KAAK,EAAE,mBAAmB,GAAI,CACjE,CAAC,CAAC,CAAC,IAAI,CAAC,CACN,CACR,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,SAAS,CAAC,kBAAkB,CAAC,CAAC"}
|
|
@@ -4,7 +4,7 @@ import type { Theme } from "../../styles/DefaultTheme";
|
|
|
4
4
|
import { withTheme } from "../../theming";
|
|
5
5
|
import { Cursor } from "react-native-confirmation-code-field";
|
|
6
6
|
|
|
7
|
-
interface
|
|
7
|
+
interface CustomPinInputTextProps extends TextProps {
|
|
8
8
|
cursorBlinkDuration?: number;
|
|
9
9
|
cursorText?: string;
|
|
10
10
|
isFocused?: boolean;
|
|
@@ -13,9 +13,9 @@ interface CodeInputTextProps extends TextProps {
|
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* Text component that can conditionally render a blinking cursor when focused and empty
|
|
16
|
-
* Meant to be used within a
|
|
16
|
+
* Meant to be used within a CustomPinInputCell component
|
|
17
17
|
*/
|
|
18
|
-
const
|
|
18
|
+
const CustomPinInputText: React.FC<CustomPinInputTextProps> = ({
|
|
19
19
|
isFocused,
|
|
20
20
|
cursorBlinkDuration,
|
|
21
21
|
cursorText,
|
|
@@ -34,4 +34,4 @@ const CodeInputText: React.FC<CodeInputTextProps> = ({
|
|
|
34
34
|
);
|
|
35
35
|
};
|
|
36
36
|
|
|
37
|
-
export default withTheme(
|
|
37
|
+
export default withTheme(CustomPinInputText);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC"}
|
package/src/index.js
CHANGED
|
@@ -40,7 +40,7 @@ export { default as LinearProgress } from "./components/Progress/LinearProgress"
|
|
|
40
40
|
export { default as CircularProgress } from "./components/Progress/CircularProgress";
|
|
41
41
|
export { default as TextInput } from "./components/TextInput";
|
|
42
42
|
export { default as VideoPlayer, } from "./components/MediaPlayer/VideoPlayer";
|
|
43
|
-
export {
|
|
43
|
+
export { PinInput, CustomPinInputCell, PinInputText as CustomPinInputText, } from "./components/PinInput";
|
|
44
44
|
export { AspectRatio, Circle, Center, HStack, VStack, ZStack, Spacer, Square, } from "./components/Layout";
|
|
45
45
|
/* Deprecated: Fix or Delete! */
|
|
46
46
|
export { default as AccordionItem } from "./deprecated-components/AccordionItem";
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":"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"}
|
package/src/index.tsx
CHANGED
|
@@ -59,10 +59,10 @@ export {
|
|
|
59
59
|
VideoPlayerRef,
|
|
60
60
|
} from "./components/MediaPlayer/VideoPlayer";
|
|
61
61
|
export {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
} from "./components/
|
|
62
|
+
PinInput,
|
|
63
|
+
CustomPinInputCell,
|
|
64
|
+
PinInputText as CustomPinInputText,
|
|
65
|
+
} from "./components/PinInput";
|
|
66
66
|
export {
|
|
67
67
|
AspectRatio,
|
|
68
68
|
Circle,
|
package/src/utilities.js
CHANGED
|
@@ -16,6 +16,12 @@ export function extractStyles(style) {
|
|
|
16
16
|
textDecorationColor,
|
|
17
17
|
textDecorationStyle,
|
|
18
18
|
};
|
|
19
|
+
for (let key in textStyles) {
|
|
20
|
+
const styleKey = key;
|
|
21
|
+
if (textStyles[styleKey] === undefined) {
|
|
22
|
+
delete textStyles[styleKey];
|
|
23
|
+
}
|
|
24
|
+
}
|
|
19
25
|
return { viewStyles, textStyles };
|
|
20
26
|
}
|
|
21
27
|
export const borderStyleNames = [
|