@hexar/biometric-identity-sdk-react-native 1.1.11 → 1.1.12
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.
|
@@ -44,12 +44,14 @@ const ProfilePictureCapture = ({ onComplete, onError, onCancel, theme, language,
|
|
|
44
44
|
const [isValidating, setIsValidating] = (0, react_1.useState)(false);
|
|
45
45
|
const [currentChallenges, setCurrentChallenges] = (0, react_1.useState)([]);
|
|
46
46
|
const [isLoadingChallenges, setIsLoadingChallenges] = (0, react_1.useState)(false);
|
|
47
|
+
const handleFetchChallenges = (0, react_1.useCallback)(async () => {
|
|
48
|
+
return await fetchChallenges('active');
|
|
49
|
+
}, [fetchChallenges]);
|
|
47
50
|
(0, react_1.useEffect)(() => {
|
|
48
51
|
if (language) {
|
|
49
52
|
(0, biometric_identity_sdk_core_1.setLanguage)(language);
|
|
50
53
|
}
|
|
51
54
|
}, [language]);
|
|
52
|
-
// Fetch challenges when component mounts and SDK is ready
|
|
53
55
|
(0, react_1.useEffect)(() => {
|
|
54
56
|
if (isInitialized && isUsingBackend) {
|
|
55
57
|
const loadChallenges = async () => {
|
|
@@ -196,10 +198,7 @@ const ProfilePictureCapture = ({ onComplete, onError, onCancel, theme, language,
|
|
|
196
198
|
react_1.default.createElement(react_native_1.Text, { style: [styles.loadingText, { color: theme?.textColor || '#1e1b4b' }] }, strings.liveness.processing || strings.validation.checkingLiveness || 'Processing...'),
|
|
197
199
|
react_1.default.createElement(react_native_1.Text, { style: [styles.loadingSubtext, { color: theme?.secondaryTextColor || '#64748b' }] }, strings.validation.almostDone || strings.common.loading || 'This may take a few seconds'))));
|
|
198
200
|
}
|
|
199
|
-
return (react_1.default.createElement(VideoRecorder_1.VideoRecorder, { theme: theme, language: language, smartMode: true, challenges: currentChallenges, sessionId: sdk.getSessionId() || undefined, onComplete: handleVideoComplete, onCancel: handleVideoCancel, onFetchChallenges:
|
|
200
|
-
const challenges = await fetchChallenges('active');
|
|
201
|
-
return challenges;
|
|
202
|
-
} }));
|
|
201
|
+
return (react_1.default.createElement(VideoRecorder_1.VideoRecorder, { theme: theme, language: language, smartMode: true, challenges: currentChallenges, sessionId: sdk.getSessionId() || undefined, onComplete: handleVideoComplete, onCancel: handleVideoCancel, onFetchChallenges: handleFetchChallenges }));
|
|
203
202
|
};
|
|
204
203
|
exports.ProfilePictureCapture = ProfilePictureCapture;
|
|
205
204
|
const styles = react_native_1.StyleSheet.create({
|
package/package.json
CHANGED
|
@@ -45,13 +45,16 @@ export const ProfilePictureCapture: React.FC<ProfilePictureCaptureProps> = ({
|
|
|
45
45
|
const [currentChallenges, setCurrentChallenges] = useState<any[]>([]);
|
|
46
46
|
const [isLoadingChallenges, setIsLoadingChallenges] = useState(false);
|
|
47
47
|
|
|
48
|
+
const handleFetchChallenges = useCallback(async () => {
|
|
49
|
+
return await fetchChallenges('active');
|
|
50
|
+
}, [fetchChallenges]);
|
|
51
|
+
|
|
48
52
|
useEffect(() => {
|
|
49
53
|
if (language) {
|
|
50
54
|
setLanguage(language);
|
|
51
55
|
}
|
|
52
56
|
}, [language]);
|
|
53
57
|
|
|
54
|
-
// Fetch challenges when component mounts and SDK is ready
|
|
55
58
|
useEffect(() => {
|
|
56
59
|
if (isInitialized && isUsingBackend) {
|
|
57
60
|
const loadChallenges = async () => {
|
|
@@ -231,10 +234,7 @@ export const ProfilePictureCapture: React.FC<ProfilePictureCaptureProps> = ({
|
|
|
231
234
|
sessionId={sdk.getSessionId() || undefined}
|
|
232
235
|
onComplete={handleVideoComplete}
|
|
233
236
|
onCancel={handleVideoCancel}
|
|
234
|
-
onFetchChallenges={
|
|
235
|
-
const challenges = await fetchChallenges('active');
|
|
236
|
-
return challenges;
|
|
237
|
-
}}
|
|
237
|
+
onFetchChallenges={handleFetchChallenges}
|
|
238
238
|
/>
|
|
239
239
|
);
|
|
240
240
|
};
|