2020-05-08 17:04:37 +00:00
|
|
|
import React, { useEffect, useState } from 'react';
|
|
|
|
import Modal from 'react-native-modal';
|
|
|
|
import useDeepCompareEffect from 'use-deep-compare-effect';
|
2021-02-01 17:18:55 +00:00
|
|
|
import isEmpty from 'lodash/isEmpty';
|
2020-05-08 17:04:37 +00:00
|
|
|
import Orientation from 'react-native-orientation-locker';
|
|
|
|
|
|
|
|
import EventEmitter from '../utils/events';
|
2022-04-07 14:10:03 +00:00
|
|
|
import { LOCAL_AUTHENTICATE_EMITTER } from '../lib/constants';
|
2020-05-08 17:04:37 +00:00
|
|
|
import { isTablet } from '../utils/deviceInfo';
|
|
|
|
import { PasscodeEnter } from '../containers/Passcode';
|
|
|
|
|
2021-12-02 13:26:02 +00:00
|
|
|
interface IData {
|
|
|
|
submit?: () => void;
|
|
|
|
hasBiometry?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ScreenLockedView = (): JSX.Element => {
|
2020-05-08 17:04:37 +00:00
|
|
|
const [visible, setVisible] = useState(false);
|
2021-12-02 13:26:02 +00:00
|
|
|
const [data, setData] = useState<IData>({});
|
|
|
|
|
2020-05-08 17:04:37 +00:00
|
|
|
useDeepCompareEffect(() => {
|
2021-02-01 17:18:55 +00:00
|
|
|
if (!isEmpty(data)) {
|
2020-05-08 17:04:37 +00:00
|
|
|
setVisible(true);
|
|
|
|
} else {
|
|
|
|
setVisible(false);
|
|
|
|
}
|
|
|
|
}, [data]);
|
|
|
|
|
2021-12-02 13:26:02 +00:00
|
|
|
const showScreenLock = (args: IData) => {
|
2020-05-08 17:04:37 +00:00
|
|
|
setData(args);
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (!isTablet) {
|
|
|
|
Orientation.lockToPortrait();
|
|
|
|
}
|
2021-02-23 19:00:39 +00:00
|
|
|
const listener = EventEmitter.addEventListener(LOCAL_AUTHENTICATE_EMITTER, showScreenLock);
|
2021-09-13 20:41:05 +00:00
|
|
|
return () => {
|
2020-05-08 17:04:37 +00:00
|
|
|
if (!isTablet) {
|
|
|
|
Orientation.unlockAllOrientations();
|
|
|
|
}
|
2021-02-23 19:00:39 +00:00
|
|
|
EventEmitter.removeListener(LOCAL_AUTHENTICATE_EMITTER, listener);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-05-08 17:04:37 +00:00
|
|
|
}, []);
|
|
|
|
|
|
|
|
const onSubmit = () => {
|
|
|
|
const { submit } = data;
|
|
|
|
if (submit) {
|
|
|
|
submit();
|
|
|
|
}
|
|
|
|
setData({});
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
useNativeDriver
|
|
|
|
isVisible={visible}
|
|
|
|
hideModalContentWhileAnimating
|
|
|
|
style={{ margin: 0 }}
|
|
|
|
animationIn='fadeIn'
|
2021-09-13 20:41:05 +00:00
|
|
|
animationOut='fadeOut'>
|
2022-03-23 00:43:59 +00:00
|
|
|
<PasscodeEnter hasBiometry={!!data?.hasBiometry} finishProcess={onSubmit} />
|
2020-05-08 17:04:37 +00:00
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2021-12-02 13:26:02 +00:00
|
|
|
export default ScreenLockedView;
|