import React, {useEffect, useState} from 'react';
import {SafeAreaView, View} from 'react-native';
import Animated, {Easing} from 'react-native-reanimated';
import AnimatedProgress from 'react-native-reanimated-progress-bar';
import {useTracked} from '../../provider';
import {
useFavoriteStore,
useNoteStore,
useUserStore,
} from '../../provider/stores';
import BiometricService from '../../services/BiometricService';
import {DDS} from '../../services/DeviceDetection';
import {
eSendEvent,
eSubscribeEvent,
eUnSubscribeEvent,
} from '../../services/EventManager';
import {editing} from '../../utils';
import {db} from '../../utils/DB';
import {eOpenRateDialog, eOpenSideMenu} from '../../utils/Events';
import {MMKV} from '../../utils/mmkv';
import {tabBarRef} from '../../utils/Refs';
import {SIZE} from '../../utils/SizeUtils';
import {Button} from '../Button';
import Input from '../Input';
import Seperator from '../Seperator';
import SplashScreen from '../SplashScreen';
import Heading from '../Typography/Heading';
import Paragraph from '../Typography/Paragraph';
let passwordValue = null;
let didVerifyUser = false;
const opacityV = new Animated.Value(1);
const AppLoader = ({onLoad}) => {
const [state, dispatch] = useTracked();
const colors = state.colors;
const [loading, setLoading] = useState(true);
const setNotes = useNoteStore(state => state.setNotes);
const setFavorites = useFavoriteStore(state => state.setFavorites);
const _setLoading = useNoteStore(state => state.setLoading);
const [user, setUser] = useState();
const verifyUser = useUserStore(state => state.verifyUser);
const setVerifyUser = useUserStore(state => state.setVerifyUser);
const load = async value => {
if (verifyUser) return;
if (value === 'hide') {
setLoading(true);
opacityV.setValue(1);
return;
}
let appState = await MMKV.getItem('appState');
if (appState) {
appState = JSON.parse(appState);
if (
appState.note &&
!appState.movedAway &&
Date.now() < appState.timestamp + 3600000
) {
editing.isRestoringState = true;
editing.currentlyEditing = true;
if (!DDS.isTab) {
tabBarRef.current?.goToPage(1);
}
eSendEvent('loadingNote', appState.note);
}
}
if (value === 'show') {
opacityV.setValue(0);
setLoading(false);
return;
}
eSendEvent(eOpenSideMenu);
Animated.timing(opacityV, {
toValue: 0,
duration: 100,
easing: Easing.out(Easing.ease),
}).start();
setLoading(false);
await db.notes.init();
setNotes();
setFavorites();
_setLoading(false);
eSendEvent(eOpenSideMenu);
let askForRating = await MMKV.getItem('askForRating');
if (askForRating !== 'never' || askForRating !== 'completed') {
askForRating = JSON.parse(askForRating);
if (askForRating?.timestamp < Date.now()) {
eSendEvent(eOpenRateDialog);
}
}
};
useEffect(() => {
if (!verifyUser) {
if (!didVerifyUser) return;
load();
} else {
db.user.getUser().then(u => {
if (u) {
setUser(u);
}
});
}
}, [verifyUser]);
useEffect(() => {
eSubscribeEvent('load_overlay', load);
if (verifyUser) {
onUnlockBiometrics();
}
return () => {
eUnSubscribeEvent('load_overlay', load);
};
}, [verifyUser]);
const onUnlockBiometrics = async () => {
let verified = await BiometricService.validateUser(
'Unlock to access your notes',
'',
);
if (verified) {
didVerifyUser = true;
setVerifyUser(false);
passwordValue = null;
}
};
const onSubmit = async () => {
if (!passwordValue) return;
try {
let verified = await db.user.verifyPassword(passwordValue);
if (verified) {
didVerifyUser = true;
setVerifyUser(false);
passwordValue = null;
}
} catch (e) {}
};
return loading ? (
{verifyUser ? (
Verify your identity
{user ? (
<>
To keep your notes secure, please enter password of the
account you are logged in to.
(passwordValue = v)}
onSubmit={onSubmit}
/>
>
) : (
<>
To keep your notes secure, please unlock app the with
biometrics.
>
)}
) : (
)}
) : (
);
};
export default AppLoader;